theorem
proved
tactic proof
extremum_unique
show as:
view Lean formalization →
formal statement (Lean)
163theorem extremum_unique (lam : ℝ) (hlam : lam > 0) (h_eq : J_curv lam = J_bit_val) :
164 lam = lambda_rec_from_Jbit := by
proof body
Tactic-mode proof.
165 unfold J_curv at h_eq
166 unfold lambda_rec_from_Jbit
167 have h1 : lam^2 = J_bit_val / 2 := by linarith
168 have h2 : lam = sqrt (lam^2) := (sqrt_sq (le_of_lt hlam)).symm
169 rw [h1] at h2
170 exact h2
171
172/-! ## Part 4: Face-Averaging and the π Factor -/
173
174/-- The solid angle per octant = π/2 steradians. -/