theorem
proved
wrapper
prove_lower_bound_le
show as:
view Lean formalization →
formal statement (Lean)
38theorem prove_lower_bound_le {I : Interval} {x : ℝ} {b : ℚ}
39 (h_contains : I.contains x) (h_lo : b ≤ I.lo) : (b : ℝ) ≤ x :=
proof body
One-line wrapper that applies I.lo_ge_implies_contains_ge.
40 I.lo_ge_implies_contains_ge h_lo h_contains
41