Encyclopedia Materials Materials Room Tsuperconductor Candidate Tc At Rung Strictly Increasing

ARTICLE 3 claims 3 theorems

Materials Room Tsuperconductor Candidate Tc At Rung Strictly Increasing

The declaration proves that the candidate critical temperature rises strictly with each rung of the golden-ratio ladder, nothing more.

The phi-ladder temperature scale

In condensed matter physics, the critical temperature T_c is the temperature below which a material becomes superconducting. The Recognition Science framework models a candidate T_c for hydrogen-rich superconductors as a value on a discrete ladder. Each integer rung k of the ladder multiplies T_c by the golden ratio φ, about 1.618. The declaration tcAtRung_strictly_increasing proves a simple property of this model: for every rung k, the T_c at rung k+1 is strictly greater than the T_c at rung k. In plain terms, moving up one rung always raises the predicted critical temperature, never lowers it and never leaves it flat.

The proof is short and direct. The framework defines T_c at rung k as the reference value times φ raised to the power k. It first proves that every T_c is positive, then proves that the ratio between adjacent rungs is exactly φ. Since φ is greater than 1 and T_c is always positive, multiplying by φ must increase the value. The theorem thus follows from the positivity of the sequence and the fact that φ exceeds 1. The framework's machine-checked library of formal theorems records this argument with no gaps and no extra assumptions.

This strict increase is a structural property of the model, not an empirical claim. The declaration says nothing about whether any real material achieves rung 5, whether room-temperature superconductivity exists, or whether the ladder itself is physically correct. It only certifies that within the model, the sequence of candidate T_c values is strictly increasing. The framework's own documentation lists rung 5 at 432 K, above room temperature, but that value is a prediction with a named falsifier: a hydride that reaches rung-5 pairing strength but superconducts below 300 K. The strict-increase theorem does not make that prediction true; it only ensures the ladder is monotone.

What the declaration changes is the internal consistency of the model. A reader can now rely on the ladder being ordered: higher rungs always mean higher candidate T_c. This makes the framework's rung language meaningful as a ranking. It also means the framework cannot accidentally produce a model where rung 5 is colder than rung 4, a failure mode that would undermine the entire phi-ladder design. The theorem closes that door.

THEOREM tcAtRung_strictly_increasing · IndisputableMonolith/Materials/RoomTSuperconductorCandidate.lean
theorem tcAtRung_strictly_increasing (k : ℕ) :
    tcAtRung k < tcAtRung (k + 1) := by
  rw [tcAtRung_succ_ratio]
  have hk : 0 < tcAtRung k := tcAtRung_pos k
  have hphi_gt_one : (1 : ℝ) < phi := by
    have := Constants.phi_gt_onePointFive; linarith
  have : tcAtRung k * 1 < tcAtRung k * phi :=
    mul_lt_mul_of_pos_left hphi_gt_one hk
  simpa using this
THEOREM tc_adjacent_ratio · IndisputableMonolith/Materials/RoomTSuperconductorCandidate.lean
theorem tc_adjacent_ratio (k : ℕ) :
    tcAtRung (k + 1) / tcAtRung k = phi := by
  rw [tcAtRung_succ_ratio]
  have hpos : 0 < tcAtRung k := tcAtRung_pos k
  field_simp [hpos.ne']
THEOREM tcAtRung_pos · IndisputableMonolith/Materials/RoomTSuperconductorCandidate.lean
theorem tcAtRung_pos (k : ℕ) : 0 < tcAtRung k := by
  unfold tcAtRung referenceTc
  have : 0 < phi ^ k := pow_pos Constants.phi_pos k
  linarith [this]

What this page does not claim

The declaration does not claim any real material reaches rung 5 or superconducts at room temperature. The declaration does not claim the phi-ladder model itself is physically correct, only that within the model the sequence is increasing. The declaration does not prove the value 432 K for rung 5; that remains a prediction with hydrides as falsifier.

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/Materials/RoomTSuperconductorCandidate.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