Coordinate formula for squared distance in the plane
ProvedBatch3N9.Problem97.dist_sq_coordFor points x and y in the Euclidean plane, the squared distance equals the sum of the squared coordinate differences.
Preamble
import Definitions.Def_Erdos9796FiniteNine_N8Interface import Mathlib.Analysis.InnerProductSpace.PiL2 import Mathlib.Tactic.NormNum open scoped EuclideanGeometry
Formal statement
theorem Batch3N9.Problem97.dist_sq_coord (x y : ℝ²) : dist x y ^ 2 = (x 0 - y 0) ^ 2 + (x 1 - y 1) ^ 2 := by sorry
Source