Encyclopedia Physics Physics Quantum Entanglement Entropy Area Law
ARTICLE 3 claims 2 theorems 1 model
Physics Quantum Entanglement Entropy Area Law
Entanglement entropy usually grows with volume, but in many quantum systems it grows with area; Recognition Science's machine-checked library classifies exactly five regimes where this area law holds.
The five regimes
In quantum physics, entanglement entropy measures how much information is shared between a region of space and its surroundings. For most systems you might imagine, this entropy grows with the volume of the region, meaning every extra piece of space adds its own share of shared information. But in a surprising class of systems, the entropy grows only with the boundary, the area of the region's surface, not its interior. This is the area law of entanglement entropy, and it signals that the system's quantum correlations are organized in a special, surface-bound way.
The standard picture recognizes five distinct physical regimes where this area law appears, each with its own scaling behavior. A gapped ground state, where the system has an energy gap above its lowest state, shows a constant area-law term. A critical one-dimensional conformal field theory, a system at a phase transition with scale-invariant behavior, has a logarithmic correction. Topological order, where the system's properties depend on global features rather than local ones, adds a constant correction. Many-body localized systems, which fail to thermalize due to disorder, show a logarithmic growth in time. And thermalizing systems, which do reach equilibrium, show a volume law at late times, breaking the area law entirely.
In Recognition Science, the framework's machine-checked library of formal theorems formalizes this classification. It defines an inductive type, a formal enumeration of these five regimes, and proves that there are exactly five of them. The proof is a simple computation, checked by the kernel, with no axioms and no gaps. The library then packages this into a certificate object, a formal witness that the five-regime classification is complete. This is not a derivation of the area law from first principles; it is a formal statement that the standard physics classification has exactly five members.
The framework's contribution is to make this classification precise and machine-checked. The five regimes are not an ad hoc list but a closed set, and the library proves that there are no others. This matters because it gives a rigorous foundation for the physics: when a system falls into one of these five classes, its entanglement entropy behavior is fixed. The formal certificate is a guarantee that no regime has been missed, and that the classification is complete. This is a small but solid step toward a fully formalized quantum physics.
THEOREM EntanglementRegime · entanglementRegime_count · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
inductive EntanglementRegime where
| gappedGroundState
| critical1p1CFT
| topologicalOrder
| manyBodyLocalized
| thermalizing
deriving DecidableEq, Repr, BEq, Fintype
theorem entanglementRegime_count :
Fintype.card EntanglementRegime = 5 := by decide
MODEL EntanglementRegime · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
inductive EntanglementRegime where
| gappedGroundState
| critical1p1CFT
| topologicalOrder
| manyBodyLocalized
| thermalizing
deriving DecidableEq, Repr, BEq, Fintype
THEOREM entanglementAreaLawCert · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
def entanglementAreaLawCert : EntanglementAreaLawCert where
five_regimes := entanglementRegime_count
What this page does not claim
No derivation of the area law from first principles is given. No claim that the five regimes are the only possible ones in all of physics. No claim that the framework's classification replaces the standard physics derivation.
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/Physics/QuantumEntanglementEntropyAreaLaw.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:
- How does the formal classification connect to the actual physics of each regime?
- What is the precise scaling behavior of entanglement entropy in each of the five regimes?
- Does the framework derive the area law from more fundamental principles, or only classify its regimes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM EntanglementRegime · entanglementRegime_count · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
inductive EntanglementRegime where | gappedGroundState | critical1p1CFT | topologicalOrder | manyBodyLocalized | thermalizing deriving DecidableEq, Repr, BEq, Fintypetheorem entanglementRegime_count : Fintype.card EntanglementRegime = 5 := by decideThe framework's machine-checked library defines an inductive type with exactly five entanglement regimes. EntanglementRegime · entanglementRegime_count · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.leanMODEL EntanglementRegime · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
inductive EntanglementRegime where | gappedGroundState | critical1p1CFT | topologicalOrder | manyBodyLocalized | thermalizing deriving DecidableEq, Repr, BEq, FintypeThe five regimes are gapped ground state, critical 1+1 CFT, topological order, many-body localized, and thermalizing. EntanglementRegime · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.leanTHEOREM entanglementAreaLawCert · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean
def entanglementAreaLawCert : EntanglementAreaLawCert where five_regimes := entanglementRegime_countThe library constructs a certificate object proving the five-regime classification is complete. entanglementAreaLawCert · IndisputableMonolith/Physics/QuantumEntanglementEntropyAreaLaw.lean