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

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

Using Outer Product to Generate Matrix

Let's generate the matrix using an 9.1 Outer Product of Vectors.

T=[0000000000030000200004000]5×5

Solution. To generate the 5×5 matrix using an outer product, we first need to find the 1×5 and 5×1 vectors that we can multiply to give us our values in their corresponding spots within the matrix T2.

T32=3T42=2T52=4

Notice how all these values are in column 2. We can organize the column 2 values into a 5×1 3.1 Column Vector

c=[00324]

To create a 5×5 matrix from this, we need to multiply c with the 4.4 Transpose of a Vector.

r=[01000]rT=[01000]

We simply multiply the column vector c and the row vector rT, also known as taking the 9.1 Outer Product of Vectors.

crT=[00324][01000]=[0000000000030000200004000]5×5

Our final matrix is equal to T.


Why do we use column vectors?

The reason we use two column vectors with one of them transposed instead of just being given a row vector is because paper is longer than it is wide. It is much easier to write downwards than across the page. Column vectors are also easier to read because we read English from left to right.