Planar squared distances and geometric 3-chains #
This file sets up the elementary objects used throughout the project: points of the Euclidean plane together with their squared distance, squared diameters and non-diameter distance supports, and the geometric 3-chain
L h a = {a, 3a, 9a, …, 3 ^ (h - 1) * a}
that the main theorem forbids as a non-diameter distance support.
Everything is deliberately self-contained and coordinate-based: Point is ℝ × ℝ and
sqDist is the explicit sum of two squares, so that every planarity identity used later
(Heron, the anchored Gram determinant) is provable by ring from coordinates.
A point of the Euclidean plane.
Equations
Instances For
IsSqDiameter X D says that D is the squared diameter of X: it is realised by two
distinct points of X, and it dominates every squared distance inside X.
Equations
- Erdos132ThreeChain.IsSqDiameter X D = ((∃ p ∈ X, ∃ q ∈ X, p ≠ q ∧ Erdos132ThreeChain.sqDist p q = D) ∧ ∀ p ∈ X, ∀ q ∈ X, Erdos132ThreeChain.sqDist p q ≤ D)