How does a matrix times a vector yield a vector?

  • Context: High School 
  • Thread starter Thread starter vanmaiden
  • Start date Start date
  • Tags Tags
    Matrix Vector Yield
Click For Summary
SUMMARY

Matrix-vector multiplication is defined such that a vector "x" with the same number of elements as the columns in matrix "A" results in a vector "b". This process utilizes dot products and basis vectors, allowing for a compact representation of linear transformations. Specifically, when multiplying a matrix with "n" rows and "m" columns by a vector treated as an "m" by "1" matrix, the resulting product is an "n" by "1" matrix, which is a vector. This definition clarifies that the operation is a linear transformation rather than traditional multiplication.

PREREQUISITES
  • Understanding of matrix dimensions and multiplication rules
  • Familiarity with dot products and linear operators
  • Knowledge of basis vectors in vector spaces
  • Basic concepts of linear algebra
NEXT STEPS
  • Study the properties of linear transformations in linear algebra
  • Learn about the geometric interpretation of matrix-vector multiplication
  • Explore the relationship between matrices and systems of linear equations
  • Investigate the applications of dot products in various fields
USEFUL FOR

Students of linear algebra, mathematicians, computer scientists, and anyone interested in understanding the fundamentals of matrix operations and their applications in various disciplines.

vanmaiden
Messages
101
Reaction score
1
The title pretty much sums up my quandary. I'm confused as to how a vector "x" with the same number of elements as columns in matrix "A" could yield a vector "b" when multiplied together. I mean, what's stopping "b" from being a matrix instead?
 
Physics news on Phys.org
This is just how matrix-vector mulitplication is defined.

If you're familiar with dot products and such, perhaps this explanation will give you a better understanding of what's going on. Consider the matrix,

A = \begin{pmatrix} 3 & 4 & 2 \\ -1 & 7 & 6 \\ 9 & -5 & -8\end{pmatrix}

This describes a linear operator which can be expressed in terms of dot products and basis vectors. Namely, for any vector a,

\underline A(a) = [(3e_1 + 4 e_2 + 2 e_3) \cdot a]e_1 + [(-e_1 + 7 e_2 + 6 e_3) \cdot a]e_2 + [(9e_1 - 5 e_2 - 8 e_3) \cdot a]e_3

Matrix-vector multiplication has been defined in such a way to make this series of dot products easy to quickly evaluate and to make the components of all these various vectors easy to write down in a small space. Nevertheless, this is an entirely equivalent description of what's happening. It's not really "multiplication" at all. It's a linear operator--it's more like a function.
 
vanmaiden said:
The title pretty much sums up my quandary. I'm confused as to how a vector "x" with the same number of elements as columns in matrix "A" could yield a vector "b" when multiplied together. I mean, what's stopping "b" from being a matrix instead?
Do you know how matrix multiplication is defined? If so, you should know that multiplying a matrix with "n" rows and "m" columns time a matrix with "m" rows and "s" columns (and if the number of columns in the first matrix is not equal to the number of rows in the second matrix then you can't multiply them) then the product matrix has "n" rows and "s" columns. In particular, if the second "matrix" is actually a vector, written as an "m" by "1" matrix, then the product matrix is an "n" by "1" matrix, a vector.
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 27 ·
Replies
27
Views
3K
  • · Replies 33 ·
2
Replies
33
Views
5K
  • · Replies 15 ·
Replies
15
Views
5K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 7 ·
Replies
7
Views
1K