Cassini-Fricke Log-Coordinate Specializations
Abstract
The generic Cassini-Fricke identity specializes to signed log coordinates and a conserved absolute value.
Theorem 1.1 (The log-coordinate quadratic value alternates in sign).
Proof. Machine-checked in Lean as D5/S1/Recurrence/Invariants/CassiniFrickeSpecializations.cassini_fricke_log_coordinate_identity (✓ std3). ∎
Source. Repository-derived.
Commentary.
The first chain clause introduces u_K and Q but ends before its displayed conclusion. This declaration makes those definitions explicit in its expanded quadratic expression and supplies the signed identity needed to complete that chain stem.
It directly applies the repository theorem cassini_fricke to Mathlib’s goldenRatio and goldenConj with A = -xphi and B = ypsi. Their product is -1, which turns AB into xy, so no recurrence identity is reproved.
Theorem 1.2 (The absolute quadratic value is conserved).
Proof. Machine-checked in Lean as D5/S1/Recurrence/Invariants/CassiniFrickeSpecializations.cassini_fricke_absolute_conservation (✓ std3). ∎
Source. Repository-derived.
Commentary.
Taking absolute values of the signed specialization removes the factor (-1)^(K+1) and yields 5*|x*y|. Thus consecutive signed values differ by a sign, while their magnitude is independent of K.
The zero-axis and diagonal readings in the source follow by substituting y = 0 and x = y into this formula. The theorem records the common conservation law rather than duplicating those immediate leaf cases.
References
- Truth anchor:
D5/S1/Recurrence/Invariants/CassiniFrickeSpecializations.cassini_fricke_absolute_conservation - Truth anchor:
D5/S1/Recurrence/Invariants/CassiniFrickeSpecializations.cassini_fricke_log_coordinate_identity - Dependency: D5/S1/Recurrence/CassiniFricke