ELIAS EBNER

  • Home
  • Blog
  • Courses
  • About

Linear Algebra

  1. Vectors
    1. Scalars
    2. Vectors vs Sets
    3. Addition and Subtraction
    4. Scalar Multiplication
    5. Zero Vectors
    6. Linear Combinations
    7. Real Dot Product
    8. Length of a Vector
    9. Orthogonal Vectors
    10. Parallel Vectors
    11. Angle Between Vectors
    12. Unit Vectors
  2. Matrices
    1. Notation
    2. Indexing
    3. Submatrices
    4. Matrix-by-Vector Product
    5. Addition and Subtraction
    6. Scalar Multiplication
    7. Transpose
    8. Symmetries
    9. Matrix Multiplication
    10. Identity Matrix
    11. Non-Negative Integer Powers
    12. Reverse Order Law of Transposition
  3. Linear Systems
    1. Inverse Matrices
    2. Singular Matrices
    3. Linear Dependence
    4. Solutions
  4. Planes
    1. Vector Cross Product
  5. Gaussian Elimination
Linear Algebra ›Matrices ›Scalar Multiplication

Scalar Multiplication of a Matrix

Just like vectors, matrices can also be multiplied by scalars. It follows the same idea as scalar multiplication of vectors.

Scalar multiplication of a matrix (denoted by cAcAcA where ccc is a scalar and AAA is a matrix) is defined as follows:

For each row iii and each column jjj of some matrix AAA of size m×nm \times nm×n,

[cA]ij=c[A]ij,1≤i≤m,  1≤j≤n. [cA]_{ij} = c[A]_{ij}, \quad 1 \le i \le m, \; 1 \le j \le n.[cA]ij​=c[A]ij​,1≤i≤m,1≤j≤n.

What this means is that to compute the element ijijij of the matrix cAcAcA, you simply multiply the element ijijij of AAA by ccc.

Another way of writing this would be

cA=[ca11ca12⋯ca1nca21ca22⋯ca2n⋮⋮⋱⋮cam1cam2⋯camn].cA = \begin{bmatrix} c a_{11} & c a_{12} & \cdots & c a_{1n} \\ c a_{21} & c a_{22} & \cdots & c a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ c a_{m1} & c a_{m2} & \cdots & c a_{mn} \end{bmatrix}.cA=​ca11​ca21​⋮cam1​​ca12​ca22​⋮cam2​​⋯⋯⋱⋯​ca1n​ca2n​⋮camn​​​.

This is similar to what you do when multiplying a vector by a scalar.

In conclusion, scalar multiplication of a matrix scales every entry of the matrix by the same factor.

Example

Take the matrix

A=[2−130−412−25−301],A = \begin{bmatrix} 2 & -1 & 3 & 0 \\ -4 & 1 & 2 & -2 \\ 5 & -3 & 0 & 1 \end{bmatrix},A=​2−45​−11−3​320​0−21​​,

and the scalar

c=−2.c = -2.c=−2.

We compute cAcAcA:

cA=−2[2−130−412−25−301]=[(−2)⋅2(−2)⋅−1(−2)⋅3(−2)⋅0(−2)⋅(−4)(−2)⋅1(−2)⋅2(−2)⋅(−2)(−2)⋅5(−2)⋅(−3)(−2)⋅0(−2)⋅1]=[−42−608−2−44−1060−2]\begin{align*} cA &= -2 \begin{bmatrix} 2 & -1 & 3 & 0 \\ -4 & 1 & 2 & -2 \\ 5 & -3 & 0 & 1 \end{bmatrix} \\ &= \begin{bmatrix} (-2) \cdot 2 & (-2) \cdot -1 & (-2) \cdot 3 & (-2) \cdot 0 \\ (-2) \cdot (-4) & (-2) \cdot 1 & (-2) \cdot 2 & (-2) \cdot (-2) \\ (-2) \cdot 5 & (-2) \cdot (-3) & (-2) \cdot 0 & (-2) \cdot 1 \end{bmatrix} \\ &= \begin{bmatrix} -4 & 2 & -6 & 0 \\ 8 & -2 & -4 & 4 \\ -10 & 6 & 0 & -2 \end{bmatrix} \\ \end{align*}cA​=−2​2−45​−11−3​320​0−21​​=​(−2)⋅2(−2)⋅(−4)(−2)⋅5​(−2)⋅−1(−2)⋅1(−2)⋅(−3)​(−2)⋅3(−2)⋅2(−2)⋅0​(−2)⋅0(−2)⋅(−2)(−2)⋅1​​=​−48−10​2−26​−6−40​04−2​​​

Properties of Scalar Multiplication of Matrices

Just like addition and subtraction of matrices, scalar multiplication also inherits the algebraic properties of regular scalar multiplication.

Closure

For a matrix AAA of size m×nm \times nm×n and for scalars ccc, cAcAcA is also a matrix of size m×nm \times nm×n.

Associativity

For some matrix AAA and for scalars ccc and ddd,

(cd)A=c(dA). (cd)A = c(dA).(cd)A=c(dA).

Multiplicative Identity

For any matrix AAA, 1A=A1A = A1A=A.

Left-Distributivity and Right-Distributivity

For two m×nm \times nm×n matrices AAA and BBB and a scalar ccc,

c(A+B)=cA+cB. c(A + B) = cA + cB.c(A+B)=cA+cB.

Also,

(c+d)A=cA+dA. (c + d)A = cA + dA.(c+d)A=cA+dA.
Previous
Matrix Addition and Subtraction
Next
Matrix Transpose
This website does not collect personal data, does not use cookies, and does not perform any tracking.