A group is one of the simplest structures in abstract algebra, and one of the most useful. It asks a minimal question: what is the essential shape of “doing something and undoing it”?
Group theory is the language of symmetry. It underlies how chemists classify molecules, how physicists describe particle interactions, how cryptographers design secure protocols, and how mathematicians study geometry. Understanding groups means understanding structure itself.
The definition
A group is a set together with a binary operation (read: “combined with”) that satisfies four axioms:
Closure. For any , the result is also in . The operation stays inside the set.
Associativity. For any : . Grouping does not matter.
Identity. There exists an element such that for all . There is a “do-nothing” element.
Inverses. For every , there exists an element such that . Every action can be undone.
That is the entire definition. Four axioms. The surprising fact is how much follows from them.
Building intuition
Before the symbols settle, consider a concrete example: the integers under addition .
- Closure: adding two integers gives an integer. ✓
- Associativity: . ✓
- Identity: for all . The identity is . ✓
- Inverses: for any integer , the inverse is , since . ✓
So is a group. This is not surprising. But consider what does not work: the natural numbers under addition fail the inverse axiom. There is no natural number such that .
A finite example:
The integers modulo 4, written or , are the set with addition modulo 4. The Cayley table:
| 0 | 1 | 2 | 3 | |
|---|---|---|---|---|
| 0 | 0 | 1 | 2 | 3 |
| 1 | 1 | 2 | 3 | 0 |
| 2 | 2 | 3 | 0 | 1 |
| 3 | 3 | 0 | 1 | 2 |
Every row and column is a permutation of — a hallmark of groups.
Worked example: verifying a group
Claim: The set under multiplication forms a group.
- Closure: , , . All results are in . ✓
- Associativity: multiplication of real numbers is associative. ✓
- Identity: for all . The identity is . ✓
- Inverses: and . Each element is its own inverse. ✓
This is a group of order 2 — the smallest non-trivial group. It describes the symmetry of an object with exactly one non-trivial symmetry (a reflection with no rotation).
A group is not just a set of numbers. It is always a set together with an operation. The integers under multiplication are not a group (there is no multiplicative inverse for in ). The same set can be a group under one operation and not another.
What groups are not
Some near-misses worth knowing:
- Monoid: satisfies closure, associativity, identity — but not necessarily inverses. Example: .
- Semigroup: only closure and associativity. Example: positive integers under addition.
- Abelian group: a group where additionally for all . The integers under addition are abelian; the symmetries of a cube are not.