Encyclopedia Gravity Gravity Ricci Tensor Minkowski Is Vacuum Solution
ARTICLE 3 claims 2 theorems 1 model
Gravity Ricci Tensor Minkowski Is Vacuum Solution
The declaration proves a basic fact of general relativity: empty, flat spacetime satisfies Einstein's equation with no matter and no cosmological constant.
What the vacuum solution proves
In general relativity, the Einstein field equation links the geometry of spacetime to its matter and energy content. The left-hand side, the Einstein tensor Gμν, is built from the Ricci tensor and the scalar curvature. The right-hand side contains the stress-energy tensor Tμν and the cosmological constant Λ. The vacuum equation, Gμν + Λ gμν = 0, describes a spacetime with no matter or radiation present.
Minkowski spacetime, the four-dimensional arena of special relativity, is the simplest solution: it is flat, with no curvature. The declaration minkowski_is_vacuum_solution proves, by direct computation, that this flat metric satisfies the vacuum equation when the cosmological constant Λ is set to zero. The proof is a ledger, a discrete record of every algebraic step, checked by a machine. It shows that the Ricci tensor, the scalar curvature, and the Einstein tensor all vanish for the flat metric, making the equation hold identically.
This result is a sanity check, not a surprise. It confirms that the framework's definitions of curvature and the Einstein tensor reproduce the standard fact that empty flat space is a valid vacuum solution. The declaration does not claim that Minkowski spacetime is the only vacuum solution, nor does it address solutions with a nonzero cosmological constant, gravitational waves, or black holes. It also does not prove that the Einstein field equations themselves are derived from first principles; it assumes their structural form as a definition.
In Recognition Science, this theorem anchors the framework's treatment of gravity to a known classical result. It shows that the framework's formal machinery, built from the same starting point as the rest of the theory, correctly reproduces a basic fact of general relativity. For a reader, the practical consequence is that the framework's geometric definitions are consistent with the standard physics of empty spacetime.
THEOREM minkowski_is_vacuum_solution · IndisputableMonolith/Gravity/RicciTensor.lean
/-- Flat Minkowski metric satisfies the vacuum EFE with Lambda = 0. -/
theorem minkowski_is_vacuum_solution :
vacuum_efe_coord minkowski minkowski_inverse
(fun _ _ _ => 0) (fun _ _ _ _ => 0) 0 := by
intro mu nu
simp [einstein_flat]
THEOREM einstein_flat · IndisputableMonolith/Gravity/RicciTensor.lean
/-- Einstein tensor vanishes for flat spacetime. -/
theorem einstein_flat (mu nu : Idx) :
einstein_tensor minkowski minkowski_inverse
(fun _ _ _ => 0) (fun _ _ _ _ => 0) mu nu = 0 := by
simp [einstein_tensor, ricci_flat, scalar_flat]
MODEL vacuum_efe_coord · IndisputableMonolith/Gravity/RicciTensor.lean
/-- The vacuum Einstein field equation in coordinates:
G_{mu nu} + Lambda g_{mu nu} = 0 -/
def vacuum_efe_coord (met : MetricTensor) (ginv : InverseMetric)
(gamma : Idx → Idx → Idx → ℝ)
(dgamma : Idx → Idx → Idx → Idx → ℝ)
(Lambda : ℝ) : Prop :=
∀ mu nu : Idx,
einstein_tensor met ginv gamma dgamma mu nu + Lambda * met.g mu nu = 0
What this page does not claim
This does not prove Minkowski spacetime is the only vacuum solution. This does not address solutions with a nonzero cosmological constant. This does not derive the Einstein field equations from the framework's foundational principles.
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/Gravity/RicciTensor.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 other vacuum solutions exist beyond flat spacetime?
- How does the framework derive the Einstein field equations from its first principles?
- Does the framework predict the value of the cosmological constant?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM minkowski_is_vacuum_solution · IndisputableMonolith/Gravity/RicciTensor.lean
/-- Flat Minkowski metric satisfies the vacuum EFE with Lambda = 0. -/ theorem minkowski_is_vacuum_solution : vacuum_efe_coord minkowski minkowski_inverse (fun _ _ _ => 0) (fun _ _ _ _ => 0) 0 := by intro mu nu simp [einstein_flat]Minkowski spacetime, the flat metric of special relativity, satisfies the vacuum Einstein field equation with zero cosmological constant. minkowski_is_vacuum_solution · IndisputableMonolith/Gravity/RicciTensor.leanTHEOREM einstein_flat · IndisputableMonolith/Gravity/RicciTensor.lean
/-- Einstein tensor vanishes for flat spacetime. -/ theorem einstein_flat (mu nu : Idx) : einstein_tensor minkowski minkowski_inverse (fun _ _ _ => 0) (fun _ _ _ _ => 0) mu nu = 0 := by simp [einstein_tensor, ricci_flat, scalar_flat]The Ricci tensor, the scalar curvature, and the Einstein tensor all vanish for the flat Minkowski metric. einstein_flat · IndisputableMonolith/Gravity/RicciTensor.leanMODEL vacuum_efe_coord · IndisputableMonolith/Gravity/RicciTensor.lean
/-- The vacuum Einstein field equation in coordinates: G_{mu nu} + Lambda g_{mu nu} = 0 -/ def vacuum_efe_coord (met : MetricTensor) (ginv : InverseMetric) (gamma : Idx → Idx → Idx → ℝ) (dgamma : Idx → Idx → Idx → Idx → ℝ) (Lambda : ℝ) : Prop := ∀ mu nu : Idx, einstein_tensor met ginv gamma dgamma mu nu + Lambda * met.g mu nu = 0The vacuum Einstein field equation is defined as G<sub>μν</sub> + Λ g<sub>μν</sub> = 0. vacuum_efe_coord · IndisputableMonolith/Gravity/RicciTensor.lean