Matrix Addition, Subtraction, and Scalar Multiplication Formula

The Formula

(A + B)_{ij} = a_{ij} + b_{ij}, (A - B)_{ij} = a_{ij} - b_{ij}, (kA)_{ij} = k \cdot a_{ij}. Requires A and B to have the same dimensions.

When to use: Adding matrices is like adding two spreadsheets cell by cell. If spreadsheet A has sales for January and B has sales for February, then A + 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

\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 + B is entry-by-entry addition. kA is scalar multiplication (k is a number, A is a matrix). Both A and B must be m \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 A has sales for January and B has sales for February, then A + 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 \in \mathbb{R}^{m \times n} and k \in \mathbb{R}: (A + B)_{ij} = a_{ij} + b_{ij} and (kA)_{ij} = k \cdot a_{ij}. These operations make \mathbb{R}^{m \times n} a vector space with zero element O_{m \times n} and additive inverse -A = (-1)A.

Worked Examples

Example 1

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

Solution

  1. 1
    Step 1: Add corresponding entries: a_{ij} + b_{ij}.
  2. 2
    Step 2: \begin{bmatrix} 1+5 & 2+6 \\ 3+7 & 4+8 \end{bmatrix} = \begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}.
  3. 3
    Check: Each entry is the sum of the entries in the same position ✓

Answer

\begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}
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 \begin{bmatrix} 2 & -1 \\ 0 & 4 \end{bmatrix} - \begin{bmatrix} 1 & 3 \\ -2 & 5 \end{bmatrix}.

Common Mistakes

  • Trying to add matrices of different dimensions
  • Forgetting to multiply every entry by the scalar
  • Confusing scalar multiplication with matrix multiplication—they are completely different operations

Why This Formula Matters

These basic operations are the building blocks for all matrix algebra, from transformations in graphics to combining data in statistics and engineering.

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 A has sales for January and B has sales for February, then A + 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 + B is entry-by-entry addition. kA is scalar multiplication (k is a number, A is a matrix). Both A and B must be m \times n.

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

These basic operations are the building blocks for all matrix algebra, from transformations in graphics to combining data in statistics and engineering.

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

You can only add or subtract matrices with identical dimensions. A 2 \times 3 matrix cannot be added to a 3 \times 2 matrix.

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 →