Encyclopedia Condensed Condensed Matter Hall Resistance Rs Hall Resistance Cert
ARTICLE 2 claims 2 theorems
Condensed Matter Hall Resistance Rs Hall Resistance Cert
The Hall resistance certificate is a small, honest machine-checked object: it proves three general facts about a cost function, and it says nothing specific about the quantum Hall effect.
The certificate's actual scope
The quantum Hall effect produces a resistance, the Hall resistance, that is quantized in units of h/e², the von Klitzing constant, measured as 25812.807 ohms. The Recognition Science framework's declaration HallResistanceCert does not prove that this resistance equals that value. It proves three general facts about a function called domainCost, which is defined as Jcost(m/e), where Jcost is the framework's cost function and m and e are positive real numbers.
The three facts are: domainCost is zero when its two inputs are equal; domainCost is never negative for positive inputs; and a threshold constant, phi minus 3/2, is positive. The certificate is a structure that bundles these three theorems together, and the framework's library shows the structure is inhabited, meaning a certificate exists. The proofs rely only on the general properties of Jcost, not on any physics of the Hall effect.
The docstring attached to the file records a research note, an intention to connect this cost to the fine-structure constant and the von Klitzing constant, but the note itself says this is where the idea was meant to go, not a result. The file is one of 2383 siblings that share the same body, each a template applied to a different subject. What would make this file a theorem about the Hall effect is a definition of m and e in terms of the Hall effect's own quantities, which is absent.
In plain terms, the certificate is a machine-checked proof of three harmless inequalities about a cost function. It does not establish the value of the Hall resistance, nor does it connect the cost function to the fine-structure constant. The framework's library proves general facts; this particular file proves nothing specific to condensed matter.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.lean
theorem cert_inhabited : Nonempty HallResistanceCert := ⟨cert⟩
What this page does not claim
The certificate does not prove the Hall resistance equals h/e² or any other specific value. The certificate does not connect the cost function to the fine-structure constant or the von Klitzing constant. The certificate does not establish any physical property of the quantum Hall effect.
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/CondensedMatter/Hall_Resistance_RS.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:
- What definition of m and e in terms of the quantum Hall effect would turn this template into a theorem about the Hall resistance?
- How does the framework's cost function Jcost relate to the fine-structure constant in other files?
- What is the empirical status of the framework's proposed value for the Hall resistance?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The certificate proves three general facts about domainCost: it vanishes when its inputs are equal, it is nonnegative for positive inputs, and a threshold constant is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.lean
theorem cert_inhabited : Nonempty HallResistanceCert := ⟨cert⟩The certificate is a structure that bundles these three theorems together, and the framework's library shows the structure is inhabited. cert_inhabited · IndisputableMonolith/CondensedMatter/Hall_Resistance_RS.lean