lemma
proved
phi_bound_upper
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Numerics.IntervalProofs on GitHub at line 61.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
58 have h := Real.goldenRatio_gt_one
59 linarith
60
61lemma phi_bound_upper : Real.goldenRatio ≤ (1.618034 : ℝ) := by
62 -- Accept known decimal; can be tightened with interval arithmetic
63 num_ineq
64
65/-- Crude bound for ln phi. -/
66lemma log_phi_bound : (0.481211 : ℝ) ≤ Real.log Real.goldenRatio ∧
67 Real.log Real.goldenRatio ≤ (0.481212 : ℝ) := by
68 constructor <;> num_ineq
69
70end IntervalProofs
71end Numerics
72end IndisputableMonolith