Search Knowledge

© 2026 LIBREUNI PROJECT

Linear Algebra / Linear Algebra

Representation Theory

Representation Theory

Group theory studies symmetry in the abstract. Linear algebra studies matrices acting on vectors. Representation Theory is the bridge between them: it studies how abstract groups can be represented as matrices. This allows us to use the powerful tools of linear algebra (trace, determinant, eigenvalues) to solve problems in abstract algebra and physics.

The Basic Idea

A collection of symmetries (a Group GG) can often be represented by a set of linear transformations on a vector space VV. A representation is a homomorphism ρ:GGL(V)\rho: G \to GL(V). This means that for every group element gg, there is an invertible matrix ρ(g)\rho(g) such that the group composition is preserved: ρ(g1g2)=ρ(g1)ρ(g2)\rho(g_1 g_2) = \rho(g_1) \rho(g_2)

Irreducible Representations (Irreps)

Just as an integer can be broken down into prime factors, a representation can often be broken down into smaller, simpler representations. If a representation cannot be broken down further, it is called irreducible.

The Maschke Theorem states that for finite groups (over fields like C\mathbb{C}), every representation is a direct sum of irreducible ones. This is effectively the “fundamental theorem of arithmetic” for representations.

Characters: Data Compression for Symmetries

Working with full matrices for every group element is computationally expensive. Character Theory simplifies this by focusing only on the trace of the matrices. The character of a representation ρ\rho is the function χ:GC\chi: G \to \mathbb{C} defined by: χ(g)=tr(ρ(g))\chi(g) = \text{tr}(\rho(g))

Characters are “class functions”—they are the same for elements in the same conjugacy class. This remarkably compact representation contains almost all the information about the representation.

python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

Symmetry in Physics and Chemistry

In quantum mechanics, particles are described by wavefunctions. If a physical system has a certain symmetry (like rotating a crystal), the wavefunction must transform according to a representation of that symmetry group.

  • Molecular Vibrations: Predicting which vibrations are “infrared active” in a molecule is done by decomposing the representation of the molecule’s symmetry group.
  • Particle Physics: The “Standard Model” is built on the representations of the groups SU(3)×SU(2)×U(1)SU(3) \times SU(2) \times U(1). Particles are literally just vectors in the spaces where these groups act!

Exercises

What is a 'representation' of a group?

Why are characters so useful in representation theory?

What does the dimension of a representation correspond to in its character?

Finish Course