The Minkowski matrix #
i. Overview #
The aim of this module is to define the Minkowski matrix η
in d+1
dimensions, and
prove properties thereof.
The Minkowski matrix is the real matrix of the form diag(1, -1, -1, -1, ...)
,
It is related to the Minkowski metric on ℝ^(d+1)
.
Related to the Minkowski matrix is the notion of the dual of a matrix with respect to
the Minkowski metric. This is defined as η * Λᵀ * η
, where Λ
is a real matrix.
This will be used to help define the Lorentz group in later files.
ii. Key results #
minkowskiMatrix
: The Minkowski matrix ind+1
dimensions.minkowskiMatrix.dual
: The dual of a matrix with respect to the Minkowski metric, defined to beη * Λᵀ * η
.
iii. Table of contents #
- A. The Minkowski Matrix
- A.1. Basic equalitites
- A.2. Notation for the Minkowski matrix
- A.3. Components of the Minkowski matrix
- A.4. Squaring the Minkowski matrix
- A.5. Symmetry properties of the Minkowski matrix
- A.6. Determinant of the Minkowski matrix
- A.7. Injective properties of multiplying diagonal components
- A.8. Action of the Minkowski matrix on vectors
- B. The Minkowski dual
- B.1. The dual on the identity
- B.2. The dual swaps multiplication
- B.3. The dual is an involution
- B.4. The dual commutes with the transpose
- B.5. The dual preserves the Minkowski matrix
- B.6. The dual preserves the determinants
- B.7. Components of the dual
iv. References #
No references are given here.
A. The Minkowski Matrix #
We first define the Minkowski matrix in d+1
dimensions, and prove some basic properties.
A.1. Basic equalitites #
We show some basic equalities for the Minkowski matrix. In particular, we show it can be expressed as a block matrix.
The Minkowski matrix as a block matrix.
A.2. Notation for the Minkowski matrix #
We define the notation η
for the Minkowski matrix, which can be used when the namespace
minkowskiMatrix
is opened.
Notation for minkowskiMatrix
.
Equations
- minkowskiMatrix.termη = Lean.ParserDescr.node `minkowskiMatrix.termη 1024 (Lean.ParserDescr.symbol "η")
Instances For
A.3. Components of the Minkowski matrix #
We prove some simple properties related to the components of the Minkowski matrix.
The time-time
component of the Minkowski matrix is 1
.
The space diagonal components of the Minkowski matrix are -1
.
A.4. Squaring the Minkowski matrix #
we show that the Minkowski matrix is self-inverting, i.e. η * η = 1
,
as well as other properties related to squaring the Minkowski matrix.
The Minkowski matrix is self-inverting.
Multiplying any element on the diagonal of the Minkowski matrix by itself gives 1
.
A.5. Symmetry properties of the Minkowski matrix #
The Minkowski matrix is symmetric, due to it being diagonal.
The Minkowski matrix is symmetric.
A.6. Determinant of the Minkowski matrix #
We show the determinant of the Minkowski matrix is equal to (-1)^d
where
d
is the number of spatial dimensions.
The determinant of the Minkowski matrix is equal to -1
to the power
of the number of spatial dimensions.
A.7. Injective properties of multiplying diagonal components #
If x
and y
are reals then since η μ μ
is non-zero for any μ
, the equation
η μ μ * x = η μ μ * y
implies x = y
. We prove this as a lemma.
This is a useful part of the API but is not used oten.
A.8. Action of the Minkowski matrix on vectors #
We show properties of the action of the Minkowski matrix on vectors.
B. The Minkowski dual #
Given a real matrix Λ
, we define the dual of Λ
with respect to the Minkowski metric
to be η * Λᵀ * η
.
The ultimate idea is that for the Minkowski inner product
⟪Λ x, y⟫ = ⟪x, dual Λ y⟫
for all vectors x
and y
.
An element Λ
is in the Lorentz group if and only if dual Λ = Λ⁻¹
. This will not be
shown in this module.
This notion of a dual is not quite a homomorphism because it reverses the order of multiplication.
B.1. The dual on the identity #
We show that the dual of the identity matrix is the identity matrix.
The Minkowski dual of the identity is the identity.
B.2. The dual swaps multiplication #
We show that the dual swaps multiplication, i.e. dual (Λ * Λ') = dual Λ' * dual Λ
.
The Minkowski dual is involutive (i.e. dual (dual Λ)) = Λ
).
B.4. The dual commutes with the transpose #
B.5. The dual preserves the Minkowski matrix #
The Minkowski dual preserves the Minkowski matrix.
B.6. The dual preserves the determinants #
B.7. Components of the dual #
We show a number of properties related to the components of the duals.