The resulting vector b has m entries, one for each row of the matrix A.
Dot Product Relation
The product can be viewed as the dot product of row vectors of the matrix A with the vector x.
This can be formally viewed using transposes:
A = [ a<sub>1</sub> a<sub>2</sub> ... a<sub>m</sub> ]
a<sub>i</sub> is the i-th row vector of A.
The operation A * x = a<sub>1</sub> • x, a<sub>2</sub> • x, ..., a<sub>m</sub> • x*
Example Calculation
Given a matrix A and vector x:
A = [ [-3, 0, 3, 2], [1, 7, -1, 9] ]
x = [2, -3, 4, -1]
Calculation of A * x:
b<sub>1</sub> = -6 + 0 + 12 - 2 = 4
b<sub>2</sub> = 2 - 21 - 4 - 9 = -32
Result: b = [4, -32]*
Interpretation of Matrix-Vector Products
Two interpretations:
Dot Product Interpretation: Each entry of the resulting vector is a dot product of a row vector from A with vector x.
Linear Combination Interpretation: The product A * x can be viewed as a linear combination of the column vectors of A, weighted by the components of vector x.*
Conclusion
Understanding matrix-vector multiplication provides insight into how matrices can transform vectors and the underlying operations involved.