Quotient Rings

Coset construction, polynomial quotients, and the CRT

Quotient Rings

Given a ring R and an ideal I, the quotient ring R/I collects elements into cosets: a + I = {a + i : i ∈ I}. Two elements are "the same" in R/I if their difference belongs to I. This is the ring-theoretic analogue of modular arithmetic, and it is the fundamental construction for building new rings from old ones.

In this lesson, you will build Z/nZ from scratch as a quotient, construct finite fields as polynomial quotient rings, and see the Chinese Remainder Theorem decompose quotient rings into products.

Z/nZ as a Quotient

The most familiar quotient ring: Z/(n) = Z/nZ. The integers collapse into n residue classes, each a coset of the ideal (n). The arithmetic of Z/nZ is just ordinary arithmetic with results reduced modulo n. Watch the number line fold into a circle.

Integers are colored by residue class mod 4. Click Collapse to fold the number line into a circle of 4 elements.

Key insight: The quotient Z/(n) identifies all integers that differ by a multiple of n. The resulting ring has exactly n elements, and its structure depends entirely on the prime factorization of n.

Polynomial Quotient Rings

The same construction works for polynomial rings. Take F₂[x] and quotient by an irreducible polynomial p(x). The resulting ring F₂[x]/(p(x)) is a finite field! Its elements are polynomials of degree less than deg(p), with arithmetic performed modulo p(x). This is how finite fields GF(2ⁿ) are constructed in practice.

Quotient ring F[x] / (x²+x+1) builds GF(4). The colored grid shows the multiplication table.

Key insight: Quotienting by an irreducible polynomial is exactly analogous to quotienting Z by a prime: both produce fields. The irreducible polynomial plays the role of a prime number.

The Chinese Remainder Theorem

When n = pq with gcd(p, q) = 1, the Chinese Remainder Theoremgives a ring isomorphism Z/nZ ≅ Z/pZ × Z/qZ. Every element of Z/nZ is uniquely determined by its remainders modulo p and q. This decomposition reveals the internal structure of composite moduli.

Z/15Z Z/3Z × Z/5ZZ/15ZZ/3Z x Z/5Z0(0, 0)1(1, 1)2(2, 2)3(0, 3)4(1, 4)5(2, 0)6(0, 1)7(1, 2)8(2, 3)9(0, 4)10(1, 0)11(2, 1)12(0, 2)13(1, 3)14(2, 4)Verification: 2 + 3 = 5 (mod 15) (2+0, 2+3) = (2, 0)Verification: 2 \u00D7 3 = 6 (mod 15) (2\u00D70, 2\u00D73) = (0, 1)

Since gcd(3, 5) = 1, CRT gives an isomorphism Z/15Z Z/3Z × Z/5Z. Hover over elements to highlight the bijection.

Key insight: The CRT is a ring isomorphism, preserving both addition and multiplication. It decomposes a complicated ring into simpler factors, much like prime factorization decomposes integers.

Key Takeaways

  • Quotient rings R/I identify elements that differ by an ideal element.
  • Z/nZ is the quotient of Z by the ideal (n); it is a field when n is prime.
  • F[x]/(p(x)) is a field when p(x) is irreducible -- this constructs finite fields.
  • The CRT decomposes Z/nZ into a product of smaller rings when n factors into coprimes.