Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

 

Can anyone please explain the the difference between a vector and a
matrix?
Asked
5 years, 7 months ago Active
8 months ago Viewed
8k times

I just took Calculus 3 last semester at my University and got comfortable with the idea of
vectors, vector-valued functions, and basic vector operations like the dot and cross products.
11
This semester, I'm taking Differential Equations and we seem to be throwing around the terms
"vector" and "matrix" as if they're interchangeable, especially now that we're studying systems
of first-order differential equations. Additionally, there's mention of "vector spaces" which
4 haven't been clearly explained to me.

The last time I dealt with matrices was in Algebra II in the 9th grade about 4 years ago, so
there's quite a disconnect here. I feel like if I had taken Linear Algebra, this course would have
been easier since my professor keeps saying "if you've taken Linear Algebra, then this should
be familiar to you" which isn't exactly helpful.

Can anyone help me bridge these gaps in my understanding?

linear-algebra matrices ordinary-differential-equations vectors terminology

Share Cite Follow edited Nov 14 '17 at 3:34 asked Nov 19 '15 at 13:18
hippietrail user280800
407 2 12

6 vector is a skinny matrix.


– Memming
Nov 19 '15 at 13:25

Vector spaces are the main objects of study in linear algebra, so you'll need to study that to understand
the relationship between matrices and vectors. My suggestion: find some short intro to linear algebra
and start working through it.
– user137731
Nov 19 '15 at 13:29

Can you give a more specific example of how the terms "vector" and "matrix" are being used as if they're
interchangeable?
– littleO
Nov 14 '17 at 3:58

3 Answers Active Oldest Votes

Very roughly speaking ...

11 A matrix is a 2-dimensional rectangular array of numbers. If the array has m rows and n
columns, we say that we have a matrix of size m × n .

A vector can be regarded as a special type of matrix. A row vector is a matrix of size 1 × n , and
a column vector is a matrix of size m × 1 .

You probably know how to multiply matrices. Since vectors are just special types of matrices,
you know how to multiply a matrix times a vector. Multiplying by a matrix is often used as a
way to somehow "transform" a vector (to rotate it or mirror it or scale it, for example).

Share Cite Follow edited Oct 7 '20 at 1:06 answered Nov 19 '15 at 13:31
bubba
36.9k 3 46 102

There are canonical bijections:

1
n 1×n n×1
R ≅R ≅R

You can think of an n-component vector as a 1 × n -matrix or as a n × 1 -matrix. People then


like to pretend all the above sets are actually equal.

The advantage of this identification is that matrix multiplication can then be done with vectors
or vectors and matrices without an extra definition.

On the other hand: I pretended "vector" means "tuple". Obviously vector spaces can contain
all sorts of things. In particular, there is always an R-vector space of R matrices. But
m×n

usually people don't call these matrices vectors, as far as I know.

Share Cite Follow edited Nov 19 '15 at 13:34 answered Nov 19 '15 at 13:29
Stefan Perko
11.5k 2 22 56

3 Since the OP doesn't understand matrices and vectors, he (or she) probably won't find "canonical
bijections" very helpful.
– bubba
Nov 28 '15 at 9:35

1 @bubba There is an (I believe) easy explanation of the fact underneath said statement. If the OP finds
your answer more helpful, that's totally fine. But I will leave mine here anyway. Sometimes, I'd rather
make an answer that benefits alot of people, not only the OP.
– Stefan Perko
Nov 28 '15 at 20:57

Vector is 1 dimensional, so it is either only in "column" or "row" form. Matrix is 2 dimensional,


it has both columns and rows and called m*n matrix(m columns and n rows). There is also
0 "list" that includes both vectors and matrices and also other data formats(character formats -
you will need this terminology in R)

Share Cite Follow answered May 15 '19 at 14:11


huseyn rahimov
1

This question already has an accepted answer from 3 years ago, please instead contribute to more
recent questions.
– user635953
May 15 '19 at 14:27

You might also like