lemma
proved
term proof
Jlog_eq_zero_iff
show as:
view Lean formalization →
formal statement (Lean)
40@[simp] lemma Jlog_eq_zero_iff (t : ℝ) : Jlog t = 0 ↔ t = 0 := by
proof body
Term-mode proof.
41 constructor
42 · intro ht
43 by_contra hne
44 have : 0 < Jlog t := (Jlog_pos_iff t).2 hne
45 linarith
46 · intro ht
47 subst ht
48 simp [Jlog]
49