theorem
proved
wrapper
prove_lower_bound
show as:
view Lean formalization →
formal statement (Lean)
30theorem prove_lower_bound {I : Interval} {x : ℝ} {b : ℚ}
31 (h_contains : I.contains x) (h_lo : b < I.lo) : (b : ℝ) < x :=
proof body
One-line wrapper that applies I.lo_gt_implies_contains_gt.
32 I.lo_gt_implies_contains_gt h_lo h_contains
33