New Reply

How does a matrix times a vector yield a vector?

 
Share Thread Thread Tools
Jun25-12, 01:31 PM   #1
 

How does a matrix times a vector yield a vector?


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?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Jun25-12, 01:44 PM   #2
 
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,

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

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

[tex]\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[/tex]

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.
Jun25-12, 09:02 PM   #3
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
Retired Staff Staff Emeritus
Quote by vanmaiden View Post
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.
New Reply

Tags
matrix, multiplication, vector
Thread Tools


Similar Threads for: How does a matrix times a vector yield a vector?
Thread Forum Replies
Linear Algebra when to write matrix as a col. vector vs a row vector Calculus & Beyond Homework 1
How to evaluate gradient of a vector? or del operator times a vector General Physics 1
Can a matrix be a vector? Calculus & Beyond Homework 9
matrix .* vector? Math & Science Software 3
Can all vector fields be described as the vector Laplacian of another vector field? Calculus 5