Results about the grading structure of the clifford algebra #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
The main result is clifford_algebra.graded_algebra
, which says that the clifford algebra is a
ℤ₂-graded algebra (or "superalgebra").
The even or odd submodule, defined as the supremum of the even or odd powers of
(ι Q).range
. even_odd 0
is the even submodule, and even_odd 1
is the odd submodule.
Equations
- clifford_algebra.even_odd Q i = ⨆ (j : {n // ↑n = i}), linear_map.range (clifford_algebra.ι Q) ^ ↑j
Instances for clifford_algebra.even_odd
A version of clifford_algebra.ι
that maps directly into the graded structure. This is
primarily an auxiliary construction used to provide clifford_algebra.graded_algebra
.
Equations
- clifford_algebra.graded_algebra.ι Q = (direct_sum.lof R (zmod 2) (λ (i : zmod 2), ↥(clifford_algebra.even_odd Q i)) 1).comp (linear_map.cod_restrict (clifford_algebra.even_odd Q 1) (clifford_algebra.ι Q) _)
The clifford algebra is graded by the even and odd parts.
Equations
To show a property is true on the even or odd part, it suffices to show it is true on the scalars or vectors (respectively), closed under addition, and under left-multiplication by a pair of vectors.
To show a property is true on the even parts, it suffices to show it is true on the scalars, closed under addition, and under left-multiplication by a pair of vectors.
To show a property is true on the odd parts, it suffices to show it is true on the vectors, closed under addition, and under left-multiplication by a pair of vectors.