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

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

Row Vector Matrix Multiplication via Linear Combinations

Find the vector b=xTA where

A=[343176012252]4×3,x=[2153]4×1

Solution. To start, let's recall our definition of 10.4 Row-Vector-Matrix Multiplication via Linear Combinations.

[b]1×n=[xT]1×4[A]4×3

Because our modeling matrix shows up on the right, we're going to slice our matrix into row partitions. We then take the 6.1 Linear Combination of Vectors.

b=xTA=x1A(1,:)+x2A(2,:)+x3A(3,:)+x4A(4,:)=x1[a11a12a13]+x2[a21a22a23]+x3[a31a32a33]+x4[a41a42a43]=(2)[343]+(1)[176]+(5)[012]+(3)[252]=[686]+[176]+[0510]+[6156]=[198]