Field

Basis
Last updated: Tags: Abstract Algebra, Field Theory

Prerequisites

A ring lets you add, subtract, and multiply freely, but not always divide. A field is a ring that closes this gap: every non-zero element can be inverted, so division is always available. The rationals Q\mathbb{Q}, reals R\mathbb{R}, and complex numbers C\mathbb{C} are the fields you likely know best, but they are far from the only ones.

The extra ingredient: multiplicative inverses

Recall that in a ring (R,+,)(R, +, \cdot), the multiplicative operation only forms a monoid — inverses are not required. In the integers Z\mathbb{Z}, the element 22 has no multiplicative inverse: there is no integer xx with 2x=12x = 1.

A field simply demands that every non-zero element has such an inverse. The zero element is excluded because 0x=00 \cdot x = 0 for any xx (as shown for rings), so no xx can satisfy 0x=10 \cdot x = 1.

Definition

Definition. A field is a commutative ring (F,+,)(F, +, \cdot) such that (F{0},,1)(F \setminus \{0\},\, \cdot,\, 1) is a group. In other words, every non-zero element aFa \in F has a multiplicative inverse a1Fa^{-1} \in F satisfying aa1=1a \cdot a^{-1} = 1.

Spelling out all axioms, a field satisfies:

OperationStructure required
(F,+,0)(F, +, 0)Abelian group
(F{0},,1)(F \setminus \{0\}, \cdot, 1)Abelian group
++ and \cdotBoth distributive laws hold

Commutativity of multiplication is built into the definition: a field is always a commutative ring.

Examples

Rational numbers Q\mathbb{Q}. For any pq0\frac{p}{q} \neq 0, the inverse is qp\frac{q}{p}. Addition and multiplication of fractions are both commutative. (Q,+,)(\mathbb{Q}, +, \cdot) is a field.

Real numbers R\mathbb{R}. Every non-zero real aa has inverse 1a\frac{1}{a}. (R,+,)(\mathbb{R}, +, \cdot) is a field.

Complex numbers C\mathbb{C}. For a+bi0a + bi \neq 0, the inverse is abia2+b2\frac{a - bi}{a^2 + b^2}. (C,+,)(\mathbb{C}, +, \cdot) is a field.

Integers modulo a prime Z/pZ\mathbb{Z}/p\mathbb{Z}. Fix a prime pp. The set {0,1,,p1}\{0, 1, \ldots, p-1\} with addition and multiplication performed modulo pp is a field. For example, in Z/5Z\mathbb{Z}/5\mathbb{Z}, the inverse of 22 is 33 because 23=61(mod5)2 \cdot 3 = 6 \equiv 1 \pmod{5}. This is a finite field, also written Fp\mathbb{F}_p.

Non-example — integers Z\mathbb{Z}. Z\mathbb{Z} is a ring but not a field: 22 has no integer inverse.

Non-example — polynomials R[x]\mathbb{R}[x]. The polynomial xx has no polynomial inverse: there is no polynomial ff with xf(x)=1x \cdot f(x) = 1.

Characteristic

Every field has a property called its characteristic, which captures how many times you must add the identity 11 to itself before reaching 00.

Formally, the characteristic of FF is the smallest positive integer nn such that

1+1++1n=0(1)\underbrace{1 + 1 + \cdots + 1}_{n} = 0 \tag{1}

If no such nn exists, the characteristic is defined to be 00.

The characteristic of a field is always either 00 or a prime number. This is not an accident: if n=abn = ab with 1a,b<n1 \leq a, b < n both satisfied (1), then (a1)(b1)=0(a \cdot 1)(b \cdot 1) = 0 in the field, which would mean a product of two non-zero elements equals zero — impossible in a field because non-zero elements have inverses and can never multiply to zero.

FieldCharacteristic
Q\mathbb{Q}00
R\mathbb{R}00
C\mathbb{C}00
Fp=Z/pZ\mathbb{F}_p = \mathbb{Z}/p\mathbb{Z}pp

Fields of characteristic 00 contain a copy of Q\mathbb{Q}; fields of characteristic pp contain a copy of Fp\mathbb{F}_p.

Division as an operation

In a field, you can define division for any non-zero denominator:

abab1(b0)(2)\frac{a}{b} \coloneqq a \cdot b^{-1} \qquad (b \neq 0) \tag{2}

This makes fields the natural setting for solving linear equations: the equation ax=bax = b with a0a \neq 0 has the unique solution x=a1bx = a^{-1} \cdot b. The existence and uniqueness of this solution both depend on the multiplicative inverse.

This is why linear algebra is typically built over a field: the ability to divide is what makes Gaussian elimination, determinants, and the rank-nullity theorem work cleanly.

Summary

  • A field is a commutative ring where every non-zero element has a multiplicative inverse, making division always possible (except by zero).
  • The field axioms require two abelian groups — (F,+,0)(F, +, 0) and (F{0},,1)(F \setminus \{0\}, \cdot, 1) — connected by distributivity.
  • Key examples of infinite fields: Q\mathbb{Q}, R\mathbb{R}, C\mathbb{C}.
  • Key examples of finite fields: Fp=Z/pZ\mathbb{F}_p = \mathbb{Z}/p\mathbb{Z} for any prime pp.
  • The characteristic of a field is the smallest nn with 1++1n=0\underbrace{1 + \cdots + 1}_{n} = 0; it is always 00 or a prime.
  • Fields are the right setting for linear algebra: division is what makes linear equations always solvable when the coefficient is non-zero.