pith. machine review for the scientific record. sign in
def definition def or abbrev high

IsCalibrated

show as:
view Lean formalization →

The calibration condition normalizes the curvature of a cost functional at the identity by requiring the second derivative of its log-reparametrized form at zero to equal one. Researchers proving T5 uniqueness of the cost algebra in Recognition Science cite this definition to fix the scale of solutions to the functional equation. It is introduced directly as the equality of that second derivative to unity, which is equivalent to the stated limit form.

claimA function $F:ℝ→ℝ$ is calibrated when the second derivative at zero of $G(t):=F(e^t)$ equals one, i.e., $G''(0)=1$.

background

This module supplies lemmas for the T5 cost uniqueness proof. The reparametrization $G(t)=F(exp t)$ converts the multiplicative Recognition Composition Law into an additive equation in log coordinates. Upstream, the Calibration axiom states that the second derivative at the origin in log coordinates equals 1; this normalizes the curvature of the cost functional at unity and ensures a unique solution rather than a family. The shifted form $H=G+1$ then satisfies the d'Alembert equation under the composition law.

proof idea

The declaration is a direct definition that records the calibration condition as the second derivative of the reparametrized function equaling one at the origin. No lemmas or tactics are applied; it simply packages the normalization hypothesis for downstream uniqueness arguments.

why it matters in Recognition Science

This definition supplies the calibration hypothesis required by the parent theorems cost_algebra_unique and cost_algebra_unique_aczel, which establish that any cost satisfying the axioms plus this condition must equal the J function (T5 in the forcing chain). It implements the normalization step that anchors the scale so the self-similar fixed point and eight-tick octave follow uniquely. The result touches the open question of minimal regularity assumptions needed to invoke Aczél's theorem without extra hypotheses.

scope and limits

formal statement (Lean)

 601def IsCalibrated (F : ℝ → ℝ) : Prop :=

proof body

Definition body.

 602  deriv (deriv (G F)) 0 = 1
 603
 604/-- **Calibration (limit form)**:
 605lim_{t→0} 2·F(e^t)/t² = 1, expressed on H = G + 1. -/

used by (12)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (11)

Lean names referenced from this declaration's body.