Skip to content

Introduction to Abstract Algebra

  • A GROUP is a set with one operation with nice properties.
  • A RING is a set with two operations (addition and multiplication). A ring is a group under addition.
  • A FIELD is a group under both addition and multiplication.

A group is a set G\mathcal{G} with an operation \bullet satisfying:

1. Closure (G\mathcal{G} is closed under \bullet)

a,bG  abG\forall a, b \in \mathcal{G} \; a \bullet b \in \mathcal{G}

2. Identity

eG  s.t.  aG  ea=ae=a\exists e \in \mathcal{G} \; \mathrm{s.t.} \; \forall a \in \mathcal{G} \; e \bullet a = a \bullet e = a

3. Inverse (ee is the identity)

aG  bG  s.t.  ab=ba=e\forall a \in \mathcal{G} \; \exists b \in \mathcal{G} \; \mathrm{s.t.} \; a \bullet b = b \bullet a = e

4. Associativity

a,b,cG  a(bc)=(ab)c\forall a, b, c \in \mathcal{G} \; a \bullet (b \bullet c) = (a \bullet b) \bullet c

Abelian Group: A group where a,bG  ab=ba\forall a, b \in G \; a \bullet b = b \bullet a

  • Z/nZ\mathbb{Z}/n\mathbb{Z} — integers mod n under modulo addition
  • (Z/nZ)×(\mathbb{Z}/n\mathbb{Z})^{\times} — integers mod n relatively prime to n under multiplication
  • Z\mathbb{Z} — integers under addition (groups don’t have to be finite)

A ring is a set R\mathcal{R} satisfying:

1. Closure under ++ and ×\times

a,bR  a+bR  and  a×bR\forall a, b \in \mathcal{R} \; a + b \in \mathcal{R} \;\textrm{and}\; a \times b \in \mathcal{R}

2. Abelian group under ++

3. Associativity of ×\times

a,b,cR  a×(b×c)=(a×b)×c\forall a, b, c \in \mathcal{R} \; a \times (b \times c) = (a \times b) \times c

4. Distributive properties

a,b,cR  a×(b+c)=(a×b)+(a×c)\forall a, b, c \in \mathcal{R} \; a \times (b + c) = (a \times b) + (a \times c) a,b,cR  (b+c)×a=(b×a)+(c×a)\forall a, b, c \in \mathcal{R} \; (b + c) \times a = (b \times a) + (c \times a)
  • Z/nZ\mathbb{Z}/n\mathbb{Z} under modulo addition and multiplication
  • Z\mathbb{Z} — integers under addition and multiplication
  • Z[x]\mathbb{Z}[x] — polynomials with integer coefficients

A field is a set F\mathcal{F} satisfying:

1. Closure under ++ and ×\times

2. Abelian group under ++

3. F{e}\mathcal{F} - \{e\} is an abelian group under ×\times (where ee is the additive identity)

  • For prime pp, Z/pZ\mathbb{Z}/p\mathbb{Z} (also written Fp\mathbb{F}_{p}) under modulo operations
  • Q\mathbb{Q}, R\mathbb{R}, C\mathbb{C} — infinite fields under regular operations
  • Z\mathbb{Z} is NOT a field (no multiplicative inverses for non-unit integers)
  • Z/nZ\mathbb{Z}/n\mathbb{Z} for composite nn is not a field (elements not relatively prime to nn have no inverse)