Transitivity of the matrix unitary group action on complex projective space #
Category: 1-Mathlib (CSD-free Mathlib upstream candidate).
Proves that Matrix.unitaryGroup (Fin N) ℂ acts transitively on
ℙ ℂ (EuclideanSpace ℂ (Fin N)) for [NeZero N], via the standard
orthonormal-basis-extension construction.
Argument #
For any unit vector
v, extend{v}to an orthonormal basisb_vindexed byFin Nwithb_v 0 = v(viaOrthonormal.exists_orthonormalBasis_extension_of_card_eq).The change-of-basis matrix
M_v := b_std.toBasis.toMatrix b_v.toBasis(whereb_std = EuclideanSpace.basisFun (Fin N) ℂ) is unitary (viaOrthonormalBasis.toMatrix_orthonormalBasis_mem_unitary) and has first column equal tov.Applying
M_vto the standard basis vectore_0recoversv.For two unit vectors
v, w, the compositionM_w * M_v⁻¹is a unitary that mapsv ↦ w. Lifted to projective space, this gives transitivity (any two projective points are related by a unitary, after normalisation of representatives).
Main result #
Matrix.UnitaryGroup.instIsPretransitive_projectivization — the
IsPretransitive instance for the matrix unitary group on ℂℙ^(N-1).
Provenance #
Staged as upstream Mathlib material. Intended location:
Mathlib/LinearAlgebra/Projectivization/UnitaryTransitive.lean.
Tags #
projectivization, unitary group, transitive action, orthonormal basis
Step 1 — unitary with prescribed first column #
Build a unitary matrix from an orthonormal basis: the matrix whose columns are the coordinates of the basis vectors in the standard basis.
Equations
- Matrix.UnitaryGroup.unitaryOfONB b = ⟨(EuclideanSpace.basisFun (Fin N) ℂ).toBasis.toMatrix ⇑b.toBasis, ⋯⟩
Instances For
The matrix unitaryOfONB b, applied to the standard basis vector
e_j, recovers b j.
For any unit vector v, there exists a unitary matrix whose action
on the standard basis vector e_0 is v.
For any two unit vectors v, w, there exists a unitary matrix
U ∈ Matrix.unitaryGroup (Fin N) ℂ whose action on v is w.
A unitary matrix's toEuclideanLin action preserves non-zero.
For any two nonzero vectors v, w, there exists a unitary matrix
U and a nonzero complex scalar c with (toEuclideanLin U.val) v = c • w.
For unitary U and nonzero v, the projective action is given by
mk of the matrix action on v. Both sides reduce to the same
Quotient.mk'' term by definitional unfolding of MulAction.compHom,
mapEquiv, and Projectivization.map.
Transitivity of the matrix unitary group action on ℂℙ^(N-1).
For any two projective points, there is a unitary mapping one to the other.