mathlib documentation

representation_theory.invariants

Subspace of invariants a group representation #

This file introduces the subspace of invariants of a group representation and proves basic results about it. The main tool used is the average of all elements of the group, seen as an element of monoid_algebra k G. The action of this special element gives a projection onto the subspace of invariants. In order for the definition of the average element to make sense, we need to assume for most of the results that the order of G is invertible in k (e. g. k has characteristic 0).

noncomputable def group_algebra.average (k : Type u_1) (G : Type u_2) [comm_semiring k] [group G] [fintype G] [invertible (fintype.card G)] :

The average of all elements of the group G, considered as an element of monoid_algebra k G.

Equations
@[simp]

average k G is invariant under left multiplication by elements of G.

@[simp]

average k G is invariant under right multiplication by elements of G.

def representation.invariants {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) :

The subspace of invariants, consisting of the vectors fixed by all elements of G.

Equations
@[simp]
theorem representation.mem_invariants {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) (v : V) :
v ρ.invariants ∀ (g : G), (ρ g) v = v
theorem representation.invariants_eq_inter {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) :
@[simp]
noncomputable def representation.average_map {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) [fintype G] [invertible (fintype.card G)] :

The action of average k G gives a projection map onto the subspace of invariants.

Equations
theorem representation.average_map_invariant {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) [fintype G] [invertible (fintype.card G)] (v : V) :

The average_map sends elements of V to the subspace of invariants.

theorem representation.average_map_id {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) [fintype G] [invertible (fintype.card G)] (v : V) (hv : v ρ.invariants) :
(ρ.average_map) v = v

The average_map acts as the identity on the subspace of invariants.

theorem representation.is_proj_average_map {k : Type u_1} {G : Type u_2} {V : Type u_3} [comm_semiring k] [group G] [add_comm_monoid V] [module k V] (ρ : representation k G V) [fintype G] [invertible (fintype.card G)] :
theorem representation.lin_hom.mem_invariants_iff_comm {k : Type u} [comm_ring k] {G : Group} {X Y : Rep k G} (f : (X.V) →ₗ[k] (Y.V)) (g : G) :
((X.ρ.lin_hom Y.ρ) g) f = f f.comp ((X.ρ) g) = ((Y.ρ) g).comp f

The invariants of the representation lin_hom X.ρ Y.ρ correspond to the the representation homomorphisms from X to Y

Equations