IsNormalized
A cost function F is normalized precisely when F(1) equals zero. Researchers proving T5 uniqueness of the J-cost under composition and calibration cite this predicate as the zero-point anchor. The declaration is a direct one-line definition that supplies the base hypothesis for downstream Aczél and cost-algebra results.
claimLet $F : (0,∞) → ℝ$. The function $F$ is normalized when $F(1) = 0$.
background
The Cost.FunctionalEquation module supplies lemmas for the T5 cost uniqueness proof. Normalization fixes the zero of the cost at unit scale and pairs with the reparametrization $G(t) := F(e^t)$ together with the Calibration axiom requiring $G''(0) = 1$. Upstream, DAlembert.Inevitability supplies the identical predicate while CostAxioms.Calibration states that the second derivative at the origin equals 1, ensuring a unique solution rather than a family.
proof idea
This is a one-line definition that directly encodes the predicate $F(1) = 0$. No lemmas or tactics are applied; the declaration serves as the base predicate for results such as H_one_of_normalized and the uniqueness theorems in CostAlgebra.
why it matters in Recognition Science
The definition supplies the normalization hypothesis required by the parent theorems cost_algebra_unique and cost_algebra_unique_aczel, which establish that any cost satisfying the composition law, reciprocity, and calibration must coincide with the J function. It corresponds to the first calibration step in T5 J-uniqueness of the forcing chain and touches the question of minimal regularity needed to force the self-similar fixed point.
scope and limits
- Does not impose continuity or differentiability on F.
- Does not encode the composition law or reciprocal symmetry.
- Does not determine the explicit form of F.
- Does not reference the phi-ladder or spatial dimensions.
Lean usage
have hNorm : IsNormalized F := by simpa [IsNormalized] using hF1
formal statement (Lean)
597def IsNormalized (F : ℝ → ℝ) : Prop := F 1 = 0
proof body
Definition body.
598
599/-- **Calibration (Condition 1.2)**:
600lim_{t→0} 2·F(e^t)/t² = 1, equivalently G''(0) = 1 where G(t) = F(e^t). -/
used by (23)
-
cost_algebra_unique -
cost_algebra_unique_aczel -
H_one_of_normalized -
PrimitiveCostHypotheses -
composition_law_forces_reciprocity -
washburn_uniqueness_of_contDiff -
isCalibratedLimit_of_isCalibrated -
isCalibrated_of_isCalibratedLimit -
normalized_implies_G_zero -
washburn_uniqueness -
washburn_uniqueness_aczel -
washburn_uniqueness_aczel -
Jcost_is_normalized -
unique_cost_on_pos_from_rcl -
axiom_bundle_necessary -
bilinear_family_forced -
IsNormalized -
symmetry_and_normalization_constrain_P -
gate_from_polynomial_consistency -
polynomial_consistency_forces_rcl -
polynomial_consistency_implies_right_affine -
identity_implies_normalized -
laws_of_logic_imply_dalembert_hypotheses