theorem
proved
term proof
gap_correction_positive
show as:
view Lean formalization →
formal statement (Lean)
53theorem gap_correction_positive (w seed : ℝ) (hw : 0 < w) (hs : 0 < seed) :
54 0 < gap_correction w seed := by
proof body
Term-mode proof.
55 unfold gap_correction
56 exact mul_pos hs (Real.exp_pos _)
57
58/-! ## Certificate -/
59