Mathematics.

field theory

Fields

Abstract Algebra II35 minDifficulty7 out of 10

You should know: rings

Overview

A field is a commutative ring in which every nonzero element has a multiplicative inverse, so addition, subtraction, multiplication, and division (by nonzero elements) all behave the way they do for rational, real, or complex numbers. Fields are the algebraic setting for linear algebra (vector spaces need a field of scalars) and for Galois theory (which studies field extensions).

Intuition

A field is the algebraic idealization of 'a number system where you can always divide' — like ℚ, ℝ, or ℂ, but also finite systems like the integers mod a prime p. Rings only guarantee you can add, subtract, and multiply; a field additionally guarantees every nonzero element has a reciprocal, so equations like ax = b (a ≠ 0) always have a unique solution.

Formal Definition

Definition

A field (F, +, ×) is a commutative ring with unity 1 ≠ 0 in which every nonzero element is a unit:

(F,+) is an abelian group(F, +) \text{ is an abelian group}
Additive structure
(F{0},×) is an abelian group(F \setminus \{0\}, \times) \text{ is an abelian group}
Multiplicative structure on nonzero elements
a×(b+c)=a×b+a×ca \times (b + c) = a \times b + a \times c
Distributivity
a0, a1F: a×a1=1\forall a \neq 0,\ \exists a^{-1} \in F:\ a \times a^{-1} = 1
Multiplicative inverses

Notation

NotationMeaning
F,KF, KCommon letters for fields
Fp\mathbb{F}_pThe finite field with p elements (p prime), i.e. ℤₚ
K/FK/FK is a field extension of F (F ⊆ K)
char(F)\operatorname{char}(F)Characteristic of F — either 0 or a prime p

Properties

Every field is an integral domain

Fields have no zero divisors, since nonzero elements are invertible.\text{Fields have no zero divisors, since nonzero elements are invertible.}

Finite fields exist only for prime power orders

F=pn for some prime p and n1, and such a field is unique up to isomorphism: Fpn.|F| = p^n \text{ for some prime } p \text{ and } n \geq 1, \text{ and such a field is unique up to isomorphism: } \mathbb{F}_{p^n}.

Characteristic is 0 or prime

char(F)=0 (as in Q,R,C) or a prime p (as in Fp).\operatorname{char}(F) = 0 \text{ (as in } \mathbb{Q}, \mathbb{R}, \mathbb{C}\text{) or a prime } p \text{ (as in } \mathbb{F}_p\text{).}

ℤₙ is a field iff n is prime

Zn is a field    n is prime, since only then does every nonzero residue have an inverse mod n.\mathbb{Z}_n \text{ is a field} \iff n \text{ is prime, since only then does every nonzero residue have an inverse mod } n.

Applications

Finite fields 𝔽₂ⁿ underlie AES encryption, Reed–Solomon codes, and cyclic redundancy checks, where all arithmetic happens within a fixed finite field.

Worked Examples

  1. Find x with 1·x ≡ 1: x = 1.

    11=11^{-1} = 1
  2. Find x with 2·x ≡ 1 (mod 5): 2×3=6≡1, so 2⁻¹=3.

    21=32^{-1} = 3
  3. Find x with 3·x ≡ 1 (mod 5): 3×2=6≡1, so 3⁻¹=2. Find x with 4·x ≡ 1 (mod 5): 4×4=16≡1, so 4⁻¹=4.

    31=2,41=43^{-1}=2,\quad 4^{-1}=4

Answer: Every nonzero element of ℤ₅ has an inverse, confirming ℤ₅ is a field (since 5 is prime).

Practice Problems

Difficulty 6/10

Why must the characteristic of a field be either 0 or a prime number?

Difficulty 5/10

In the field ℤ₇, find the multiplicative inverse of 3 (the element x with 3x ≡ 1 mod 7). Why is such an inverse guaranteed to exist?

Common Mistakes

Common Mistake

Confusing 'field' with 'ring' and assuming every ring allows division.

Only fields guarantee multiplicative inverses for all nonzero elements; general rings (like ℤ or matrix rings) do not.

Common Mistake

Thinking every finite field has prime order.

Finite fields exist for every prime power pⁿ (e.g. 𝔽₄, 𝔽₈, 𝔽₉), not just primes — 𝔽₄ is not the same as ℤ₄ (which isn't even a field).

Quiz

A field is a ring in which, additionally:
Finite fields like GF(2⁸) are the mathematical foundation of:

Summary

  • A field is a commutative ring where every nonzero element has a multiplicative inverse.
  • Fields are integral domains: no zero divisors exist among nonzero elements.
  • ℤₙ is a field exactly when n is prime; more generally finite fields exist for every prime power pⁿ.
  • The characteristic of a field is always 0 or a prime number, never a composite.
  • Fields provide the scalar structure for vector spaces and are the foundation of Galois theory.

References

  1. BookDummit, D. & Foote, R. Abstract Algebra, 3rd ed., Ch. 13.