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 that possesses two binary operations: addition () and multiplication (). 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 () and multiplication ().
- 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 , and division by any non-zero element is always possible.
Characteristic of a Field
The characteristic of a field identifies the smallest positive integer required such that adding the multiplicative identity () to itself times results in ().
If such an integer exists, it is mathematically proven that it must be a prime number , and the field is said to have characteristic . Conversely, if repeated addition of never reaches , the field is defined as having a characteristic of (for example, the field of rational numbers ).
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.
Field Extensions
A field extension, commonly written as , occurs when a smaller field acts as a subfield within a larger field . Because is closed under its operations, the larger field can be analyzed as a vector space built over the scalars provided by . 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 relative to the base field , they fall into two categories:
- Algebraic: An element is algebraic if it serves as the root of a non-zero polynomial constructed entirely using coefficients from the base field .
- Transcendental: If an element is not algebraic—meaning no such polynomial can possibly exist to evaluate to zero with as its root—it is called a transcendental element.
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.
What is the characteristic of the field of real numbers R?
Which of the following is a transcendental number over Q?
References & Further Reading
- Wikipedia: Field (mathematics) (CC-BY-SA 3.0)