Abstract_Algebra // Struct_01

GROUP THEORY

The mathematics of symmetry. A set of elements and a single operation that combines them without ever breaking the structure.

01 // The Definition

To be a Group (G,)(G, \bullet), a mathematical structure must obey four sacred rules. If any single rule breaks, the structure collapses and it ceases to be a group.

Rule 1
Closure

If you combine any two elements, the result must still exist within the group. You cannot escape the universe.

abGa \bullet b \in G
Rule 2
Associativity

The order in which you evaluate operations doesn't matter. Brackets are completely optional.

(ab)c=a(bc)(a \bullet b) \bullet c = a \bullet (b \bullet c)
Rule 3
Identity

There exists a "do nothing" element (e)(e). Combining anything with it changes absolutely nothing.

ae=aa \bullet e = a
Rule 4
Inverse

For every single action, there is a counter-action that perfectly undoes it, returning you to the Identity.

aa1=ea \bullet a^{-1} = e

02 // The Structure Map

When a group is finite, we can perfectly map out every possible operation using a Cayley Table. It is the Sudoku puzzle of abstract algebra. Notice how every row and every column contains each element exactly once (a Latin Square).

Select Structure

Cyclic Group Z₄

Modular arithmetic. Think of a clock with 4 hours. 1 + 3 = 0 (midnight). The generator loops endlessly.

Hover over the Cayley Table to inspect binary operations.
0
1
2
3
0
1
2
3
Cayley_Table_Engine

03 // Real Symmetries

Dihedral Groups (Dn)(D_n)

Groups aren't just numbers. They describe physics. The Dihedral Group describes the exact symmetries of a regular polygon. For a triangle (D3)(D_3), you can Rotate it or you can Reflect it. The combination of these actions forms a perfect group structure.

The Generators

  • rr (Rotate): Shifts all vertices.
  • ss (Flip): Mirrors across an axis.
rssrr \bullet s \neq s \bullet r

WARNING: The order of operations changes the physical result. D3D_3 is a Non-Abelian group.

04 // The Deep Dive

Axioms Verified

The fundamental symmetry engine is online.

Next Pillar: Maps