Hurwitz's theorem: the dimension of a Euclidean composition algebra is 1, 2, 4 or 8 #
finrank_eq_one_or_two_or_four_or_eight : a finite-dimensional Euclidean composition algebra
has real dimension 1, 2, 4 or 8. Composition/Instances.lean exhibits β, β, β,
π at each of the four, so all four occur.
The argument, and where the bound actually comes from #
Start with Aβ = β β 1 and double: while the current composition subalgebra A is proper,
exists_unit_orthogonal produces a unit u β₯ A and Composition/Doubling.lean's three rules
make A β A u a composition subalgebra of twice the dimension. So finrank C is a power of
two, and the whole content of the theorem is that the fourth doubling is impossible.
β
The build plan said the doubling stops "because CD D composes only when D is
associative", and flagged that it had not written this out to the level where a Lean gap would
show. Written out, the mechanism is not the one the phrase suggests, and the difference
matters:
- Closure of
A β A uis unconditional βDoubling.leanproves the three rules with no associativity hypothesis. So the doubling never fails to close. - What fails is the norm. Inside
Cthe norm form is multiplicative by hypothesis, so expandingN(xy) = N x N yonx = a + bu,y = c + duyields, after both adjoint identities,βͺb, (da)cβ« = βͺb, d(ac)β«for allb β Aβ andAis nondegenerate, soAis associative. That isforced_assoc, and it is a hypothesis onAextracted from the mere existence ofu, not a property of a separately constructedCD A.
β
Finite-dimensionality enters twice, and both times as counting: in
exists_unit_orthogonal, to produce the normal at all, and in finrank_double and the chain of
the main theorem, for the dimension bookkeeping. It does not enter the algebra: the three
structural lemmas forced_assoc, comm_of_assoc_double and le_span_one_of_comm_double are
proved without it, as the omit [FiniteDimensional β C] lines above them record.
β
An earlier draft of this paragraph said finite-dimensionality was used "in exactly one place".
That was false β finrank_double uses Submodule.finrank_sup_add_finrank_inf_eq and
Submodule.equivMapOfInjective, and its own omit line omits only [Nontrivial C].
So the bound is a contrapositive: a composition subalgebra that is not associative has no unit
vector orthogonal to it, hence is everything. Two more steps localise the failure:
comm_of_assoc_double (if A β A u is associative then A is commutative) and
le_span_one_of_comm_double (if A β A u is commutative then A β β β 1). At the fourth
doubling these chain to finrank Aβ β€ 1, contradicting finrank Aβ = 2.
What is not proved here #
The classification β that a Euclidean composition algebra is isomorphic to β, β, β
or π β is not proved here. Only the dimension is. Building the four isomorphisms needs the
chain to be identified with the concrete carriers step by step, which is a separate
construction: Composition/Classification.lean, hurwitz_classification. β
That file re-runs
the chain below with an embedding carried alongside it; it does not derive the maps from the
dimension theorem, which it uses only once, to know the third double is everything.
Scope #
This file carries finrank_eq_one_or_two_or_four_or_eight, Hurwitz's theorem in
dimension form.
Right multiplication by a unit vector #
Right multiplication, as an β-linear map.
Equations
- CompositionAlgebra.mulRightL u = { toFun := fun (x : C) => x * u, map_add' := β―, map_smul' := β― }
Instances For
Right multiplication by a unit vector is injective: it is a linear isometry of the norm form.
A proper subspace has a unit normal #
Every proper subspace of a Euclidean composition algebra has a unit normal. This is the only place finite-dimensionality is used, and it is where the doubling gets its input.
The doubled subalgebra #
The CayleyβDickson double of A inside C, along the unit vector u.
Equations
- CompositionAlgebra.double A u = A β Submodule.map (CompositionAlgebra.mulRightL u) A
Instances For
The doubled subalgebra is again a composition subalgebra. This is exactly the three
CayleyβDickson rules of Composition/Doubling.lean, assembled.
The norm of an element of the doubled algebra splits: N(p + q u) = N p + N q.
Forced associativity. If some unit vector is orthogonal to the composition subalgebra
A, then A is associative.
This is where Hurwitz's dimension bound actually comes from. The hypothesis is the existence
of u, and the conclusion is a property of A alone: the norm form of C, restricted to
A β A u, is multiplicative for free, and multiplicativity there is equivalent to
associativity of A.
Dimension of the double #
The doubling exactly doubles the dimension.
Where the chain stops #
If the doubled algebra is associative, A is commutative.
If the doubled algebra is commutative, A is the line through the unit.
The base of the chain #
The line through the unit is a composition subalgebra.
Hurwitz's theorem #
Hurwitz's theorem (dimension form). A finite-dimensional Euclidean composition algebra
has real dimension 1, 2, 4 or 8.
Composition/Instances.lean exhibits β, β, β and π at the four values, so each is
attained. The classification β that those four are the only algebras, not just the only
dimensions β is Composition/Classification.lean's hurwitz_classification, not this
theorem.