Explanation of phi_unique_self_similar
(1) In plain English, the declaration asserts that the only positive real number satisfying the equation r² = r + 1 is the golden ratio φ = (1 + √5)/2.
(2) In Recognition Science this uniqueness is required to force the scale ratio of any self-similar discrete ledger to be exactly φ, which then supplies the unique fixed point used to derive all subsequent constants and structural features.
(3) The formal statement is:
∀ {r : ℝ}, 0 < r → satisfies_golden_constraint r → r = φ
where satisfies_golden_constraint r is defined as r^2 = r + 1 and φ is defined as (1 + Real.sqrt 5) / 2. The proof simply invokes the helper golden_constraint_unique.
(4) Visible dependencies inside the supplied source are phi_equation (which shows φ itself satisfies the constraint), phi_pos and phi_gt_one (used for positivity and root selection), and the definition satisfies_golden_constraint. The theorem is invoked by phi_forced and by the summary theorem phi_forcing_principle. No sorry appears in this chain.
(5) The declaration does not prove the existence of any SelfSimilar structure, the forcing of discreteness or the ledger, the emergence of spatial dimension 3, or the numerical values of physical constants; those steps are supplied by earlier modules and by phi_forced.