Search Knowledge

© 2026 LIBREUNI PROJECT

Mathematics / Abstract Algebra

Field Theory and Polynomials

Field Theory and Polynomials

Field theory is the study of fields and their extensions. It provides the necessary framework for understanding the roots of polynomials, geometric constructions, and the solvability of equations. In this lesson, we explore the structure of polynomial rings and the mechanics of extending a field to include roots of irreducible polynomials.

Polynomial Rings

Let be a field. The set of all polynomials with coefficients in , denoted , forms a Commutative Ring. Specifically, is a Euclidean Domain, meaning we can perform division with remainders.

The Division Algorithm

For any with , there exist unique such that: where either or .

Irreducibility

A polynomial of degree is irreducible if it cannot be written as the product of two non-constant polynomials.

  • Eisenstein’s Criterion: A tool for identifying irreducibility over . If for a prime , divides all coefficients except the leading , and does not divide , then the polynomial is irreducible.

Field Extensions

A field is an extension of a field (written ) if . We can view as a vector space over the “base field” .

  • The degree of the extension, , is the dimension of as a vector space over .

Simple Extensions

If , then is the smallest subfield of containing both and .

  • If is a root of an irreducible polynomial , then .
  • In this case, is algebraic over , and is its minimal polynomial.

Algebraic and Transcendental Elements

An element in an extension is:

  1. Algebraic if there exists a non-zero such that .
  2. Transcendental if no such polynomial exists (e.g., and over ).

Algebraic Extensions

An extension is algebraic if every element in is algebraic over .

  • Theorem: Every finite extension () is an algebraic extension. The converse is not true (e.g., the field of all algebraic numbers is algebraic over but has infinite degree).

Splitting Fields

A splitting field of a polynomial is the smallest extension of in which factors completely into linear factors: Splitting fields are unique up to isomorphism. They are essential for Galois Theory, as they allow us to study the symmetry of the roots.

Finite Fields (Galois Fields)

Finite fields have applications in cryptography and coding theory. A finite field must have elements for some prime and integer .

  • Denoted or .
  • The multiplicative group of a finite field is always cyclic.
  • Construction: To create , take and quotient by an irreducible quadratic like . The elements become .

Practical Example: Polynomial Division in Python

We can represent polynomials as lists of coefficients (lowest degree first).

def poly_div(f, g):
    """Simple polynomial division over Q represented as coefficient lists."""
    res = [0] * max(0, len(f) - len(g) + 1)
    rem = list(f)
    for i in range(len(res) - 1, -1, -1):
        res[i] = rem[i + len(g) - 1] / g[-1]
        for j in range(len(g)):
            rem[i + j] -= res[i] * g[j]
    
    # Clean up trailing zeros
    while rem and abs(rem[-1]) < 1e-9: rem.pop()
    return res, rem

# (x^2 - 1) / (x - 1)
f = [-1, 0, 1] 
g = [-1, 1]
q, r = poly_div(f, g)
print(f"Quotient: {q}, Remainder: {r}") # Expect [1, 1], []

Significance of Field Theory

Field theory solved several ancient geometric puzzles, such as the impossibility of “squaring the circle” or “trisecting the angle” using only compass and straightedge. These geometric operations correspond to constructing fields of degree ; since is transcendental and involves a degree 3 extension, they are algebraically impossible.

Exercise

Conceptual Check

What is the degree of the field extension Q(sqrt(2), sqrt(3)) over Q?