The difference is that the vector is an algebraic object that may or may not be specified as a set of coordinates in some space. (thanks bungalobill for correcting my sloppiness).
A point is just a point given by coordinates. As a rule, you can combine the two. If you are given a set of coordinates and are told that they make up a “point” without additional information (base selection, etc.), you can simply transfer this set of numbers back and legitimately state that you have created a vector.
The biggest difference between the two is that it makes no sense to do what you can do with another. For example,
- You can add vectors: <1 2 3> + <3 2 1> = <4 4 4>
You can multiply (or scale) a vector by a number (usually called a scalar) 2 * <1 1 1> = <2 2 2>
You may ask how far two points are from each other: d ((1, 2, 3), (3, 2, 1) = sqrt ((1 - 3) 2 + (2 - 2) 2 + (3 - 1 ) 2 ) = sqrt (8) ~ = 2.82
A good intuitive way to think about the association between a vector and a point is that the vector tells you how to get from the origin (that is, one point in space to which we assign the coordinates (0, 0, 0)) to its connected point.
If you translate your coordinate system, you will get a new vector for the same point. Although the coordinates that make up this point will go through the same translation, so there should be a fairly simple connection between them.
Similarly, if you rotate the coordinate system or apply some other transformation (for example, a shift), then the coordinates and the vector associated with the point will also change.
It is also possible that the vector is something else entirely, for example, a bounded function on the interval [0, 1] is a vector, because you can multiply it by a real number and add it to another function on the interval and it satisfies certain requirements (namely axioms of the vector of space). In this case, we think about the presence of one coordinate for each real number x in [0, 1], where the value of this coordinate is f (x). So, this is the simplest example of an infinite-dimensional vector space.
There are all kinds of vector spaces and the concept that the vector is a “point and direction” (or that it should be) is actually quite empty.
aaronasterling
source share