Encyclopedia Foundation Foundation Reflexivity Index Reflexivity Cost Exponential

ARTICLE 2 claims 1 theorem 1 model

Foundation Reflexivity Index Reflexivity Cost Exponential

In the framework's model of self-awareness, each extra level of self-reflection costs more than the last, a fact its machine-checked library proves.

The cost of deeper reflection

The reflexivity index is a proposed measure of how deeply a system models itself, from zero for a rock to higher integers for self-aware minds. The framework's library, a machine-checked collection of formal theorems, defines a specific cost for each level of this index: the cost at level k is φk − 1, where φ is the golden ratio, about 1.618. This is a definitional choice, a model, not a derived fact.

What the library proves about this cost is a simple monotonicity statement: if one level is deeper than another, its cost is strictly larger. The theorem reflexivityCost_exponential states that for any two levels k1 and k2 with k1 < k2, the cost at k1 is strictly less than the cost at k2. Because the base φ is greater than 1, the cost grows exponentially with level: each step up in self-reflection is more expensive than the one before it.

This is a theorem about the framework's own model, not a claim about any actual mind. It says nothing about whether the reflexivity index is a correct measure of consciousness, whether the golden ratio is the right base, or whether the cost function has any physical meaning. The theorem holds for any configuration where the base is greater than 1; the specific choice of φ is a separate, unproved assumption of the model.

The practical consequence within the framework is that the cost of self-reflection is not linear: moving from level 3 to 4 costs more than moving from 2 to 3. This supports the model's picture of why higher-order reflection is rare or effortful, but the framework does not claim this matches any measured property of minds. The theorem is a formal fact about a chosen definition, not an empirical finding.

THEOREM reflexivityCost_exponential · IndisputableMonolith/Foundation/ReflexivityIndex.lean
reflexivityCost_exponential · IndisputableMonolith/Foundation/ReflexivityIndex.lean:395
/-- The cost of level k grows exponentially with k -/
theorem reflexivityCost_exponential (config : ReflexivityConfig) (k₁ k₂ : ℕ) (hk : k₁ < k₂) :
    reflexivityCost config k₁ < reflexivityCost config k₂ := by
  unfold reflexivityCost
  have h : config.φ ^ k₁ < config.φ ^ k₂ := pow_lt_pow_right₀ config.φ_gt_one hk
  linarith
MODEL reflexivityCost · IndisputableMonolith/Foundation/ReflexivityIndex.lean
/-- **ReflexivityCost**: The J-cost of maintaining a given reflexivity level.

    Higher reflexivity requires more "energy" (has higher J-cost).
    This explains cognitive limits on self-reflection.
    Uses ℕ-power: `config.φ ^ level - 1`. -/
noncomputable def reflexivityCost (config : ReflexivityConfig) (level : ℕ) : ℝ :=
  config.φ ^ level - 1

What this page does not claim

The reflexivity index is a validated measure of consciousness in any real system. The golden ratio base φ is derived from first principles rather than chosen. The exponential growth of cost has any observed counterpart in psychology or neuroscience.

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/ReflexivityIndex.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