Actions, Orbits, and Cayley's Theorem
A group action turns abstract elements into permutations of a set. The action splits the set into orbits, and the orbit-stabilizer theorem ties each orbit's size to the index of a stabilizer.
╌╌╌╌
A group is defined by axioms, but much of its structure is visible only in how it acts. The same abstract group can permute the vertices of a polygon, rearrange the roots of a polynomial, or shuffle its own elements by multiplication. Each is a group action, and orbits, stabilizers, and the counting relation between them extract structure from a group.1
Actions and permutation representations
A group homomorphism maps one group into another. An action instead sends a group into the symmetries of a bare set.
Fix and let be the map . The two axioms make a bijection: is its two-sided inverse, since . So every element acts as a permutation of , and the assignment is a homomorphism into the symmetric group on , because restates the first axiom. This homomorphism is the permutation representation afforded by the action.
The correspondence runs both ways.2
An action is thus a homomorphism into a symmetric group, written in operator notation. Three subsets record what the action leaves fixed.
- Kernel: , the elements acting trivially on everything. It is a normal subgroup, being the kernel of .
- Stabilizer of a point : , the elements fixing that one point. Each is a subgroup of , and .
- Faithful action: one whose kernel is trivial, so distinct elements induce distinct permutations and is injective. A faithful action embeds as a subgroup of .
When the action is not faithful, acts faithfully on ; the kernel is the only obstruction to embedding in .
For example, let act on the four vertices of a square labelled clockwise. The clockwise rotation by induces , and the reflection through vertices and induces . This action is faithful (only the identity symmetry fixes all four vertices), and the stabilizer of vertex is , the order- subgroup generated by the reflection through it.
Orbits and the equivalence they define
Points reachable from one another by the group form one class.
Reflexivity is ; symmetry follows by acting with ; and transitivity chains two group elements into their product. The orbit of is . The action is transitive when there is a single orbit, i.e. any point can be moved to any other.
The size of an orbit is the index of a stabilizer.
The map is well defined and injective because holds exactly when fixes , i.e. when ; it is surjective by the definition of the orbit.3 The finite form is Lagrange's theorem rewritten: a large orbit forces a small stabilizer and vice versa.
Cycle decomposition is an orbit decomposition
The abstract statement recovers a concrete fact from permutation groups. Let and set acting on . The orbits partition , and on an orbit of size the generator sends
so acts as a single -cycle there. The orbits of are the cycles of . This proves that every permutation has a cycle decomposition, unique up to reordering the cycles and rotating within each. For instance, acting on has orbits and .
Computing an orbit
Orbit-stabilizer is also an algorithm. To list an orbit, grow it from the seed point by applying generators until nothing new appears — a breadth-first search on the set .
- 1initialize and a queue
- 2while is nonempty do
- 3dequeue from
- 4for each generator do
- 5
- 6if then
- 7add to and enqueue
- 8return
Since every element of is a word in the generators , the search reaches every point , and on termination. The same traversal, recording which generator first reached each point, produces coset representatives for the stabilizer.
The action on vertices, and transitivity
For a running geometric example, take acting on the four vertices of a square. The action is transitive: any vertex reaches any other under some symmetry, so there is a single orbit of size . Orbit-stabilizer then reads , forcing — the stabilizer of a vertex is the order- reflection through it.
Transitivity is not inherited by subgroups: the subgroup acts on with two orbits, and , since no element sends to . Transitivity is a property of the whole group's reach.
Cayley's theorem: every group is a permutation group
The most consequential action is a group acting on itself. Let act on the set by left multiplication, . The axioms hold because and . This action is transitive (given , the element sends to ) and faithful (if for all then ), and the stabilizer of every point is trivial.
The permutation representation afforded by left multiplication is the left regular representation . Because the action is faithful, this homomorphism is injective.4
The proof is immediate: left multiplication gives an injective homomorphism , and is isomorphic to its image, a subgroup of . The
historical import is that the modern axiomatic group and the nineteenth-century
notion of a group of substitutions
coincide.
Cayley's theorem is more a statement of principle than a computational tool: studying a group of order inside is rarely efficient, but it certifies that permutations lose no generality.
Actions on cosets and a normality test
Left multiplication generalizes from itself to the coset space of any subgroup. Let and let act on the set of left cosets of by .5
Transitivity holds because carries to . The stabilizer of is . For the kernel, fixes every coset exactly when for all , i.e. ; any normal subgroup inside lands in this intersection, so it is the largest one. Taking recovers Cayley's theorem.
A subgroup of small enough index is forced to be normal.
Let . Then embeds in , so divides . Writing gives , and forces . Every prime divisor of is less than , while every prime divisor of (a divisor of ) is at least ; the only escape is , so .6 The classical index- result is the case .
| Action of | Set acted on | Transitive? | Stabilizer of a point | Kernel |
|---|---|---|---|---|
| Left multiplication | yes | (faithful) | ||
| Left mult. on cosets | cosets of | yes | ||
| Natural action of | yes | |||
| Conjugation | no |
The last row is the conjugation action: replaces multiplication, the orbits become conjugacy classes, and orbit-stabilizer applied to it produces the class equation.
Footnotes
- Dummit & Foote, §4.1 — Group Actions and Permutation Representations: the axioms of an action, the associated homomorphism into , and the kernel/stabilizer/faithful terminology. ↩
- Dummit & Foote, §4.1, Proposition 1: the bijection between actions of on and homomorphisms . ↩
- Dummit & Foote, §4.1, Proposition 2: the orbit relation is an equivalence relation and , together with the cycle-decomposition application. ↩ ↩2
- Dummit & Foote, §4.2, Corollary 4: Cayley's theorem via the left regular representation. ↩
- Dummit & Foote, §4.2, Theorem 3: the action on left cosets of , its transitivity, stabilizer, and kernel as the largest normal subgroup inside . ↩
- Dummit & Foote, §4.2, Corollary 5: a subgroup of index equal to the smallest prime divisor of is normal. ↩
╌╌ END ╌╌