Documentation

TauCeti.RepresentationTheory.Compact.FrobeniusSchur.StructureMap

The Frobenius-Schur indicator as a structure map, for a compact group #

TauCeti/RepresentationTheory/Compact/FrobeniusSchur/InvariantForm.lean reads the three values of the Frobenius-Schur indicator of an irreducible unitary representation of a compact group off invariant bilinear forms, and stops there: an invariant symmetric form is strictly weaker than a real form, an invariant alternating one than a quaternionic structure, and none of its statements mentions a structure map. This file supplies the missing step, in the operational shape the reality applications ask for:

ν₂(π) = 1 iff π carries a real structure -- a conjugate-linear involution K of V commuting with the action, Representation.IsRealStructure -- equivalently iff π is realizable over , that is, is the complexification of a real representation; and ν₂(π) = -1 iff π carries a quaternionic structure, a conjugate-linear J with J (J v) = -v commuting with the action, Representation.IsQuaternionicStructure.

Nothing new has to be integrated over the group. The unitarity hypothesis the whole Frobenius-Schur layer already carries is a positive definite invariant Hermitian form, namely the inner product of V itself, and against a fixed such form a structure map exists exactly when a nondegenerate invariant bilinear form of the matching kind does (Representation.exists_isRealStructure_iff and Representation.exists_isQuaternionicStructure_iff, in TauCeti/RepresentationTheory/InvariantForm/StructureMap.lean). So the compact-group criterion is the finite-group one of TauCeti/RepresentationTheory/CharacterTable/FrobeniusSchur/Realizability.lean with the summed invariant Hermitian form replaced by the inner product a unitary representation comes with; the Haar integral enters only through the invariant-form criteria this file rewrites.

Main statements #

Implementation notes #

A structure map is an unbundled conjugate-linear J : V →ₗ⋆[ℂ] V with J (J v) = v, respectively J (J v) = -v, commuting with the action. The 1 criterion spells those two conditions out, the shape in which the reality applications consume it; the -1 one names them, as Representation.IsQuaternionicStructure of TauCeti/RepresentationTheory/QuaternionicStructure.lean. The two readings are interchangeable: the conditions are exactly the fields of that predicate, and of Representation.IsRealStructure -- which TauCeti/RepresentationTheory/RealForm.lean defines and equips with the passage to a real form -- so a witness of either statement is a witness of the other by ⟨_, _⟩.

References #

The inner product as an invariant Hermitian form #

The criterion #

theorem ContRepresentation.frobeniusSchurIndicator_eq_one_iff_exists_structureMap {G : Type u_1} {V : Type u_2} [Group G] [TopologicalSpace G] [IsTopologicalGroup G] [CompactSpace G] [MeasurableSpace G] [BorelSpace G] [NormedAddCommGroup V] [InnerProductSpace V] [FiniteDimensional V] (π : ContRepresentation G V) ( : Continuous π) (hunitary : TauCeti.ContRepresentation.IsUnitary π) (hirr : (toRepresentation G V π).IsIrreducible) :
π.frobeniusSchurIndicator = 1 ∃ (K : V →ₗ⋆[] V), (∀ (v : V), K (K v) = v) ∀ (g : G) (v : V), K ((π g) v) = (π g) (K v)

The indicator is 1 exactly when there is a structure map: an irreducible unitary representation of a compact group has Frobenius-Schur indicator 1 exactly when it carries a conjugate-linear K of V with K (K v) = v commuting with the action.

The two conditions are spelled out rather than named because they are the two fields of Representation.IsRealStructure, so ⟨_, _⟩ passes between this statement and that predicate.

The invariant-form criterion supplies a nondegenerate invariant symmetric form, and the inner product of the unitary representation supplies the positive definite invariant Hermitian form against which the existence of one is equivalent to the existence of the other.

The indicator is 1 exactly when the representation is realizable over : the Frobenius-Schur criterion for a compact group in its realizability form, the compact mirror of Representation.frobeniusSchurIndicator_eq_one_iff_isRealizableOverReal for a finite group. The real form is the fixed space of the structure map.

The indicator is -1 exactly when there is a quaternionic structure: an irreducible unitary representation of a compact group has Frobenius-Schur indicator -1 exactly when it carries a conjugate-linear J with J (J v) = -v commuting with the action.

The invariant-form criterion supplies a nondegenerate invariant alternating form, and the inner product of the unitary representation supplies the positive definite invariant Hermitian form against which the existence of one is equivalent to the existence of the other. A quaternionic structure is the standard quaternionic realizability datum -- J together with the complex scalars makes V a module over the quaternions -- but, unlike the real case, it supports no realizability-over- reading: it has no nonzero fixed vector, so it cuts out no real form, and this file draws no such conclusion.