No history yet

Introduction to Rings

What is a Ring?

In abstract algebra, we study sets of objects along with operations that combine them. So far, you may have encountered groups, which are sets with a single well-behaved operation. Now, let's explore an algebraic structure with two operations: addition and multiplication. This structure is called a ring.

Lesson image

A ring is a set of elements where we can always add, subtract, and multiply, and the results stay within the set. The integers are a perfect example. You can add any two integers (like 3+(5)=23 + (-5) = -2), subtract them (3(5)=83 - (-5) = 8), or multiply them (3×(5)=153 \times (-5) = -15), and you always get another integer. These operations also interact in familiar ways, like the distributive property.

Ring

noun

A set R equipped with two binary operations, addition (+) and multiplication (·), is called a ring if it satisfies the following properties:

Let's break down the formal requirements. For any elements a,b,ca, b, c in a set RR:

Properties for Addition (+)1.a+b is in R2.(a+b)+c=a+(b+c)3.There is an element 0 in R such that a+0=a4.For each a in R, there is an element a in R such that a+(a)=05.a+b=b+a\begin{aligned} &\textbf{Properties for Addition (+)} \\ &1. \, a + b \text{ is in } R \\ &2. \, (a + b) + c = a + (b + c) \\ &3. \, \text{There is an element } 0 \text{ in } R \\ &\quad \text{ such that } a + 0 = a \\ &4. \, \text{For each } a \text{ in } R, \text{ there is an element } \\ &\quad -a \text{ in } R \text{ such that } a + (-a) = 0 \\ &5. \, a + b = b + a \end{aligned}

These five rules mean that a ring is an abelian group under addition. It’s closed, associative, has an identity (0), has inverses for every element, and is commutative.

Properties for Multiplication (⋅)6.ab is in R7.(ab)c=a(bc)\begin{aligned} &\textbf{Properties for Multiplication (·)} \\ &6. \, a \cdot b \text{ is in } R \\ &7. \, (a \cdot b) \cdot c = a \cdot (b \cdot c) \end{aligned}

For multiplication, we only require closure and associativity to start.

Connecting Property (Distributive)8.a(b+c)=(ab)+(ac)9.(a+b)c=(ac)+(bc)\begin{aligned} &\textbf{Connecting Property (Distributive)} \\ &8. \, a \cdot (b + c) = (a \cdot b) + (a \cdot c) \\ &9. \, (a + b) \cdot c = (a \cdot c) + (b \cdot c) \end{aligned}

The distributive laws are the crucial link that ties the two operations together.

Examples of Rings

The definition might seem abstract, but rings are all around us in mathematics.

The Integers, Z\mathbb{Z}: As we mentioned, the set of all integers with regular addition and multiplication is a ring. It's the classic, go-to example.

The Rational, Real, and Complex Numbers: The sets Q\mathbb{Q}, R\mathbb{R}, and C\mathbb{C} all form rings under their standard operations.

The Ring of Polynomials, Z[x]\mathbb{Z}[x]: Consider all polynomials with integer coefficients, like 3x25x+13x^2 - 5x + 1. You can add, subtract, and multiply any two such polynomials, and the result is always another polynomial with integer coefficients. This set, denoted Z[x]\mathbb{Z}[x], forms a ring.

Consider the set of all 2×22 \times 2 matrices with real number entries. You can add and multiply them, and the result is always another 2×22 \times 2 matrix. This set, denoted M2(R)M_2(\mathbb{R}), is another example of a ring.

Special Types of Rings

The basic definition of a ring is quite broad. Notice that we didn't require multiplication to be commutative or to have an identity element. Rings that have these extra properties are given special names.

A ring is called a commutative ring if its multiplication is commutative. That is, for all elements aa and bb in the ring, ab=baa \cdot b = b \cdot a.

The integers, rational numbers, and real numbers are all commutative rings because for any two numbers xx and yy, xy=yxxy = yx. However, the ring of 2×22 \times 2 matrices is not commutative. Matrix multiplication is generally not commutative; the order matters.

(1101)(1011)(1011)(1101)\begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix} \begin{pmatrix} 1 & 0 \\ 1 & 1 \end{pmatrix} \neq \begin{pmatrix} 1 & 0 \\ 1 & 1 \end{pmatrix} \begin{pmatrix} 1 & 1 \\ 0 & 1 \end{pmatrix}

Another special property is the existence of a multiplicative identity.

A ring is said to be a ring with unity (or a ring with identity) if there is an element, usually denoted by 1, such that for every element aa in the ring, a1=1a=aa \cdot 1 = 1 \cdot a = a.

Again, the integers have a unity (the number 1), as do the real numbers and the ring of matrices (where the identity matrix acts as unity). An example of a ring without unity is the set of all even integers. You can add, subtract, and multiply any two even integers and get another even integer. But there is no even integer ee such that 2e=22 \cdot e = 2, other than the number 1, which isn't in the set.

These concepts lay the groundwork for understanding more complex algebraic structures. Recognizing whether a ring is commutative or has a unity element tells us a lot about its fundamental properties.

Time to check your understanding.

Quiz Questions 1/6

A ring is an algebraic structure with two binary operations, typically called addition and multiplication. Under addition, a ring must form which of the following structures?

Quiz Questions 2/6

Which of the following sets, with the usual operations of addition and multiplication, does NOT form a ring?

With these foundational ideas, you're ready to explore the deeper properties and structures that arise within ring theory.