Types: N/A
Examples: N/A
Constructions: N/A
Generalizations: N/A

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Algebraic Properties of Matrix-Column-Vector Multiplication

Let matrix ARm×n, let vectors x,yRn×1, and let scalars α,βR. Then, each of the following laws holds true:

  1. Distributivity: A(x+y)=Ax+Ay
  2. Scalar Multiplication: A(αx)=α(Ax)
  3. Linearity: A(αx+βy)=αAx+βAy

Remark. When trying to prove theorems, we want to transform our theorem into the general form of a conditional statement (read if P, then Q).

PantecedentQconsequent

Distributivity

For distributivity, we can say

If ARm×n and x,yRn×1, then A(x+y)=Ax+Ay

Concrete Example

Before proving the general case, let's create a concrete example (not a general proof).

Distributivity

Let m=3 and n=4. Let ARm×n and x,yRn×1.

With our antecedent in mind, we write our matrix

[A]m×n=[a11a12a13a14a21a22a23a24a31a32a33a34]3×4

We can also write our vectors

x=[x1x2x3x4]4×1,y=[y1y2y3y4]4×1

With this information at hand, let's compute our desired result. We want to show

A(xy)expression 1=Ax+Ayexpression 2

Let's analyze each expression.

Expression 1: [A]m×n([x]1×n+[y]1×n)Expression 2: [A]m×n[x]n×1+[A]m×n[y]n×1

Some theorems/definitions that could be useful are:

Forward Direction

Let's start with expression 1 and work our way towards expression 2.

A(x+y)expression 1=[a11a12a13a14a21a22a23a24a31a32a33a34]([x1x2x3x4]+[y1y2y3y4])expression 1.1=[a11a12a13a14a21a22a23a24a31a32a33a44]m×n[x1+y1x2+y2x3+y3x4+y4]n×1expression 1.2=k=1n(xk+yk)A(:,k)=(x1+y1)[a11a21a31]k=1+(x2+y2)[a12a22a32]k=2+(x3+y3)[a13a23a33]k=3+(x4+y4)[a14a24a34]k=4

Notice how our sum is composed of 4.1 Scalar-Vector Multiplication products. Consider

(x1+y1)[a11a21a31]=[(x1+y1)a11(x1+y1)a21(x1+y1)a31]=[x1a11+y1a11x1a21+y1a21x1a31+y1a31]=[x1a11x1a21x1a31]+[y1a11y1a21y1a31]=x1[a11a21a31]+y1[a11a21a31]
Conjecture

(α+β)a=αa+βa

Note: For conjectures, we either prove in general or quote a result (for math heads we prove every result ourselves).

Going back to our original forward direction problem, we can distribute our conjecture across where we stopped previously.

=x1[a11a21a31]+y1[a11a21a31]+x1[a12a22a32]+y1[a12a22a32]+x1[a13a23a33]+y1[a13a23a33]+x1[a14a24a34]+y1[a14a24a34]

Backward Direction

Now, lets start from expression 2 and work backwards towards expression 1.

=Ax+Ay=k=1nxkA(:,k)+k=1nykA(:,k)=x1[a11a21a31]+y1[a11a21a31]+x1[a12a22a32]+y1[a12a22a32]+x1[a13a23a33]+y1[a13a23a33]+x1[a14a24a34]+y1[a14a24a34]

We are able to write our sum as such because vector addition is commutative. If we generalize our solution, we will see that

If ARm×n and x,yRn×1, then A(x+y)=Ax+Ay

Scalar Multiplication

For this theorem, we might state

If ARm×n,xRn×1, and αR,P then A(αx)=α(Ax)Q

Some theorems/definitions that could be useful for proving this:

We want to prove that two vectors are equal. We know that two vectors are equal if the each entry is to the corresponding entry of the other vector. A way we can get the entry-by-entry definition of matrix-column-vector multiplication is through the inner product definition. With these definitions in mind, let's formalize our proof.

\begin{proof}
Suppose that ARm×n, xRn, and αR. For any i=1,2,,m, we want to show that entry(i,1)(A(αx))=entry(i,1)(α(Ax)). Consider

entry(i,1)(A(ax))=(A(i,:))T(αx)[ai1ai2ain][ax1ax2axn]=ai1(αx1)+ai2(αx2)++ain(αxn)=α(ai1+ai2++ain)=α((A(i,:))Tx)=entry(i,1)(α(Ax))

This is exactly what we wanted to show.

\end{proof}