Matrix Addition, Subtraction, and Scalar Multiplication Formula

Matrix addition, subtraction, and scalar multiplication is matrix addition and subtraction are performed entry by entry on matrices of the same dimensions.

The Formula

(A+B)ij=aij+bij(A + B)_{ij} = a_{ij} + b_{ij}, (Aβˆ’B)ij=aijβˆ’bij(A - B)_{ij} = a_{ij} - b_{ij}, (kA)ij=kβ‹…aij(kA)_{ij} = k \cdot a_{ij}. Requires AA and BB to have the same dimensions.

When to use: Adding matrices is like adding two spreadsheets cell by cell. If spreadsheet AA has sales for January and BB has sales for February, then A+BA + B gives total sales in each cell. Scalar multiplication is like giving everyone in the spreadsheet a 10% raiseβ€”multiply every entry by 1.1.

Quick Example

[1234]+[5678]=[681012],3β‹…[1234]=[36912]\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} + \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix} = \begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}, \quad 3 \cdot \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} = \begin{bmatrix} 3 & 6 \\ 9 & 12 \end{bmatrix}

Notation

A+BA + B is entry-by-entry addition. kAkA is scalar multiplication (kk is a number, AA is a matrix). Both AA and BB must be mΓ—nm \times n.

What This Formula Means

Matrix addition and subtraction are performed entry by entry on matrices of the same dimensions. Scalar multiplication multiplies every entry of a matrix by a single number (the scalar).

Adding matrices is like adding two spreadsheets cell by cell. If spreadsheet AA has sales for January and BB has sales for February, then A+BA + B gives total sales in each cell. Scalar multiplication is like giving everyone in the spreadsheet a 10% raiseβ€”multiply every entry by 1.1.

Formal View

For A,B∈RmΓ—nA, B \in \mathbb{R}^{m \times n} and k∈Rk \in \mathbb{R}: (A+B)ij=aij+bij(A + B)_{ij} = a_{ij} + b_{ij} and (kA)ij=kβ‹…aij(kA)_{ij} = k \cdot a_{ij}. These operations make RmΓ—n\mathbb{R}^{m \times n} a vector space with zero element OmΓ—nO_{m \times n} and additive inverse βˆ’A=(βˆ’1)A-A = (-1)A.

Worked Examples

Example 1

easy
Compute [1234]+[5678]\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} + \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix}.

Answer

[681012]\begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}

First step

1
Step 1: Add corresponding entries: aij+bija_{ij} + b_{ij}.

Full solution

  1. 2
    Step 2: [1+52+63+74+8]=[681012]\begin{bmatrix} 1+5 & 2+6 \\ 3+7 & 4+8 \end{bmatrix} = \begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}.
  2. 3
    Check: Each entry is the sum of the entries in the same position βœ“
Matrix addition adds corresponding entries element by element. Both matrices must have the same dimensions for addition to be defined.

Example 2

medium
Compute 3[2βˆ’104]βˆ’[13βˆ’25]3 \begin{bmatrix} 2 & -1 \\ 0 & 4 \end{bmatrix} - \begin{bmatrix} 1 & 3 \\ -2 & 5 \end{bmatrix}.

Example 3

medium
Show that A+(B+C)=(A+B)+CA+(B+C)=(A+B)+C for A=[1001]A=\begin{bmatrix}1&0\\0&1\end{bmatrix}, B=[2345]B=\begin{bmatrix}2&3\\4&5\end{bmatrix}, C=[1111]C=\begin{bmatrix}1&1\\1&1\end{bmatrix}.

Common Mistakes

  • Adding mismatched-size matrices β€” addition/subtraction only works when dimensions are identical.
  • Scaling only the first row or entry β€” a scalar multiplies EVERY entry of the matrix.
  • Confusing kAkA with ABAB β€” a scalar is a single number, not another matrix; do not row-by-column it.

Why This Formula Matters

These are the gentle, dimension-matching operations that build intuition before the row-by-column rule of multiplication; they also model real combining of data tables and scaling. Recognizing it by "For +/βˆ’+/-, do the two matrices have exactly the same dimensions?" β€” rather than by familiar numbers β€” is what lets a student tell it apart from matrix multiplication and scalar vs matrix product and vector operations in a mixed problem set.

Frequently Asked Questions

What is the Matrix Addition, Subtraction, and Scalar Multiplication formula?

Matrix addition and subtraction are performed entry by entry on matrices of the same dimensions. Scalar multiplication multiplies every entry of a matrix by a single number (the scalar).

How do you use the Matrix Addition, Subtraction, and Scalar Multiplication formula?

Adding matrices is like adding two spreadsheets cell by cell. If spreadsheet AA has sales for January and BB has sales for February, then A+BA + B gives total sales in each cell. Scalar multiplication is like giving everyone in the spreadsheet a 10% raiseβ€”multiply every entry by 1.1.

What do the symbols mean in the Matrix Addition, Subtraction, and Scalar Multiplication formula?

A+BA + B is entry-by-entry addition. kAkA is scalar multiplication (kk is a number, AA is a matrix). Both AA and BB must be mΓ—nm \times n.

Why is the Matrix Addition, Subtraction, and Scalar Multiplication formula important in Math?

These are the gentle, dimension-matching operations that build intuition before the row-by-column rule of multiplication; they also model real combining of data tables and scaling. Recognizing it by "For +/βˆ’+/-, do the two matrices have exactly the same dimensions?" β€” rather than by familiar numbers β€” is what lets a student tell it apart from matrix multiplication and scalar vs matrix product and vector operations in a mixed problem set.

What do students get wrong about Matrix Addition, Subtraction, and Scalar Multiplication?

The procedure for matrix addition, subtraction, and scalar multiplication is the easy part; the trap is adding mismatched-size matrices. Asking "For +/βˆ’+/-, do the two matrices have exactly the same dimensions?" first is what keeps a correct-looking calculation from being attached to the wrong concept.

What should I learn before the Matrix Addition, Subtraction, and Scalar Multiplication formula?

Before studying the Matrix Addition, Subtraction, and Scalar Multiplication formula, you should understand: matrix definition.

Want the Full Guide?

This formula is covered in depth in our complete guide:

Solving Systems of Equations: Substitution, Elimination, and Matrices β†’