lemma
proved
term proof
hessianMetric_eq
show as:
view Lean formalization →
formal statement (Lean)
142@[simp] lemma hessianMetric_eq {x : ℝ} (_hx : 0 < x) :
143 hessianMetric x = 1 / x ^ 3 := by
proof body
Term-mode proof.
144 unfold hessianMetric
145 rw [zpow_neg, zpow_ofNat, one_div]
146
147/-- The Christoffel symbol of the Hessian metric `g(x) = 1/x³`.
148
149 For a 1D metric, `Γ = (1/2g) (dg/dx) = (1/2) · x³ · (-3 x⁻⁴) = -3/(2x)`. -/