theorem
proved
term proof
orbit_not_ratio_self_similar
show as:
view Lean formalization →
formal statement (Lean)
83theorem orbit_not_ratio_self_similar :
84 ¬ (∀ k,
85 orbitLevels (k + 2) / orbitLevels (k + 1) =
86 orbitLevels (k + 1) / orbitLevels k) := by
proof body
Term-mode proof.
87 intro h
88 have h0 := h 0
89 simp [orbitLevels, boolFramework, baseState] at h0
90 norm_num at h0
91
92/-- The counterexample orbit does not satisfy additive posting. -/