RemNote Community
Community

Complex number - Algebraic Structure and Number Theory

Understand the algebraic constructions of the complex numbers, their status as an algebraically closed field, and how Gaussian integers use norms and unique factorisation to characterize sums of two squares.
Summary
Read Summary
Flashcards
Save Flashcards
Quiz
Take Quiz

Quick Practice

How can the complex numbers be defined using a quotient ring of real polynomials?
1 of 11

Summary

Abstract Algebraic Constructions and Complex Numbers What are Complex Numbers, Algebraically? When we think of complex numbers, we often start with the familiar definition: numbers of the form $a + bi$ where $a, b \in \mathbb{R}$ and $i^2 = -1$. But mathematicians can also define the complex numbers more rigorously using abstract algebra. One powerful way to construct the complex numbers is through a quotient ring. Start with the polynomial ring $\mathbb{R}[x]$ (all polynomials with real coefficients), and consider the polynomial $x^2 + 1$. This polynomial is irreducible over the reals, meaning it cannot be factored into polynomials of lower degree with real coefficients. The complex numbers can then be defined as: $$\mathbb{C} = \mathbb{R}[x]/\langle x^{2}+1\rangle$$ This notation means we take all polynomials in $x$ with real coefficients, and we "quotient out" by the ideal generated by $x^2 + 1$. In practical terms, this means we force the relation $x^2 = -1$. When we identify the polynomial $x$ with $i$, we recover our familiar complex numbers. Why does this work? Because $x^2 + 1$ is irreducible, the quotient ring is actually a field—every nonzero element has a multiplicative inverse. This is an elegant way to show that complex numbers form a proper field structure. Representing Complex Numbers as Matrices There's another useful way to think about complex numbers: as special $2 \times 2$ real matrices. Each complex number $a + bi$ corresponds to the matrix: $$\begin{pmatrix} a & -b \\ b & a \end{pmatrix}$$ This representation has a beautiful property: matrix addition and multiplication perfectly replicate complex addition and multiplication. This means there is a ring isomorphism between complex numbers (under addition and multiplication) and these special $2 \times 2$ matrices. For instance, consider the matrix $J = \begin{pmatrix}0 & -1\\ 1 & 0\end{pmatrix}$, which corresponds to the imaginary unit $i$. Notice that: $$J^{2} = \begin{pmatrix}0 & -1\\ 1 & 0\end{pmatrix}\begin{pmatrix}0 & -1\\ 1 & 0\end{pmatrix} = \begin{pmatrix}-1 & 0\\ 0 & -1\end{pmatrix} = -I$$ This matrix equation $J^2 = -I$ is the algebraic essence of $i^2 = -1$! Why is this representation useful? It shows that complex numbers aren't mysterious or non-intuitive objects—they're fundamentally equivalent to a concrete system of matrices. This perspective is crucial in linear algebra and in applications where we need to compute with complex numbers on computers. The Fundamental Theorem of Algebra The Fundamental Theorem of Algebra is one of the most important results about complex numbers: Every non-constant polynomial with complex coefficients has at least one complex root. This seems like a simple statement, but it has profound consequences. If a polynomial of degree $n$ has at least one root, we can factor out that root and get a polynomial of degree $n-1$. Repeating this process shows that every degree-$n$ polynomial factors completely into $n$ linear factors (counting multiplicities) over the complex numbers. This tells us something remarkable: the complex numbers are algebraically closed. An algebraically closed field is one where every polynomial equation has a solution within that field. The reals are not algebraically closed (for instance, $x^2 + 1 = 0$ has no real solution), but the complex numbers are. This is why the complex numbers are so important in mathematics and applications—they provide a "complete" number system where polynomial equations always have solutions. <extrainfo> A Note on Proof: The Fundamental Theorem of Algebra has an interesting history. Despite being called a "theorem," its proof requires deep techniques from complex analysis or topology, not just pure algebra. Every proof uses some form of continuity or topological reasoning. </extrainfo> Gaussian Integers: Complex Numbers with Integer Coordinates Definition and Basic Properties The Gaussian integers are a specific subset of the complex numbers, defined as: $$\mathbb{Z}[i] = \{a + bi : a, b \in \mathbb{Z}\}$$ These are complex numbers $a + bi$ where both the real part $a$ and imaginary part $b$ are ordinary integers. Gaussian integers form a ring—they're closed under addition and multiplication, and contain $0$ and $1$. For example: $(2 + 3i) + (1 - 2i) = 3 + i$ (still a Gaussian integer) $(2 + 3i)(1 - 2i) = 2 - 4i + 3i - 6i^2 = 2 - i + 6 = 8 - i$ (still a Gaussian integer) The Norm of a Gaussian Integer A crucial tool for working with Gaussian integers is the norm. For a Gaussian integer $z = x + iy$ where $x, y \in \mathbb{Z}$, the norm is defined as: $$N(z) = x^{2} + y^{2}$$ Notice that the norm always produces a non-negative integer. Importantly, the norm equals $z\overline{z}$, where $\overline{z} = x - iy$ is the complex conjugate of $z$. Why is this useful? The norm has a special multiplicative property: $$N(z1 z2) = N(z1) \cdot N(z2)$$ This means the norm of a product equals the product of the norms. This property is incredibly useful for factorization problems. Unique Factorization in the Gaussian Integers Perhaps the most important property of Gaussian integers is that they form a unique factorization domain (UFD). This means: Every Gaussian integer (except units and zero) can be written as a product of irreducible Gaussian integers (roughly speaking, the "primes" of $\mathbb{Z}[i]$). This factorization is unique (up to order and units). Just as we factor ordinary integers into primes ($30 = 2 \times 3 \times 5$), we can factor Gaussian integers into Gaussian primes. For example: $$2 = (1+i)(1-i)$$ This property makes Gaussian integers an elegant number system for studying certain types of number-theoretic problems. Classification of Sums of Two Squares There's a beautiful connection between Gaussian integers and the ancient problem: Which integers can be written as a sum of two squares? An integer $n$ can be expressed as a sum of two squares if and only if in its prime factorization, every prime congruent to $3 \pmod{4}$ occurs to an even power. For example: $5 = 1^2 + 2^2$ ✓ (5 is prime and $5 \equiv 1 \pmod{4}$) $13 = 2^2 + 3^2$ ✓ (13 is prime and $13 \equiv 1 \pmod{4}$) $6 = 2 \times 3$ ✗ (3 is a prime with $3 \equiv 3 \pmod{4}$ appearing to an odd power) $18 = 2 \times 3^2$ ✓ (3 appears to an even power) Why does this work? Because the multiplicative property of the norm tells us: the product of two sums of two squares is itself a sum of two squares. Using properties of Gaussian integer factorization, this criterion follows naturally.
Flashcards
How can the complex numbers be defined using a quotient ring of real polynomials?
As the quotient ring $\mathbb{R}[x]/\langle x^{2}+1\rangle$.
Which $2\times2$ real matrix corresponds to the complex number $a+bi$?
$\begin{pmatrix} a & -b \\ b & a \end{pmatrix}$
What does the matrix $J = \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$ satisfy in the context of complex matrix representation?
$J^{2} = -I$ (where $I$ is the identity matrix).
What is the primary assertion of the Fundamental Theorem of Algebra regarding non-constant polynomials with complex coefficients?
They have at least one complex root.
What specific algebraic property do complex numbers possess as a consequence of the Fundamental Theorem of Algebra?
They form an algebraically closed field.
What does it mean for the complex field to be algebraically closed?
Every non-constant polynomial with complex coefficients has a complex root.
What type of algebraic domain do Gaussian integers form regarding factorization?
A Unique Factorization Domain (UFD).
What is the formula for the norm $N(z)$ of a Gaussian integer $z = x+iy$?
$N(z) = x^2 + y^2$ (or $z\overline{z}$).
What multiplicative property does the norm $N(z)$ of Gaussian integers satisfy?
$N(z{1}z{2}) = N(z{1})N(z{2})$
According to the classification of sums of two squares, what condition must primes congruent to $3 \pmod 4$ meet in an integer's prime factorization?
They must occur with an even exponent.
Why is the product of two sums of two squares always another sum of two squares?
Because the norm of Gaussian integers is multiplicative ($N(z{1}z{2}) = N(z{1})N(z{2})$).

Quiz

What does the Fundamental Theorem of Algebra guarantee for any non‑constant polynomial with complex coefficients?
1 of 8
Key Concepts
Complex Numbers and Algebra
Fundamental theorem of algebra
Algebraic closure
Gaussian integer
Unique factorisation domain
Complex number representation by matrices
Ring Theory
Quotient ring
Sum of two squares theorem