Molecular Symmetry and Group Theory
Molecular symmetry organizes structure, bonding, and spectroscopy. Rather than treating every orbital overlap or vibrational motion separately, group theory tells us which combinations can interact, which integrals vanish, and which transitions are allowed.
Atkins introduces point groups, symmetry operations, character tables, and symmetry labels as practical tools. The core payoff is selection: symmetry decides whether an orbital overlap, matrix element, or vibrational transition can be nonzero.

Figure: Methane as a high-symmetry molecule with tetrahedral geometry. Image: Wikimedia Commons, Benjah-bmm27, public domain.
Definitions
A symmetry operation moves a molecule into an indistinguishable orientation. A symmetry element is the geometrical object associated with the operation.
Common symmetry operations include:
identity,
rotation by ,
reflection,
inversion, and
improper rotation.
A point group is the complete set of symmetry operations for a molecule, all leaving at least one point fixed.
A representation assigns a matrix to each symmetry operation. Its character is the trace of that matrix. An irreducible representation cannot be reduced into smaller independent representations and is labeled by symbols such as , , , , and .
The reduction formula for how many times irreducible representation appears in a reducible representation is
where is the group order, is the number of operations in class , and denotes a character.
An integral can be nonzero only if the direct product of all factors contains the totally symmetric representation.
Key results
For orbital overlap,
is nonzero only if
contains the totally symmetric representation. This is why orbitals of incompatible symmetry do not form bonding and antibonding pairs.
For electric dipole transitions, the transition moment integral is
The transition is allowed only if
contains the totally symmetric representation.
For vibrational spectroscopy, an infrared-active normal mode must transform like one of the Cartesian coordinates , , or , because the vibration must change the dipole moment. A Raman-active normal mode must transform like a quadratic function such as , , or , because the vibration must change polarizability.
For nonlinear molecules with atoms, the number of vibrational normal modes is
For linear molecules, it is
Symmetry also simplifies secular determinants in MO theory by forming symmetry-adapted linear combinations (SALCs). Instead of mixing all atomic orbitals, one mixes only orbitals with the same symmetry label.
Point-group assignment is a skill built from a decision process. One first looks for very high symmetry such as linear molecules or tetrahedral, octahedral, and icosahedral groups. If not present, the highest-order rotation axis is identified. Perpendicular axes, horizontal and vertical mirror planes, inversion centers, and improper axes then distinguish groups such as , , , , and . Small mistakes in point group assignment propagate into wrong selection rules, so careful geometry inspection matters.
Character tables are compact summaries of how functions transform under symmetry operations. Rows are irreducible representations; columns are classes of operations. The characters for tell which translations or dipole components transform in a given way. The quadratic functions tell Raman activity. Rotations are useful for subtracting rotational degrees of freedom when analyzing vibrations.
Reducible representations arise naturally. For vibrations, one can assign displacement vectors to atoms and count how many remain unmoved by each symmetry operation, including how their vector components transform. The resulting characters form a reducible representation for all Cartesian displacements. Subtract translations and rotations, then reduce the remainder to get the symmetry species of normal modes. This procedure turns geometry into spectroscopic predictions.
The direct product rule for integrals is one of the most useful group-theory results in chemistry. An integral over all space can be nonzero only if the integrand is totally symmetric. For overlap, the integrand is a product of two orbitals. For a transition moment, it is initial state, dipole operator, and final state. For vibronic coupling, it may include electronic and vibrational symmetries. The result is a selection rule without evaluating the integral explicitly.
Symmetry labels also clarify degeneracy. In many point groups, irreducible representations are doubly degenerate and representations are triply degenerate. Degenerate orbitals or vibrations must transform together as a set. Lowering symmetry can split degeneracies, which is why distortions, ligand fields, and crystal environments change spectra.
The mutual exclusion rule for centrosymmetric molecules is a direct symmetry result. If a molecule has an inversion center, vibrations that are ungerade can be IR active because are ungerade, while gerade vibrations can be Raman active because quadratic functions are gerade. A normal mode cannot be both gerade and ungerade, so IR and Raman activity are mutually exclusive. Molecules without inversion symmetry need not obey this rule.
SALCs provide a systematic way to build molecular orbitals in polyatomic molecules. Ligand orbitals are combined into symmetry-adapted groups, and only SALCs with the same symmetry as a central atom orbital can mix. This reduces the size of secular problems and explains bonding patterns in molecules such as , , and transition-metal complexes.
Group theory does not replace chemical judgment. It can say an interaction is forbidden by symmetry or allowed by symmetry, but it does not by itself give the magnitude. Allowed overlap may still be small because orbitals are far apart or poorly energy matched. A symmetry-allowed transition may still be weak because the transition moment is numerically small. Symmetry is a filter, not a complete quantitative theory.
Visual
| Operation | Symbol | Example meaning |
|---|---|---|
| Identity | do nothing | |
| Proper rotation | rotate by | |
| Reflection | reflect through a plane | |
| Inversion | send to | |
| Improper rotation | rotate then reflect perpendicular to axis |
Worked example 1: Vibrational mode count for water
Problem. How many normal modes does have?
Method. Water is nonlinear and has atoms.
- Total Cartesian displacements:
- Remove translations:
- Remove rotations for a nonlinear molecule:
- Therefore:
Checked answer. Water has three vibrational modes: symmetric stretch, bend, and antisymmetric stretch.
Worked example 2: Direct product test in
Problem. In , suppose an initial state has symmetry , a final state has symmetry , and transforms as . Is the -polarized transition symmetry allowed?
Method. Test whether
contains .
- Substitute:
- In ,
- Then:
- Since the product is totally symmetric, the transition is symmetry allowed.
Checked answer. The transition is allowed for polarization by symmetry. Intensity can still be small for other physical reasons.
Code
# Direct products for C2v using sign characters under (E, C2, sigma_v(xz), sigma_v'(yz))
irreps = {
"A1": (1, 1, 1, 1),
"A2": (1, 1, -1, -1),
"B1": (1, -1, 1, -1),
"B2": (1, -1, -1, 1),
}
def direct_product(*labels):
chars = [1, 1, 1, 1]
for label in labels:
chars = [a * b for a, b in zip(chars, irreps[label])]
for name, rep in irreps.items():
if tuple(chars) == rep:
return name
raise ValueError("No match")
print(direct_product("B1", "B1", "A1"))
print(direct_product("A2", "B1"))
Common pitfalls
- Confusing symmetry operation with symmetry element.
- Assigning point groups before checking all operations.
- Forgetting to remove translations and rotations when counting vibrations.
- Assuming symmetry-allowed means intense. Symmetry is a necessary condition, not the only intensity factor.
- Multiplying characters from different point groups. Direct products must be within the same group.
A practical point-group workflow prevents most errors. Sketch the molecule in a clear orientation, identify the principal axis, check for perpendicular axes, then check mirror planes and inversion. If the molecule is slightly distorted in reality, decide whether the idealized or actual symmetry is appropriate for the problem. Spectroscopy of a distorted molecule may show bands that are forbidden in the higher ideal symmetry.
When reducing representations, keep classes and operations distinct. A character table column may represent a class containing several operations; the reduction formula includes the class size . Omitting that factor gives wrong counts. After reduction, the sum of dimensions must match the dimension of the original representation. This provides a quick arithmetic check.
For vibrational analysis, subtract translations and rotations only after forming the full displacement representation. Linear and nonlinear molecules differ in the number of rotations removed. Then use the character table to decide IR and Raman activity. This workflow is slower than guessing, but it is reliable and scales to molecules where visual assignment is not obvious.
If a direct product or reduction result seems surprising, test it against a simple physical picture. A totally symmetric vibration should preserve all symmetry operations, an antisymmetric stretch should change sign under some operations, and an orbital with a nodal plane should be antisymmetric to reflection through that plane. Character tables formalize these observations; they should not feel disconnected from molecular shape.