Search Knowledge

© 2026 LIBREUNI PROJECT

Abstract Algebra / Overview

Field Theory and Extensions

Field Theory and Extensions

A field is one of the most structurally complete objects in algebra, guaranteeing that all basic arithmetic operations can be performed reliably.

The Definition of a Field

A field is a set FF that possesses two binary operations: addition (++) and multiplication (\cdot). For a set to be considered a field, these operations must satisfy a rigorous set of axioms:

  • Both addition and multiplication must be associative and commutative.
  • The set must contain distinct identities for addition (00) and multiplication (11).
  • Multiplication must distribute over addition.
  • Every element must have an additive inverse. Crucially, every non-zero element must also have a multiplicative inverse (which allows for division).

In simpler terms, a field is a commutative ring where 010 \neq 1, and division by any non-zero element is always possible.

Characteristic of a Field

The characteristic of a field identifies the smallest positive integer nn required such that adding the multiplicative identity (11) to itself nn times results in 00 (n1=0n \cdot 1 = 0).

If such an integer exists, it is mathematically proven that it must be a prime number pp, and the field is said to have characteristic pp. Conversely, if repeated addition of 11 never reaches 00, the field is defined as having a characteristic of 00 (for example, the field of rational numbers Q\mathbb{Q}).

python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

Field Extensions

A field extension, commonly written as F/EF/E, occurs when a smaller field EE acts as a subfield within a larger field FF. Because EE is closed under its operations, the larger field FF can be analyzed as a vector space built over the scalars provided by EE. The dimension of this vector space is referred to as the degree of the extension.

Algebraic and Transcendental Elements

When examining elements in an extension field FF relative to the base field EE, they fall into two categories:

  • Algebraic: An element xx is algebraic if it serves as the root of a non-zero polynomial constructed entirely using coefficients from the base field EE.
  • Transcendental: If an element is not algebraic—meaning no such polynomial can possibly exist to evaluate to zero with xx as its root—it is called a transcendental element.
python

Interactive Lab

Read the code, make a small change, then run it and inspect the output. Runtime setup messages stay outside the terminal so the result remains focused on what the program prints.

Step 1
Inspect the idea
Step 2
Edit the program
Step 3
Run and compare

What is the characteristic of the field of real numbers R?

Which of the following is a transcendental number over Q?

References & Further Reading

Next Module Galois Theory