Finite Field — Definition, Formula & Examples
A finite field is a field that contains a finite number of elements. Just like the real numbers, you can add, subtract, multiply, and divide (except by zero) within a finite field, but the set of elements is limited — for example, the integers {0, 1, 2, 3, 4} under arithmetic modulo 5.
A finite field (also called a Galois field) is a set with a finite number of elements, together with two binary operations (addition and multiplication), such that satisfies the field axioms: closure, associativity, commutativity, existence of additive and multiplicative identities, existence of additive inverses for all elements, existence of multiplicative inverses for all nonzero elements, and distributivity of multiplication over addition. A finite field exists if and only if its number of elements is , where is a prime and is a positive integer.
How It Works
The simplest finite fields are where is prime, with all arithmetic done modulo . To add or multiply, perform the usual operation and then take the remainder when dividing by . Division by a nonzero element means multiplying by the multiplicative inverse of , which always exists because is prime. For example, in , the inverse of 3 is 2 because . Finite fields with elements (where ) are constructed using polynomial arithmetic modulo an irreducible polynomial over .
Worked Example
Problem: In the finite field , compute , , and find the multiplicative inverse of 3.
Addition: Add 5 and 4, then reduce modulo 7.
Multiplication: Multiply 3 and 5, then reduce modulo 7.
Multiplicative inverse of 3: From the previous step, we see that , so the multiplicative inverse of 3 is 5.
Answer: In : , , and .
Why It Matters
Finite fields are foundational in coding theory and cryptography — the AES encryption standard and Reed-Solomon error-correcting codes both rely on arithmetic in finite fields. In abstract algebra courses, they serve as key examples that connect group theory, ring theory, and polynomial algebra.
Common Mistakes
Mistake: Assuming a finite field can have any number of elements, such as 6 or 10.
Correction: A finite field exists only when the number of elements is a prime power . There is no finite field with 6 elements because 6 is not a prime power.
