Matrix scalar multiplication
When multiplying a matrix by a scalar (a single number), we multiply each element of the matrix by that scalar.
For a 2x2 matrix, this can be written as:
Examples
Evaluate 2 \times \begin{bmatrix} 1 & 3 \\ 5 & 7 \end{bmatrix}
- multiply each element of the matrix by 2:
- Top-left:
2 \times 1 = 2 - Top-right:
2 \times 3 = 6 - Bottom-left:
2 \times 5 = 10 - Bottom-right:
2 \times 7 = 14
- Top-left:
- So,
2 \times \begin{bmatrix} 1 & 3 \\ 5 & 7 \end{bmatrix} = \begin{bmatrix} 2 & 6 \\ 10 & 14 \end{bmatrix} - Answer:
\begin{bmatrix} 2 & 6 \\ 10 & 14 \end{bmatrix}
flashcards
| Question | Answer |
|---|---|
| How do you multiply a matrix by a scalar? | Multiply each element of the matrix by that scalar. |
| What is the result of | |
| How do you evaluate | |
| What are the steps to evaluate | Multiply each element by 2: - Top-left: - Top-right: - Bottom-left: - Bottom-right: Result: |