Add Matrices- Complete Guide with Examples

What Is Matrix Addition?

Matrix addition is straightforward. You add the numbers in matching positions from two matrices and put the result in the same position of a new matrix. That's it.

No tricks. No complicated formulas. Just element-by-element addition.

The Only Rule That Matters: Same Dimensions

You can only add matrices if they have the same number of rows and columns. A 2x3 matrix can add with another 2x3 matrix. A 3x3 adds with a 3x3. Mixing sizes doesn't work.

Why? Because each element needs a partner. Without matching positions, there's nothing to add.

How to Add Matrices: Step by Step

Here's how you actually do it:

  1. Check that both matrices have identical dimensions
  2. Write out a new empty matrix with the same dimensions
  3. For each position (row i, column j), add the two numbers together
  4. Fill that sum into position (i, j) of your result matrix

Example 1: Adding 2x2 Matrices

Let me show you with actual numbers:

Matrix A:

35
27

Matrix B:

14
62

Result (A + B):

3+1 = 45+4 = 9
2+6 = 87+2 = 9

Simple. Each element from A gets added to its twin in B.

Example 2: Adding 3x3 Matrices

The same process works for any size:

Matrix A:

123
456
789

Matrix B:

987
654
321

Result:

101010
101010
101010

Properties of Matrix Addition

These are the rules that always hold true:

These aren't suggestions. They always work, every time.

Common Mistakes

People mess this up in two ways:

Matrix Addition vs. Matrix Multiplication

Don't confuse addition with multiplication. They're completely different operations:

OperationRuleResult Size
Addition/SubtractionElement by elementSame as inputs
MultiplicationRow × Column dot productsRows of first × Columns of second

Matrix addition is way simpler. Matrix multiplication requires actual calculation work.

Getting Started: Practice Problem

Add these two matrices:

Matrix X:

512
83

Matrix Y:

21
49

Answer:

713
1212

If you got that, you understand matrix addition. If not, go back and check each element pair individually.

When You'll Actually Use This

Matrix addition shows up in:

It's a basic operation. Master it and move on.