128theorem cubicDeficit_singleton {n : ℕ} (L : EdgeLengthField n) 129 (i j : Fin n) (w : ℝ) (hw : 0 ≤ w) : 130 cubicDeficit L (singletonHinge i j w hw) 131 = (recoverEps L i - recoverEps L j) ^ 2 := by
proof body
Term-mode proof.
132 show (match (singletonHinge i j w hw).edges with 133 | [(i', j')] => (recoverEps L i' - recoverEps L j') ^ 2 134 | _ => 0) = _ 135 rw [singletonHinge_edges] 136 137/-- Value of `cubicArea` on a singleton hinge. -/
used by (1)
From the project-wide theorem graph. These declarations reference this one in their body.