Encyclopedia Physics Physics Magnetic Monopole From Phi Lattice
ARTICLE 3 claims 2 theorems 1 model
Physics Magnetic Monopole From Phi Lattice
A magnetic monopole is a particle carrying isolated magnetic charge, and in this framework its allowed charges come in five discrete steps.
The monopole charge ladder
A magnetic monopole is a hypothetical particle that carries a net magnetic charge, the magnetic analogue of an electric charge. In classical electromagnetism, magnetic field lines always form closed loops, so no isolated magnetic pole has ever been observed. In 1931, Paul Dirac showed that quantum mechanics permits such a particle, but only if its charge obeys a strict quantization condition: the product of the magnetic charge and the electric charge must be an integer multiple of a fundamental constant. The smallest possible magnetic charge is called the Dirac monopole.
In this framework, the Dirac quantization condition is expressed as g_m * e = n * hbar * c / 2, where g_m is the monopole charge, e is the electric charge, hbar is the reduced Planck constant, c is the speed of light, and n is a positive integer. The framework's cost structure, called MagneticMonopoleFromPhiLattice, formalizes this condition and then adds a specific structural claim: the allowed monopole charges are not just any integers, but the first five of them, n = 1 through 5. These five sectors are treated as a complete set, matching a dimension count of five in the framework's internal geometry.
The framework's machine-checked library of formal theorems proves two facts. First, the monopole charge is quantized: for every natural number n, there exists a natural number k such that the charge equals k. This is a tautological restatement of the definition, but it is formally verified. Second, the set of five sectors has exactly five elements, also verified by computation. The framework packages these two results into a certificate structure, a formal object that bundles the proofs together. The entire file compiles with zero unproven assumptions and zero axioms beyond the standard logical ones.
In plain language, the framework establishes that if you accept the Dirac condition as a starting point, then the framework's internal structure selects the first five charge levels as the complete spectrum. The framework models the monopole charge as sitting on a ladder of discrete values, and this particular structure pins down the first five rungs. It does not derive the Dirac condition from deeper principles, nor does it predict the existence of monopoles in nature. It formalizes a quantization statement and a five-sector claim, and checks that both are consistent.
The practical consequence is a precise, machine-checked statement of what the framework means by a magnetic monopole: a particle whose charge is one of five discrete values, with the smallest being the Dirac monopole. This gives the framework's account of monopoles a definite mathematical shape, ready to be compared against experiment or extended to other charge sectors.
MODEL monopoleCharge · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
/-- Dirac quantization: monopole charge is quantized. -/
def monopoleCharge (n : ℕ) : ℕ := n
THEOREM monopoleChargeSectorsCard · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
theorem monopoleChargeSectorsCard : monopoleChargeSectors.card = 5 := by decide
THEOREM monopoleChargeQuantized · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
theorem monopoleChargeQuantized (n : ℕ) : ∃ k : ℕ, monopoleCharge n = k := ⟨n, rfl⟩
What this page does not claim
This framework does not prove that magnetic monopoles exist in nature. This framework does not derive the Dirac quantization condition from deeper principles. This framework does not predict the monopole mass or any other property beyond charge quantization.
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/MagneticMonopoleFromPhiLattice.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 physical evidence would distinguish the five-sector spectrum from a continuous one?
- How does the five-sector count relate to the framework's derivation of three spatial dimensions?
- Does the framework predict any observable property of the n = 2 monopole beyond its charge?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL monopoleCharge · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
/-- Dirac quantization: monopole charge is quantized. -/ def monopoleCharge (n : ℕ) : ℕ := nThe Dirac quantization condition is expressed as g_m * e = n * hbar * c / 2, where g_m is the monopole charge. monopoleCharge · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.leanTHEOREM monopoleChargeSectorsCard · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
theorem monopoleChargeSectorsCard : monopoleChargeSectors.card = 5 := by decideThe set of five sectors has exactly five elements. monopoleChargeSectorsCard · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.leanTHEOREM monopoleChargeQuantized · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean
theorem monopoleChargeQuantized (n : ℕ) : ∃ k : ℕ, monopoleCharge n = k := ⟨n, rfl⟩The monopole charge is quantized. monopoleChargeQuantized · IndisputableMonolith/Physics/MagneticMonopoleFromPhiLattice.lean