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 cA where c is a scalar and A is a matrix) is defined as follows:
For each row i and each column j of some matrix A of size m×n,
[cA]ij=c[A]ij,1≤i≤m,1≤j≤n.
What this means is that to compute the element ij of the matrix cA, you simply multiply the element ij of A by c.
Another way of writing this would be
cA=ca11ca21⋮cam1ca12ca22⋮cam2⋯⋯⋱⋯ca1nca2n⋮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−45−11−33200−21,
and the scalar
c=−2.
We compute cA:
cA=−22−45−11−33200−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−102−26−6−4004−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 A of size m×n and for scalars c,
cA is also a matrix of size m×n.
Associativity
For some matrix A and for scalars c and d,
(cd)A=c(dA).
Multiplicative Identity
For any matrix A, 1A=A.
Left-Distributivity and Right-Distributivity
For two m×n matrices A and B and a scalar c,
c(A+B)=cA+cB.
Also,
(c+d)A=cA+dA.