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 = \begin{pmatrix} a & b \ c & d \end{pmatrix} and a scalar k, the resulting scalar product is 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 + cB

Condition:

Matrices A and B must have the same dimensions.

Example:

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

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\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

Condition:

c and d are scalars, A is a matrix.

Example:

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

(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\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)

Condition:

c and d are scalars, A is a matrix.

Example:

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

(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\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 = A

Example:

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 = O (where O is the zero matrix)

Example:

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)

Distributive properties

c(A+B)=cA+cB

Multiplicative identity property

1A=A

Multiplicative properties of zero

0 \cdot A=O

Closure property of multiplication

cA is a matrix of the same dimensions as A.

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.