Properties of matrix scalar multiplication

Scalar multiplication is a fundamental operation in linear algebra, involving the multiplication of every element within a matrix by a single numerical value, known as a scalar. This operation is defined by several key properties that streamline calculations and interactions between scalars and matrices. For instance, if you have a matrix A=(aamp;b camp;d)A = \begin{pmatrix} a & b \ c & d \end{pmatrix} and a scalar kk, the resulting scalar product is kA=(kaamp;kb kcamp;kd)kA = \begin{pmatrix} ka & kb \ kc & kd \end{pmatrix}.

Key Properties

Here are the essential properties that govern scalar multiplication of matrices:

Distributivity over Matrix Addition:

A scalar can be distributed across the sum of two matrices.

Formula:

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

Condition:

Matrices AA and BB must have the same dimensions.

Example:

Let c=2c=2, A=(1amp;2 3amp;4)A = \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix}, B=(5amp;6 7amp;8)B = \begin{pmatrix} 5 & 6 \ 7 & 8 \end{pmatrix}.

c(A+B)=2((1amp;2 3amp;4)+(5amp;6 7amp;8))=2(6amp;8 10amp;12)=(12amp;16 20amp;24)c(A+B) = 2\left(\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} + \begin{pmatrix} 5 & 6 \ 7 & 8 \end{pmatrix}\right) = 2\begin{pmatrix} 6 & 8 \ 10 & 12 \end{pmatrix} = \begin{pmatrix} 12 & 16 \ 20 & 24 \end{pmatrix}.

cA+cB=2(1amp;2 3amp;4)+2(5amp;6 7amp;8)=(2amp;4 6amp;8)+(10amp;12 14amp;16)=(12amp;16 20amp;24)cA + cB = 2\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} + 2\begin{pmatrix} 5 & 6 \ 7 & 8 \end{pmatrix} = \begin{pmatrix} 2 & 4 \ 6 & 8 \end{pmatrix} + \begin{pmatrix} 10 & 12 \ 14 & 16 \end{pmatrix} = \begin{pmatrix} 12 & 16 \ 20 & 24 \end{pmatrix}.

Distributivity over Scalar Addition:

A sum of two scalars can be distributed over a matrix.

Formula:

(c+d)A=cA+dA(c + d)A = cA + dA

Condition:

cc and dd are scalars, AA is a matrix.

Example:

Let c=2c=2, d=3d=3, A=(1amp;2 3amp;4)A = \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix}.

(c+d)A=(2+3)(1amp;2 3amp;4)=5(1amp;2 3amp;4)=(5amp;10 15amp;20)(c+d)A = (2+3)\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = 5\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = \begin{pmatrix} 5 & 10 \ 15 & 20 \end{pmatrix}.

cA+dA=2(1amp;2 3amp;4)+3(1amp;2 3amp;4)=(2amp;4 6amp;8)+(3amp;6 9amp;12)=(5amp;10 15amp;20)cA+dA = 2\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} + 3\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = \begin{pmatrix} 2 & 4 \ 6 & 8 \end{pmatrix} + \begin{pmatrix} 3 & 6 \ 9 & 12 \end{pmatrix} = \begin{pmatrix} 5 & 10 \ 15 & 20 \end{pmatrix}.

Associativity of Scalar Multiplication:

The order of multiplying a matrix by multiple scalars does not change the result.

Formula:

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

Condition:

cc and dd are scalars, AA is a matrix.

Example:

Let c=2c=2, d=3d=3, A=(1amp;2 3amp;4)A = \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix}.

(cd)A=(23)(1amp;2 3amp;4)=6(1amp;2 3amp;4)=(6amp;12 18amp;24)(cd)A = (2 \cdot 3)\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = 6\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = \begin{pmatrix} 6 & 12 \ 18 & 24 \end{pmatrix}.

c(dA)=2(3(1amp;2 3amp;4))=2(3amp;6 9amp;12)=(6amp;12 18amp;24)c(dA) = 2\left(3\begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix}\right) = 2\begin{pmatrix} 3 & 6 \ 9 & 12 \end{pmatrix} = \begin{pmatrix} 6 & 12 \ 18 & 24 \end{pmatrix}.

Multiplicative Identity Property:

Multiplying a matrix by the scalar 1 leaves the matrix unchanged.

Formula:

1A=A1A = A

Example:

1(1amp;2 3amp;4)=(1amp;2 3amp;4)1 \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix}.

Multiplication by Zero Scalar:

Multiplying a matrix by the scalar 0 results in a zero matrix of the same dimensions.

Formula:

0A=O0A = O (where OO is the zero matrix)

Example:

0(1amp;2 3amp;4)=(0amp;0 0amp;0)0 \begin{pmatrix} 1 & 2 \ 3 & 4 \end{pmatrix} = \begin{pmatrix} 0 & 0 \ 0 & 0 \end{pmatrix}.

Vocabulary

Property

Example

Associative property of multiplication

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

Distributive properties

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

Multiplicative identity property

1A=A1A=A

Multiplicative properties of zero

0A=O0 \cdot A=O

Closure property of multiplication

cAcA is a matrix of the same dimensions as AA.

These properties are essential for simplifying expressions, solving matrix equations, and understanding the linear transformations represented by matrices. Mastering them will build a strong foundation for more advanced topics in linear algebra.