What Is Addition Of Matrices?
Addition of matrices is the operation that adds two matrices of the same order by summing the entries that sit in matching positions. A matrix is a rectangular array of numbers arranged in rows and columns, and its order is written as (rows × columns). Two matrices can be added only when their orders agree.
The rule works element by element. The entry in row $i$, column $j$ of the sum is the row $i$, column $j$ entry of the first matrix plus the row $i$, column $j$ entry of the second. In symbols, if $C = A + B$, then $c_{ij} = a_{ij} + b_{ij}$ for every pair of matching entries.
The sum has the same order as the two matrices you started with. Add two matrices of order 2 × 3 and the answer is again 2 × 3.
How Do You Add Two Matrices Of The Same Order?
To add two matrices of the same order, add each pair of entries that occupy the same position. Nothing moves and nothing is rearranged; every entry stays in its row and column and simply gains the matching entry from the other matrix.
Example 1: Add two 2 × 2 matrices
$$A = \begin{bmatrix} 2 & 5 \ 3 & 7 \end{bmatrix}, \qquad B = \begin{bmatrix} 4 & 0 \ 6 & 8 \end{bmatrix}$$
Add the matching positions, top-left with top-left, and so on:
$$A + B = \begin{bmatrix} 2+4 & 5+0 \ 3+6 & 7+8 \end{bmatrix} = \begin{bmatrix} 6 & 5 \ 9 & 15 \end{bmatrix}$$
Final answer: $A + B = \begin{bmatrix} 6 & 5 \ 9 & 15 \end{bmatrix}$.
The table below shows where each entry of the answer comes from, which is the whole method in one view.
Table: Where each entry of $A + B$ comes from in the 2 × 2 case.
Position | Entry of $A$ | Entry of $B$ | Entry of $A + B$ |
|---|---|---|---|
Row 1, Col 1 | $2$ | $4$ | $6$ |
Row 1, Col 2 | $5$ | $0$ | $5$ |
Row 2, Col 1 | $3$ | $6$ | $9$ |
Row 2, Col 2 | $7$ | $8$ | $15$ |
How Do You Add 3 × 3 And Rectangular Matrices?
The rule does not change as the matrices get larger. Add the entries in matching positions, and watch the signs when entries are negative.
Example 2: Add two 3 × 3 matrices with negative entries
$$C = \begin{bmatrix} 1 & -2 & 3 \ 0 & 4 & -1 \ 5 & 2 & 6 \end{bmatrix}, \qquad D = \begin{bmatrix} -3 & 2 & 1 \ 4 & -4 & 7 \ 0 & 1 & -2 \end{bmatrix}$$
$$C + D = \begin{bmatrix} 1+(-3) & -2+2 & 3+1 \ 0+4 & 4+(-4) & -1+7 \ 5+0 & 2+1 & 6+(-2) \end{bmatrix} = \begin{bmatrix} -2 & 0 & 4 \ 4 & 0 & 6 \ 5 & 3 & 4 \end{bmatrix}$$
Writing each sum with its signs in brackets first, before collapsing to a single number, is the surest way to keep a negative entry from flipping to a positive one.
Rectangular matrices follow the same rule, as long as both share the same order. A 2 × 3 matrix can be added only to another 2 × 3 matrix.
Example 3: Add two 2 × 3 matrices
$$E = \begin{bmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \end{bmatrix}, \qquad F = \begin{bmatrix} 6 & 5 & 4 \ 3 & 2 & 1 \end{bmatrix}$$
$$E + F = \begin{bmatrix} 1+6 & 2+5 & 3+4 \ 4+3 & 5+2 & 6+1 \end{bmatrix} = \begin{bmatrix} 7 & 7 & 7 \ 7 & 7 & 7 \end{bmatrix}$$
How Do You Add Three Matrices?
To add three matrices of the same order, add all three entries in each matching position at once, or add two of them first and then the third. Both routes give the same answer, because addition of matrices is associative.
$$P = \begin{bmatrix} 1 & 0 \ 2 & 1 \end{bmatrix}, \quad Q = \begin{bmatrix} 3 & 1 \ 0 & 2 \end{bmatrix}, \quad R = \begin{bmatrix} 2 & 2 \ 1 & 0 \end{bmatrix}$$
Add all three position by position:
$$P + Q + R = \begin{bmatrix} 1+3+2 & 0+1+2 \ 2+0+1 & 1+2+0 \end{bmatrix} = \begin{bmatrix} 6 & 3 \ 3 & 3 \end{bmatrix}$$
Group $(P + Q)$ first, or group $(Q + R)$ first, and the result is identical. The grouping is free to choose, which is exactly what associativity guarantees.
What Are The Properties Of Addition Of Matrices?
Addition of matrices follows the same friendly rules as ordinary number addition. Two special matrices anchor the list: the zero matrix (every entry is $0$) and the negative of a matrix, called its additive inverse.
Commutative: $A + B = B + A$. The order in which you write the two matrices does not change the sum.
Associative: $(A + B) + C = A + (B + C)$. When adding three or more, the grouping does not matter.
Additive identity: the zero matrix $O$ of the same order leaves any matrix unchanged, $A + O = A$.
Additive inverse: every matrix $A$ has a negative $-A$ (each entry with its sign flipped) so that $A + (-A) = O$.
Closure sits quietly behind all four: add two matrices of order $m \times n$ and the answer is again a matrix of order $m \times n$, never something outside the set. A consolidated reference lives at properties of matrices.
Why Must Matrices Be The Same Order To Add?
The same-order rule is not an arbitrary restriction. It comes straight from what addition of matrices is built to do: combine two grids that describe the same things measured twice.
Every entry needs a partner. Addition pairs the row $i$, column $j$ entry of one matrix with the row $i$, column $j$ entry of the other. If one matrix has a position the other lacks, that entry has nothing to add to, and the sum is left undefined.
The positions have to mean the same thing. In real data a matrix stores aligned information, where the same row means the same category and the same column means the same attribute. Two grids of the same order line those meanings up, so adding matching cells adds like to like.
It keeps the family consistent. Subtraction runs on the same rule, since subtracting is adding a negative, and scalar multiplication preserves order too. One shared condition keeps the whole set of operations coherent.
So the rule is really a promise about meaning. Adding two same-order matrices adds quantities that belong together, and refusing mismatched orders is what protects that promise.
Who Invented Matrices And Matrix Addition?
The grid is ancient, but the rules for adding grids are surprisingly modern. People arranged numbers in rectangles for centuries before anyone wrote down what it means to add two of them.
Two more names shaped the same idea:
James Joseph Sylvester (1814–1897, England) coined the word "matrix" in 1850, from the Latin for "womb," picturing the array as the thing that gives birth to determinants. He and Arthur Cayley were lifelong friends who built much of matrix theory together.
The unknown authors of The Nine Chapters on the Mathematical Art (China, roughly 200 BCE to 100 CE) arranged the coefficients of equations as rectangular blocks of counting rods and combined them column by column, working with matrix-like grids two thousand years before the word existed.
Where Is Addition Of Matrices Used In The Real World?
Adding two grids of the same shape turns up wherever two aligned data tables need to be combined into one.
Image editing: a digital image is a grid of pixel values, so blending two images of the same size, or brightening one by adding a constant frame, is addition of matrices behind the screen.
Computer graphics and games: shifting a set of points by the same offset adds an offset matrix to the matrix of coordinates, moving every vertex together.
Business and spreadsheets: combining two sales tables that share the same products (rows) and regions (columns) is a cell-by-cell matrix sum, the everyday version of the head-office scene above.
Physics and engineering: field or force readings taken on the same grid of points are superposed by adding the reading matrices, the mathematical form of "effects add up."
Machine learning: a network adds a bias matrix to a layer's output, and training accumulates gradient matrices batch after batch, both plain matrix additions.
One small rule, add same-shaped grids cell by cell, quietly serves photo apps, game engines, spreadsheets, laboratories, and learning machines alike.
What Are The Most Common Addition Of Matrices Mistakes?
Three errors account for most lost marks on matrix addition, confirmed against GeeksforGeeks, BYJU'S, and Vedantu's common-errors guidance. Each one is easy to avoid once you name it.
Adding Matrices of Different Orders
Where it slips in:
A student sees two matrices and starts adding, without first checking that both have the same number of rows and the same number of columns.
Don't do this:
Do not add a 2 × 3 matrix to a 3 × 2 matrix, or a 2 × 2 to a 2 × 3. When the orders differ, the sum simply does not exist.
The correct way:
Write the order under each matrix first. Only when the two orders match, position for position, is the sum defined, and it carries that same order.
Adding a Row Entry to a Column Entry
Where it slips in:
While working quickly, a student pairs the wrong cells, adding an entry from one row to an entry sitting in a different row or column, especially when copying a column matrix beside a row of numbers.
Don't do this:
Do not let entries drift out of position. The row 1, column 2 entry adds only to the other row 1, column 2 entry, never to a value from a different position.
The correct way:
Track the position, not the value. Line the two grids up so matching cells sit directly on top of each other, then add straight down each position.
Sign Slips on Negative Entries
Where it slips in:
A student adding entries such as $-2$ and $2$, or $6$ and $-2$, rushes the arithmetic and drops or flips a sign in the final grid.
Don't do this:
Do not collapse a signed sum to a single number in one glance. A stray sign changes the whole entry.
The correct way:
Write the signed sum in brackets first, $6 + (-2)$, then simplify to $4$. The brackets keep the sign visible until the arithmetic is finished.
Practice Problems On Addition Of Matrices
Use $M = \begin{bmatrix} 1 & 4 \ 2 & 5 \end{bmatrix}$ and $N = \begin{bmatrix} 3 & 0 \ 6 & 1 \end{bmatrix}$ unless a problem says otherwise. Answers follow each line.
Find $M + N$.
(Answer: $\begin{bmatrix} 4 & 4 \ 8 & 6 \end{bmatrix}$.)Find $N + M$ and check it equals $M + N$.
(Answer: $\begin{bmatrix} 4 & 4 \ 8 & 6 \end{bmatrix}$, the same, since addition is commutative.)
Add the row matrices $\begin{bmatrix} 2 & -3 \end{bmatrix}$ and $\begin{bmatrix} -5 & 4 \end{bmatrix}$.
(Answer: $\begin{bmatrix} -3 & 1 \end{bmatrix}$.)Find $\begin{bmatrix} 1 & 0 & 2 \ 3 & 1 & 0 \ 0 & 4 & 1 \end{bmatrix} + \begin{bmatrix} 2 & 2 & 1 \ 0 & 3 & 5 \ 1 & 1 & 2 \end{bmatrix}$.
(Answer: $\begin{bmatrix} 3 & 2 & 3 \ 3 & 4 & 5 \ 1 & 5 & 3 \end{bmatrix}$.)Write the zero matrix $O$ for which $M + O = M$.
(Answer: $\begin{bmatrix} 0 & 0 \ 0 & 0 \end{bmatrix}$.)Write $-N$, the additive inverse of $N$.
(Answer: $\begin{bmatrix} -3 & 0 \ -6 & -1 \end{bmatrix}$.)
Where Should You Go Next After Addition Of Matrices?
Addition is the first operation on matrices, and each door below opens onto the next one.
Subtraction of matrices. The mirror operation, which is just adding the additive inverse, so the same-order rule carries straight over.
Multiplication of matrices. The operation with the surprising rules, where order suddenly matters and the shapes must line up differently.
Matrices and determinants. The bigger picture that ties addition, multiplication, and the determinant together.
If your child is building these foundations, a live Bhanzu trainer teaches addition of matrices starting from the meaning (two aligned grids combined cell by cell) in the Bhanzu algebra program.
Was this article helpful?
Your feedback helps us write better content
