neg
If x lies in the subfield of the reals generated by the golden ratio φ, then -x also lies in that subfield. Algebraists constructing the phi-ring or recognition categories cite this to verify additive inverses exist inside the closed set. The proof is a one-line wrapper that applies the subfield's built-in negation membership rule.
claimLet φ be the golden ratio. If x ∈ ℝ lies in the subfield generated by φ, then -x also lies in that subfield.
background
PhiClosed φ x means x belongs to the subfield of ℝ obtained by closing the singleton {φ} under field operations. The module RecogSpec.Core introduces this predicate together with phiSubfield to capture algebraic elements over φ for the recognition specification. Upstream negation results appear in integers and rationals constructed from logic as well as in interval arithmetic, but the direct dependency here is the subfield structure itself.
proof idea
One-line wrapper that applies the neg_mem property of the subfield generated by φ.
why it matters in Recognition Science
This lemma supplies the additive inverse closure needed to turn the phi-subfield into a ring, feeding directly into PhiInt, J_at_phi, canonicalPhiRingObj, and PhiRingHom. It supports the algebraic backbone of the Recognition framework, including the cost algebra where J(φ) = (√5 - 2)/2 and the phi-ladder constructions. The result closes a basic step toward equipping recognition objects with group structure under addition.
scope and limits
- Does not prove closure under addition or multiplication.
- Does not characterize the explicit basis or generators of the subfield.
- Does not extend to other base fields or transcendental extensions.
- Does not address numerical approximation or computational representation.
formal statement (Lean)
82lemma neg (hx : PhiClosed φ x) : PhiClosed φ (-x) :=
proof body
Term-mode proof.
83 (phiSubfield φ).neg_mem hx
84
used by (40)
-
sub_eq_add -
J_at_phi -
PhiInt -
PhiInt -
canonicalPhiRingObj -
PhiRingHom -
PhiRingObj -
duhamelRemainderOfGalerkin_integratingFactor -
tendsto_duhamelKernelIntegral_of_dominated_convergence -
encodeClause -
clauseUnit -
clauseUnit_correct -
known_lit_false'' -
valueOfLit -
evalLit -
Lit -
mentionsVarLit -
deriv_alphaInv_of_gap -
logarithmic_derivative_constant -
dAlembert_to_ODE_general -
ode_cos_uniqueness -
dAlembert_to_ODE_general -
ode_cos_uniqueness -
dAlembert_to_ODE_general_theorem -
dAlembert_to_ODE_theorem -
dAlembert_to_ODE_theorem -
Jcost_log_second_deriv_normalized -
neg -
ode_cos_unit_uniqueness -
toComplex_neg