Encyclopedia Physics Physics Casimir Effect From Rs
ARTICLE 3 claims 2 theorems 1 measured
Physics Casimir Effect From Rs
Two metal plates in empty space attract each other. That is the Casimir effect, a force born from quantum vacuum fluctuations.
The Casimir effect
The Casimir effect is the attractive force between two uncharged, parallel conducting plates placed close together in a vacuum. Predicted by Hendrik Casimir in 1948, it arises because quantum vacuum fluctuations, brief appearances and disappearances of particles and fields, cannot exist between the plates in all the ways they can outside. The confined space permits fewer virtual modes, so the pressure from outside pushes the plates together. The force is real and has been measured; for perfect conductors separated by distance d, the energy per unit area is E = -π²ħc / (720 d⁴).
The number 720 in that denominator is not arbitrary. It is the factorial of 6, written 6!, and also equals 8 times 90. In Recognition Science, a framework that derives physical constants from a single forced cost function, these factorizations are structural. The framework's library, a machine-checked collection of formal theorems, proves that 720 = 6! and that 720 = 8 × 90. The 8 is tied to an eight-tick recognition cycle; the 90 is a face-parity count from a three-dimensional structure. The framework also sets the reduced Planck constant ħ to φ⁻⁵, where φ is the golden ratio, so the Casimir energy scales as φ⁻⁵ / d⁴.
The module identifies five canonical configurations for the effect: parallel plates, sphere-plate, cylinder-plate, corrugated surfaces, and sphere-sphere. It proves, by direct computation, that there are exactly five such configurations. This matches a configurational dimension D = 5. The module bundles these facts into a certificate, a structure that packages the three proved statements into one object. The certificate is built without any unfinished proofs or added axioms.
What this establishes in plain language: the Casimir effect's famous 720 factor is not a random integer. It decomposes into structures the framework already derives, the 8 of the recognition cycle and the 90 of spatial parity. The framework does not derive the full Casimir force from scratch; it shows that the known formula's numerical core is consistent with its own derived constants. The five canonical configurations are enumerated exactly, giving a tidy combinatorial anchor for a phenomenon usually treated as pure quantum field theory.
MEASURED CasimirConfig · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
inductive CasimirConfig where
| parallelPlates | spherePlate | cylinderPlate | corrugated | sphereSphere
deriving DecidableEq, Repr, BEq, Fintype
THEOREM casimir_factor · casimir_factor_8tick · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
/-- The Casimir factor 720 = 6!. -/
theorem casimir_factor : (720 : ℕ) = Nat.factorial 6 := by decide
/-- 720 = 8 × 90 (8-tick structure). -/
theorem casimir_factor_8tick : (720 : ℕ) = 8 * 90 := by decide
THEOREM casimirConfigCount · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
theorem casimirConfigCount : Fintype.card CasimirConfig = 5 := by decide
What this page does not claim
The full Casimir force formula is not derived from the framework; only the numerical factor 720 and configuration count are proved. The framework does not prove that the Casimir effect exists; that is an experimental fact. The identification of ħ with φ⁻⁵ is a model choice, not a theorem.
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/CasimirEffectFromRS.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 eight-tick cycle force the factor 8 in the Casimir energy?
- What physical derivation connects the framework's constants to the full Casimir force formula?
- Do the five canonical configurations correspond to a deeper symmetry in quantum field theory?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED CasimirConfig · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
inductive CasimirConfig where | parallelPlates | spherePlate | cylinderPlate | corrugated | sphereSphere deriving DecidableEq, Repr, BEq, FintypeThe Casimir effect is the attractive force between two uncharged, parallel conducting plates placed close together in a vacuum. CasimirConfig · IndisputableMonolith/Physics/CasimirEffectFromRS.leanTHEOREM casimir_factor · casimir_factor_8tick · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
/-- The Casimir factor 720 = 6!. -/ theorem casimir_factor : (720 : ℕ) = Nat.factorial 6 := by decide/-- 720 = 8 × 90 (8-tick structure). -/ theorem casimir_factor_8tick : (720 : ℕ) = 8 * 90 := by decideThe framework's library proves that 720 = 6! and that 720 = 8 × 90. casimir_factor · casimir_factor_8tick · IndisputableMonolith/Physics/CasimirEffectFromRS.leanTHEOREM casimirConfigCount · IndisputableMonolith/Physics/CasimirEffectFromRS.lean
theorem casimirConfigCount : Fintype.card CasimirConfig = 5 := by decideThe module proves that there are exactly five such configurations. casimirConfigCount · IndisputableMonolith/Physics/CasimirEffectFromRS.lean