No history yet

Integral Domains

Getting Rid of Zero Divisors

Let's zoom in on a special type of commutative ring. In the world of integers, you know that if you multiply two non-zero numbers, you'll never get zero. For example, 5×(3)=155 \times (-3) = -15, which is definitely not zero. This property seems obvious, but it doesn't hold true for all rings. The rings where it does hold are special, and they get their own name: integral domains.

Integral Domain

noun

A commutative ring with a multiplicative identity (unity) that has no zero divisors.

The key phrase here is "no zero divisors." A zero divisor is a non-zero element that you can multiply by another non-zero element to get zero. Integral domains are structures where this can't happen.

In an integral domain, if $a eq 0$ and $b eq 0$, then their product $ab$ is also not zero. The only way for $ab = 0$ is if either $a=0$ or $b=0$.

This simple rule makes integral domains behave a lot more like the integers we're used to. All fields are integral domains, but not all integral domains are fields. Think of it as a stepping stone between a general commutative ring and a field.

Examples and Counterexamples

The easiest example of an integral domain is the set of integers, Z\mathbb{Z}, with the usual addition and multiplication. It's a commutative ring with unity (the number 1), and as we've discussed, the product of two non-zero integers is never zero.

Other common examples include the rational numbers (Q\mathbb{Q}), the real numbers (R\mathbb{R}), and the complex numbers (C\mathbb{C}). In fact, every field is an integral domain.

But what about a ring that isn't an integral domain? A great example is the ring of integers modulo 6, written as Z6\mathbb{Z}_6. The elements are {0,1,2,3,4,50, 1, 2, 3, 4, 5}. Let's see what happens when we multiply some of them.

OperationResultIs it Zero?
2×12 \times 12(mod6)2 \pmod{6}No
2×22 \times 24(mod6)4 \pmod{6}No
2×32 \times 360(mod6)6 \equiv 0 \pmod{6}Yes!
3×43 \times 4120(mod6)12 \equiv 0 \pmod{6}Yes!

In Z6\mathbb{Z}_6, we have 202 \neq 0 and 303 \neq 0, but their product 2×32 \times 3 is 00. This makes both 2 and 3 zero divisors. Since Z6\mathbb{Z}_6 has zero divisors, it is not an integral domain.

An interesting pattern emerges: the ring of integers modulo n, Zn\mathbb{Z}_n, is an integral domain if and only if nn is a prime number.

The Cancellation Law

One of the most useful properties of integral domains is the cancellation law. In regular arithmetic, if you have an equation like 2x=2y2x = 2y, you know you can "cancel" the 2s to get x=yx=y. This works because the integers are an integral domain.

The cancellation law states that for any elements a,b,ca, b, c in an integral domain, if aeq0a eq 0 and ab=acab = ac, then b=cb=c.

The absence of zero divisors allows us to safely cancel common factors in equations.

Why is this true? We can prove it quickly. Let's start with the equation ab=acab = ac.

abac=0(Subtract ac from both sides)a(bc)=0(Factor out a)\begin{aligned} ab - ac &= 0 & \text{(Subtract ac from both sides)} \\ a(b-c) &= 0 & \text{(Factor out a)} \end{aligned}

Now, we have a product of two elements, aa and (bc)(b-c), that equals zero. Since we are in an integral domain, one of these must be zero. We were given that a0a \neq 0, so the other part must be zero.

bc=0b=c\begin{aligned} b - c &= 0 \\ b &= c \end{aligned}

And there it is. The cancellation law holds. This property is crucial for solving equations and is a direct result of having no zero divisors.

This sets the stage for exploring even more structured rings, where we can talk about concepts like factorization and primes in a more general way.