Abstract AlgebraFoundations

What is a Group?

A group is a set paired with an operation that satisfies four simple rules. Those four rules are powerful enough to describe symmetry, arithmetic, and much of modern mathematics.

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”?


Why this matters

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 GG together with a binary operation \cdot (read: “combined with”) that satisfies four axioms:

  1. Closure. For any a,bGa, b \in G, the result aba \cdot b is also in GG. The operation stays inside the set.

  2. Associativity. For any a,b,cGa, b, c \in G: (ab)c=a(bc)(a \cdot b) \cdot c = a \cdot (b \cdot c). Grouping does not matter.

  3. Identity. There exists an element eGe \in G such that ea=ae=ae \cdot a = a \cdot e = a for all aGa \in G. There is a “do-nothing” element.

  4. Inverses. For every aGa \in G, there exists an element a1Ga^{-1} \in G such that aa1=a1a=ea \cdot a^{-1} = a^{-1} \cdot a = e. 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 (Z,+)(\mathbb{Z}, +).

  • Closure: adding two integers gives an integer. ✓
  • Associativity: (1+2)+3=1+(2+3)=6(1 + 2) + 3 = 1 + (2 + 3) = 6. ✓
  • Identity: 0+n=n+0=n0 + n = n + 0 = n for all nn. The identity is 00. ✓
  • Inverses: for any integer nn, the inverse is n-n, since n+(n)=0n + (-n) = 0. ✓

So (Z,+)(\mathbb{Z}, +) is a group. This is not surprising. But consider what does not work: the natural numbers N={0,1,2,}\mathbb{N} = \{0, 1, 2, \ldots\} under addition fail the inverse axiom. There is no natural number mm such that 3+m=03 + m = 0.

A finite example: Z/4Z\mathbb{Z}/4\mathbb{Z}

The integers modulo 4, written Z/4Z\mathbb{Z}/4\mathbb{Z} or Z4\mathbb{Z}_4, are the set {0,1,2,3}\{0, 1, 2, 3\} with addition modulo 4. The Cayley table:

++0123
00123
11230
22301
33012

Every row and column is a permutation of {0,1,2,3}\{0,1,2,3\} — a hallmark of groups.

Worked example: verifying a group

Claim: The set {1,1}\{1, -1\} under multiplication forms a group.

  • Closure: 11=11 \cdot 1 = 1, 1(1)=11 \cdot (-1) = -1, (1)(1)=1(-1)(-1) = 1. All results are in {1,1}\{1, -1\}. ✓
  • Associativity: multiplication of real numbers is associative. ✓
  • Identity: 1a=a1 \cdot a = a for all aa. The identity is 11. ✓
  • Inverses: 11=11^{-1} = 1 and (1)1=1(-1)^{-1} = -1. 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).

Common misconception

A group is not just a set of numbers. It is always a set together with an operation. The integers Z\mathbb{Z} under multiplication are not a group (there is no multiplicative inverse for 22 in Z\mathbb{Z}). 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: (N,+)(\mathbb{N}, +).
  • Semigroup: only closure and associativity. Example: positive integers under addition.
  • Abelian group: a group where additionally ab=baa \cdot b = b \cdot a for all a,ba, b. The integers under addition are abelian; the symmetries of a cube are not.

Self-check
Which of the following is a group?
In a group (G, ·), which axiom guarantees that every element can be 'undone'?
True or false: every group is commutative (i.e., a·b = b·a for all a, b).

Stay in the loop

New concept pages ship regularly. Get a quiet note when something worth reading goes live.

No spam. Unsubscribe any time.