Encyclopedia Foundation Foundation Primitive Recognition Calculus Prcchain Bridge Jcost Log Curvature On

ARTICLE 3 claims 3 theorems

Foundation Primitive Recognition Calculus Prcchain Bridge Jcost Log Curvature On

A single number, the curvature of a cost curve at its resting point, pins down the exact form of a universal cost function.

The calibrated cost

The cost of recognition, a measure of how much work it takes for reality to register a distinction, is not arbitrary. The Recognition Science framework proves that any cost function satisfying five plain conditions must equal J(x) = (x + 1/x)/2 - 1. This theorem is machine-checked in the framework's library of formal theorems. The declaration jcost_logCurvature_one establishes a specific property of this function: when measured in logarithmic coordinates, its curvature at the point where x equals 1 is exactly 1.

To see what this means, consider the curve of the cost function plotted against the logarithm of its input. The curvature at a point measures how sharply the curve bends there. The theorem states that at the unit point, where the input is 1, this curvature is precisely 1, not some other number. This is not a coincidence or a choice; it is forced by the five conditions. The declaration proves this by first showing that in log coordinates the cost function equals cosh(t) - 1, a standard hyperbolic cosine shifted down by one, and then computing the second derivative of that expression at zero, which is 1.

This single fact acts as a calibration. The framework's chain of reasoning, which derives the golden ratio, the number 8, and the dimension 3 from the cost function, is anchored on this calibrated value. The declaration also proves that the golden ratio, along with the numbers 8 and 3, all live in a countable field, a mathematical structure strictly smaller than the full continuum of real numbers. This means the chain's outputs are all reachable through finite or countable operations, never requiring the uncountable infinite.

What the declaration does not claim is equally precise. It does not assert that the cost function is the only one with this curvature property; other functions could share it. It does not claim that the physical universe actually uses this cost function; that is a separate empirical question. And it does not claim that the golden ratio or the dimension 3 arise from this curvature alone; they emerge from the full chain of theorems, not from this single declaration in isolation.

THEOREM jcost_logCurvature_one · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCChainBridge.lean
/-- The RS chain's cost entry is the *calibrated* δ cost: its log-curvature at the
unit is exactly 1. So `Cost.Jcost` is not merely a member of the δ-forced gauge
family; it is the gauge-fixed (unit = 1) member that `Calibration` singles out as
J. -/
theorem jcost_logCurvature_one :
    deriv (deriv (fun t => Cost.Jcost (Real.exp t))) 0 = 1 := by
  have hfun : (fun t => Cost.Jcost (Real.exp t))
      = (fun t => Real.cosh (1 * t) - 1) := by
    funext t; exact jcost_log_eq_clog_one t
  rw [hfun, Calibration.logCurvature 1]
  norm_num
THEOREM jcost_log_eq_clog_one · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCChainBridge.lean
/-- `Cost.Jcost` in log coordinates is the `c = 1` member of the δ-forced cost
family: `Jcost(eᵗ) = cosh(1·t) − 1`. -/
theorem jcost_log_eq_clog_one (t : ℝ) :
    Cost.Jcost (Real.exp t) = Real.cosh (1 * t) - 1 := by
  simp only [Cost.Jcost, one_mul, Real.cosh_eq, Real.exp_neg]
THEOREM rs_chain_all_rungs_in_field · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCChainBridge.lean
/-- **Item 3, sharpened: every chain output lands in the countable field.** The
calibrated δ cost feeds the chain, and each of the chain's named outputs, the base
ratio φ (T6), the eight-tick cadence 8 = 2³ (T7), and the spatial dimension 3
(T8), is an element of the countable RS field. The forcing chain runs end to end on
a countable carrier; the continuum is never the home of any rung. -/
theorem rs_chain_all_rungs_in_field :
    deriv (deriv (fun t => Cost.Jcost (Real.exp t))) 0 = 1
      ∧ Real.goldenRatio ∈ MinimalField.rsField
      ∧ (8 : ℝ) ∈ MinimalField.rsField
      ∧ (3 : ℝ) ∈ MinimalField.rsField
      ∧ (MinimalField.rsField : Set ℝ).Countable :=
  ⟨jcost_logCurvature_one, phi_in_minimal_field,
    MinimalField.rsField_eight_tick, MinimalField.rsField_dimension,
    MinimalField.rsField_countable⟩

What this page does not claim

This declaration alone does not prove the uniqueness of the cost function J. It does not claim that the physical universe actually uses this cost function. It does not derive the golden ratio or the dimension 3 by itself; those come from the full chain of theorems.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCChainBridge.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND