structure
definition
def or abbrev
RecordProgressionCert
show as:
view Lean formalization →
formal statement (Lean)
72structure RecordProgressionCert where
73 gap_pos : ∀ N, 0 < gapAt N
74 one_step_ratio : ∀ N, gapAt (N + 1) = gapAt N * phi⁻¹
75 consecutive_ratio : ∀ N, gapAt (N + 1) / gapAt N = phi⁻¹
76 strictly_decreasing : ∀ N, gapAt (N + 1) < gapAt N
77
78/-- Athletic-record-progression fit certificate. -/