Home

Tutoring

Subjects

Live Classes

Study Coach

Essay Review

On-Demand Courses

Colleges

Games

Opening subject page...

Loading your content

  1. Precalculus
  2. The Zero Matrix & the Identity Matrix

0I+A·I = A
Precalculus • Matrix Operations & Applications

The Zero Matrix & the Identity Matrix

Discover how two special matrices mirror the roles of 0 and 1 in everyday arithmetic—and why that matters for every matrix calculation you'll ever do.

Section 1

Where Did These Special Matrices Come From?

Long before calculators could multiply matrices in a blink, mathematicians needed a systematic way to solve large systems of equations. Matrices—rectangular arrays of numbers—emerged gradually as a bookkeeping tool, and with them came two special players whose behavior mirrors what you already know about 0 (the additive identity) and 1 (the multiplicative identity) in the real numbers. Understanding their backstory will help you see why mathematicians defined them exactly the way they did.

1850s
Arthur Cayley publishes the first formal paper on matrix algebra in England. He introduces notation for matrix addition and multiplication and begins to explore the idea that certain matrices leave others unchanged under these operations.
1858
Cayley explicitly defines the identity matrix—a square matrix with 1s on its main diagonal and 0s everywhere else—showing that multiplying any matrix by it returns the original matrix, just as multiplying a number by 1 yields the same number.
1880s – 1900s
Mathematicians like James Joseph Sylvester formalize the concept of the zero matrix—a matrix of all zeros—and prove that it functions as the additive identity, analogous to how adding 0 to any real number leaves it unchanged.
20th Century
Matrices become indispensable in physics (quantum mechanics, relativity), computer science (graphics transformations), and engineering (signal processing). The zero and identity matrices underpin virtually every matrix equation used in these fields.

In short, mathematicians recognized that the arithmetic you learned in middle school—adding zero changes nothing, multiplying by one changes nothing—needed exact counterparts in the world of matrices. The zero matrix and the identity matrix fill those roles perfectly, and that's the concept this lesson unpacks.

Section 2

Core Definitions & Principles

Before we dive into diagrams and equations, let's nail down four foundational ideas. If you've already mastered basic matrix addition and multiplication, these should feel natural—like giving names to behavior you've already seen.

1

The Zero Matrix (O)

A matrix in which every entry is 0. It can be any size: 2 × 2, 3 × 4, or m × n. When you add a zero matrix of the same dimensions to any matrix A, you get A back.
2

Additive Identity Property

For any m × n matrix A, the equation A + O = A holds, just as a + 0 = a for every real number a. The zero matrix "does nothing" under addition.
3

The Identity Matrix (I)

A square matrix with 1s along the main diagonal and 0s everywhere else (sometimes written In to denote its size). It only exists for n × n dimensions.
4

Multiplicative Identity Property

For any n × n matrix A, the equation A · I = I · A = A holds, just as a × 1 = a for any real number a. The identity matrix "does nothing" under multiplication.
✦ Key Takeaway
Think of the zero matrix as a blank transparency sheet layered over a printed page: adding it contributes nothing, so the original image (your matrix) is unchanged. The identity matrix is more like a ×1 zoom setting on a camera—it processes the image through a lens, yet every detail comes out exactly the same. One is the "do nothing" for addition; the other is the "do nothing" for multiplication.
Section 3

Seeing It: Visual Diagrams

Matrices are grids of numbers, so let's lay them out visually. The first diagram below shows how the zero matrix acts under addition; the second shows how the identity matrix acts under multiplication. Pay close attention to which entries combine and why the result always matches the original matrix A.

ADDITIVE IDENTITY: A + O = AMatrix A37−25+Zero Matrix O0000=Result = A37−253 + 0 = 37 + 0 = 7
Diagram showing matrix A plus the zero matrix O equals matrix A. Each entry of A is added to 0 and remains unchanged.

In the diagram above, every entry of A is paired with a corresponding 0 from the zero matrix. The sum for each position is simply the original entry, so the result is a copy of A. This is exactly how adding 0 to a real number works—just extended to every cell of the grid.

MULTIPLICATIVE IDENTITY: A · I = AA (2×2)37−25×I₂1001=Result = A37−25Row 1 · Col 1:3×1 + 7×0 = 3Row 1 · Col 2:3×0 + 7×1 = 7Row 2 · Col 1:(−2)×1 + 5×0 = −2Row 2 · Col 2:(−2)×0 + 5×1 = 5Each dot product returnsthe original entry of A.
Diagram showing matrix A times the 2×2 identity matrix I equals matrix A. Dot products of each row of A with columns of I reproduce the original entries.

The identity matrix's 1s sit on the main diagonal (top-left to bottom-right), and every off-diagonal entry is 0. When you compute each dot product (row of A times column of I), the 1 "picks out" the entry you want, and the 0s annihilate everything else. The result? A carbon copy of A.

Section 4

The Mathematical Framework

Let's formalize what the diagrams just showed us. These properties hold for matrices of compatible dimensions, just as their real-number counterparts hold for all real numbers.

Additive Identity — Zero Matrix
A + O = O + A = A
where O is the m × n zero matrix and A is any m × n matrix

In this equation, every entry of O is zero, so the (i, j)-entry of A + O is simply aij + 0 = aij. Notice that O must share the same dimensions as A; there is no single universal zero matrix—its size depends on context, just like there is only one real number 0, but many differently-shaped zero matrices.

Multiplicative Identity — Identity Matrix
A · Iₙ = Iₘ · A = A
where A is m × n, Iₙ is the n × n identity, and Iₘ is the m × m identity

The identity matrix Iₙ is the n × n square matrix whose (i, j)-entry equals 1 when i = j and 0 otherwise. This is often written using the Kronecker delta: δij. When A is square (m = n), the equation simplifies to A · I = I · A = A.

Additive Inverse Connection
A + (−A) = O
The zero matrix also appears as the result of adding a matrix to its additive inverse

Just as a + (−a) = 0 in the reals, every matrix has an additive inverse (negate every entry), and their sum is the zero matrix. This makes the set of m × n matrices a mathematical structure called a vector space—but that's a topic for a future course.

Multiplicative Property of the Zero Matrix
A · O = O · A = O
Multiplying any matrix by a zero matrix (of compatible dimensions) yields a zero matrix

This mirrors the real-number fact that a × 0 = 0. No matter what A contains, all those dot products reduce to sums of zeros.

Section 5

Detailed Breakdown: Size Matters

One subtlety that trips students up is that the zero matrix and identity matrix come in different sizes. The table below catalogues some common examples and clarifies when each form appears.

MatrixSizeAppearanceRole
O2×22 × 2[ 0 0 ] [ 0 0 ]Additive identity for any 2 × 2 matrix
O2×32 × 3[ 0 0 0 ] [ 0 0 0 ]Additive identity for any 2 × 3 matrix
I22 × 2[ 1 0 ] [ 0 1 ]Multiplicative identity for 2 × 2 matrices
I33 × 3[ 1 0 0 ] [ 0 1 0 ] [ 0 0 1 ]Multiplicative identity for 3 × 3 matrices
I44 × 4[ 1 0 0 0 ] [ 0 1 0 0 ] [ 0 0 1 0 ] [ 0 0 0 1 ]Used in 3-D graphics transformations

A crucial point: the identity matrix is always square (n × n), because matrix multiplication A · I requires the number of columns in A to match the number of rows in I. The zero matrix, on the other hand, can be any rectangular shape, since matrix addition only requires matching dimensions. When a problem says "the identity matrix" without specifying size, the size is inferred from the matrix it's being multiplied with.

✦ Key Takeaway
Think of identity matrices as different-sized neutral gears in a machine. A 2 × 2 gear meshes only with 2-column (or 2-row) matrices; a 3 × 3 gear only with 3-column (or 3-row) matrices. Regardless of size, each gear's job is the same: spin without changing anything.
Section 6

Worked Example

Let's verify both identity properties with a concrete 3 × 3 matrix. We'll start with addition and then move to multiplication.

Verifying Additive and Multiplicative Identity Properties

Given Matrix

Let A be the 3 × 3 matrix:
A = [ 4 −1 6 ] [ 0 3 −5 ] [ 2 8 1 ]

Step 1 — Verify the Additive Identity (A + O = A)

Add the 3 × 3 zero matrix to A. Each entry aij is added to 0:
A + O₃ₓ₃ = [ 4+0 −1+0 6+0 ] = [ 4 −1 6 ] [ 0+0 3+0 −5+0 ] = [ 0 3 −5 ] [ 2+0 8+0 1+0 ] = [ 2 8 1 ]
A + O = A ✓

Step 2 — Verify the Multiplicative Identity (A · I = A)

Multiply A by I3. We'll compute each entry using row × column dot products.

Row 1 · Col 1: 4(1) + (−1)(0) + 6(0) = 4
Row 1 · Col 2: 4(0) + (−1)(1) + 6(0) = −1
Row 1 · Col 3: 4(0) + (−1)(0) + 6(1) = 6
Row 2 · Col 1: 0(1) + 3(0) + (−5)(0) = 0
Row 2 · Col 2: 0(0) + 3(1) + (−5)(0) = 3
Row 2 · Col 3: 0(0) + 3(0) + (−5)(1) = −5
Row 3 · Col 1: 2(1) + 8(0) + 1(0) = 2
Row 3 · Col 2: 2(0) + 8(1) + 1(0) = 8
Row 3 · Col 3: 2(0) + 8(0) + 1(1) = 1

Step 3 — Assemble the Result

A · I₃ = [ 4 −1 6 ] [ 0 3 −5 ] [ 2 8 1 ]
A · I₃ = A ✓

Step 4 — Interpret

In every dot product, the single 1 on the identity's diagonal selects the matching entry from A, while the 0s eliminate every other term. This mechanism works for any square matrix, no matter its entries—confirming that I truly is the multiplicative identity.
Section 7

Real Numbers vs. Matrices: Side-by-Side

The analogy between real-number arithmetic and matrix arithmetic is surprisingly tight, but there are important differences. The table below puts the parallels—and the divergences—side by side.

PropertyReal NumbersMatrices
Additive identitya + 0 = aA + O = A
Multiplicative identitya × 1 = aA · I = A
Additive inversea + (−a) = 0A + (−A) = O
Multiplicative inversea × (1/a) = 1 (a ≠ 0)A · A⁻¹ = I (if A is invertible)
Multiplication by zeroa × 0 = 0A · O = O
Commutativity of ×Always: ab = baNot guaranteed: AB ≠ BA in general
Zero-product propertyab = 0 ⟹ a = 0 or b = 0Fails: AB = O is possible with A ≠ O and B ≠ O

The last two rows highlight where the analogy breaks down. Matrix multiplication is not commutative: the order matters. And unlike real numbers, two nonzero matrices can multiply to give the zero matrix. Keep these exceptions in mind as you move forward, even though the identity properties themselves transfer perfectly.

✦ Key Takeaway
The zero and identity matrices are the "0 and 1 of matrix land," but matrix land has its own rules. Addition works just like you'd expect (commutative, with a nice additive identity), while multiplication is more like a one-way street—order matters, and the zero-product property doesn't hold. Knowing where the analogy works and where it breaks down is what separates careful math from careless mistakes.
Section 8

Connections to Advanced Theory

You might wonder: "Why make such a big deal about two simple matrices?" The answer is that the zero and identity matrices are the foundation for nearly everything else in linear algebra. Here's a preview of where these concepts lead.

Concept You KnowWhere It Leads
A · I = AMatrix inverses: Finding A−1 such that A · A−1 = I. This is how you "divide" by a matrix to solve systems of equations.
A + O = AVector spaces: The zero matrix is the zero vector of the space of m × n matrices, a key object in abstract algebra and functional analysis.
det(I) = 1Determinants: The identity matrix has determinant 1, which connects to volume scaling, invertibility tests, and eigenvalue theory.
I has 1s on diagonalEigenvalues: Finding eigenvalues involves solving det(A − λI) = 0, where λI is a scalar multiple of the identity.

In a college-level linear algebra course, you'll see that the identity matrix appears in nearly every major formula—from the characteristic equation to change-of-basis transformations. For now, the essential insight is this: I and O aren't just curiosities. They are the structural pillars on which all of matrix algebra is built, exactly as 0 and 1 are the pillars of ordinary arithmetic.

Section 9

Practice Problems

PROBLEM 1 — CONCEPTUAL
Explain in your own words why the identity matrix must be square, whereas the zero matrix can be any rectangular shape. What property of matrix multiplication forces this requirement?
PROBLEM 2 — BASIC CALCULATION
Let B = [ 5 −3 ] / [ 2 8 ] (a 2 × 2 matrix). Compute B + O2×2 and verify it equals B.
PROBLEM 3 — INTERMEDIATE
Compute I2 · C, where C = [ −4 7 ] / [ 1 −9 ]. Show each dot-product calculation.
PROBLEM 4 — APPLIED / MULTI-STEP
A video-game programmer stores a character's position as a 3 × 1 column vector p = [ 10 ] / [ −5 ] / [ 3 ]. To "apply no transformation," the engine multiplies p by I3. Verify that I3 · p = p, then explain why a programmer might ever intentionally use the identity matrix (instead of simply skipping the multiplication).
PROBLEM 5 — SYNTHESIS / CRITICAL THINKING
Suppose someone claims: "Because A · I = A and I · A = A, matrix multiplication must be commutative." Find a specific 2 × 2 counter-example (two matrices P and Q where PQ ≠ QP) to disprove this claim. Then explain why the identity property does not imply commutativity in general.
Summary

Lesson Summary

The zero matrix O and the identity matrix I are the matrix equivalents of the numbers 0 and 1 in real-number arithmetic. Adding the zero matrix to any matrix A of matching dimensions leaves A unchanged (A + O = A), and multiplying any square matrix A by the appropriately sized identity matrix also leaves it unchanged (A · I = I · A = A). These properties—the additive identity and multiplicative identity—are not just algebraic curiosities; they are the structural backbone of matrix algebra, enabling concepts like matrix inverses, determinants, and eigenvalues.

Key nuances to remember: the zero matrix can be any rectangular shape, while the identity matrix is always square. Matrix multiplication is not commutative in general, and the zero-product property fails for matrices. Despite these differences, the identity properties transfer perfectly from the reals, giving you a familiar anchor as you navigate the more complex landscape of matrix operations.

Varsity Tutors • Precalculus (Common Core) • Zero & Identity Matrices