| 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?
|
| 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 |
|
|
|
| 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 | ||