Matrix Addition Explained- Practice and Examples

What Is Matrix Addition?

Matrix addition is exactly what it sounds like: combining two matrices by adding their corresponding elements together. You pair up numbers from the same position in each matrix, add them, and put the result in a new matrix at that same position.

That's it. No tricks, no complicated formulas. Just addition, repeated across every element.

The One Rule That Matters

Before you add anything, you need to check one thing: do the matrices have the same dimensions?

A matrix is defined by its rows and columns. A 2×3 matrix has 2 rows and 3 columns. If you're adding two matrices, both must have the same number of rows AND the same number of columns.

You cannot add a 2×3 matrix to a 3×2 matrix. You cannot add a 2×3 matrix to a 2×4 matrix. Same dimensions, or it doesn't work.

Why This Rule Exists

Matrix addition pairs elements by position. The element in row 1, column 1 of the first matrix adds to the element in row 1, column 1 of the second matrix. If the matrices are different sizes, some positions won't have a partner. The operation becomes undefined.

How to Add Matrices: Step-by-Step

Here's the process:

  1. Verify both matrices have identical dimensions
  2. Set up your result matrix with the same dimensions
  3. For each position (row i, column j), add the element from matrix A to the element from matrix B
  4. Place the sum in the result matrix at position (i, j)
  5. Repeat until you've filled every position

Matrix Addition Examples

Example 1: Adding Two 2×2 Matrices

Given:

A = [ [2, 3]
[1, 4] ]

B = [ [5, 1]
[0, 2] ]

Find A + B

Step 1: Both are 2×2. Good to go.

Step 2: Calculate each position.

Result: A + B = [ [7, 4]
[1, 6] ]

Example 2: Adding Two 3×2 Matrices

Given:

A = [ [1, 2]
[3, 4]
[5, 6] ]

B = [ [6, 5]
[4, 3]
[2, 1] ]

Find A + B

Work it out:

Result: A + B = [ [7, 7]
[7, 7]
[7, 7] ]

Matrix Addition vs. Other Operations

Here's how addition compares to other basic matrix operations:

Operation Requirement How It Works
Addition Same dimensions Add corresponding elements
Subtraction Same dimensions Subtract corresponding elements
Scalar Multiplication None (any size) Multiply every element by the scalar
Matrix Multiplication Columns of A = Rows of B Dot products of rows and columns

Addition and subtraction have the exact same requirement: identical dimensions. The difference is whether you're adding or subtracting the paired elements.

Matrix Subtraction: Same Rules

Matrix subtraction works identically to addition, except you subtract instead of add.

Given:

A = [ [10, 8]
[6, 4] ]

B = [ [3, 2]
[1, 0] ]

A - B = [ [7, 6]
[5, 4] ]

Check each position: 10-3=7, 8-2=6, 6-1=5, 4-0=4. Works every time.

Practice Problems

Try these before checking the answers.

Problem 1

A = [ [4, 7]
[2, 9] ]

B = [ [1, 3]
[5, 1] ]

Find A + B

Problem 2

X = [ [0, 1, 2]
[3, 4, 5] ]

Y = [ [5, 4, 3]
[2, 1, 0] ]

Find X + Y

Problem 3

P = [ [2, 0]
[0, 2] ]

Q = [ [1, 1]
[1, 1] ]

Find P + Q

Answers

Problem 1: A + B = [ [5, 10]
[7, 10] ]

Problem 2: X + Y = [ [5, 5, 5]
[5, 5, 5] ]

Problem 3: P + Q = [ [3, 1]
[1, 3] ]

Common Mistakes

Where Matrix Addition Shows Up

You'll encounter matrix addition in:

It's a foundational operation. Master it now and everything built on top of it becomes easier.

Quick Reference

Matrix addition is one of the simpler operations in linear algebra. The rules are minimal, the process is straightforward, and once you've done a few examples, it becomes automatic. Work through the practice problems until you're comfortable with the mechanics.