Search Knowledge

© 2026 LIBREUNI PROJECT

Abstract Algebra / Overview

Group Theory Fundamentals

Group Theory Fundamentals

In mathematics, a group is a foundational structure used to study symmetry and the behavior of operations.

Formal Definition of a Group

As defined by standard algebra, a group consists of an ordered pair (G,)(G, \cdot). This pairs a set of elements, GG, with a binary operation, typically denoted as "\cdot", which combines any two elements to produce a third.

For this pairing to qualify as a group, it must strictly satisfy three axioms:

  1. Associativity: Grouping does not affect the outcome. For any elements a,b,a, b, and cc, the equation (ab)c=a(bc)(a \cdot b) \cdot c = a \cdot (b \cdot c) must hold true.
  2. Identity Element: The set must contain a unique element ee, such that combining it with any element aa leaves aa unchanged: ea=ae \cdot a = a and ae=aa \cdot e = a.
  3. Inverse Element: Every element aa must have a corresponding inverse element, often written as a1a^{-1}. Combining an element with its inverse always yields the identity element: aa1=ea \cdot a^{-1} = e and a1a=ea^{-1} \cdot a = e.

Additionally, the operation must be closed over the set, meaning the result of aba \cdot b is always an element within GG. If the operation is also commutative (ab=baa \cdot b = b \cdot a), the group is known as an Abelian group.

python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

Subgroups and Isomorphisms

A subset HH of a group GG that independently forms a group under the same operation is called a subgroup. To verify if HH is a subgroup, one can check if g1hg^{-1} \cdot h remains in HH for all elements g,hg, h in HH.

When analyzing the relationship between two groups, we use a mapping called a homomorphism. This function, φ:GH\varphi: G \to H, preserves the structural integrity of the operations such that φ(ab)=φ(a)φ(b)\varphi(a \cdot b) = \varphi(a) * \varphi(b). If this mapping is bijective (a perfect one-to-one correspondence), it is called an isomorphism, indicating the two groups are structurally identical.

Which of the following is NOT required for a set and operation to form a group?

Is the set of integers Z under multiplication a group?

References & Further Reading

Previous Module Advanced Group Theory
Finish Course