Does a 3D vector differ from a 3D point tuple (x,y,z) in the context of 3D game mathematics?

If they are different, then how do I calculate a vector given a 3d point?

link|improve this question

better fit to math.stackexchange.com – Svisstack Oct 12 '10 at 10:52
@Svisstack : Not really. This issue has strong ties with programming, and by experience I know the answer is not as trivial as it seems. – Stefano Borini Oct 12 '10 at 11:36
if you need a clear and formal explanation, I remember finding one in this great book I strongly suggest to buy if you have to deal a lot with 3D graphics : amazon.com/Geometric-Computer-Graphics-Morgan-Kaufmann/dp/… – Stefano Borini Oct 12 '10 at 11:38
feedback

7 Answers

up vote 4 down vote accepted

The difference is that a vector is an algebraic object that may or may not be given as the set of coordinates in some space. (thanks to bungalobill for correcting my sloppiness).

A point is just a point given by coordinates. Generally, one can conflate the two. If you are given a set of coordinates, and told that they constitute a 'point' with no further information (choice of basis, etc), then you can just hand that set of numbers back and legitimately claim to have produced a vector.

The largest difference between the two is that it makes no sense to do things to one that you can do to the other. For example,

  1. You can add vectors: <1 2 3> + <3 2 1> = <4 4 4>
  2. You can multiply (or scale) a vector by a number (generally called a scalar) 2 * <1 1 1> = <2 2 2>

  3. You can ask how far apart two points are: 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 a vector tells you how to get from the origin (that one point in space to which we assign the coordinates (0, 0, 0)) to its associated point.

If you translate your coordinate system, then you get a new vector for the same point. Although the coordinates that make up the point will undergo the same translation so it's a pretty easy conflation to make between the two.

Likewise if rotate the coordinate system or apply some other transformation (e.g. a shear), then the coordinates and vector associated to the point will also change.

It's also possible for a vector to be 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 will satisfy certain requirements (namely the axioms of a vectorspace). In this case one thinks of having one coordinate for each real number, x, in [0, 1] where the value of that coordinate is just f(x). So that's the easiest example of an infinite dimensional vector space.

There are all sorts of vector spaces and the notion that a vector is a 'point and a direction' (or whatever it's supposed to be) is actually pretty vacuous.

link|improve this answer
"may or may not consist of a set of coordinates" from Zorn's lemma it follows that a basis always exists so any vector can be represented as a set of coordinates. Also it's true for finite dimensional spaces independently of AC. – ybungalobill Oct 12 '10 at 11:00
@ybungalobill. correct. I was being a little bit sloppy in that I meant "may or may not be given as a set of coordinates". I'll update. – aaronasterling Oct 12 '10 at 11:05
feedback

A vector represents a change from one state to another. To create one, you need two states (in this case, points), and then you subtract the initial state from the final state in order to get the resultant vector.

link|improve this answer
1  
-1: Let V be any vector space. It has at least one element, namely the neutral additive element, which we'll call 0. In what way can it be said that "you need two states to create 0"? – gspr Oct 12 '10 at 11:14
1  
@gspr: The final state is the same as the initial state. – Ignacio Vazquez-Abrams Oct 12 '10 at 11:14
Of course you can interpret a vector as a transition of states, but it's at the very least confusing to state that "you need two states to create a vector". I just created a vector for you without even using the word states. You being able to interpret my vector as a change of states does not make such an interpretation neccessary (or at all common in linear algebra, which I guess is more important here). – gspr Oct 12 '10 at 11:21
Re-reading my comment now I feel I'm coming off sort of aggressive. That's not the intention, so I hope you don't read if that way :-) – gspr Oct 12 '10 at 11:29
@gspr: Not at all. – Ignacio Vazquez-Abrams Oct 12 '10 at 11:31
feedback

Vectors are a more general idea that a point in 3D space.

Vectors can have 2, 3, or n dimensions. They represent many quantities in the physical world (e.g., velocity, force, acceleration) besides position.

A mathematician would say that a vector is a first order tensor that transforms according to this rule:

u(i) = A(i, j)v(j)

You need both point and vector because they are different. A point in 3D space denoting position is a vector, but every vector is not a point in 3D space.

Then there's the computer science notion of a vector as a container - it's an abstraction for an array of values or references. This is a different concept from a mathematician's idea of a vector, because every vector container need not obey the first order tensor transformation law (e.g. a Vector of OrderItems). That's yet another separate idea.

It's important to keep all these in mind when talking about vectors and points.

link|improve this answer
1  
It really, really must be said so as not to confuse the original poster: If the space in question is R^3 with standard structure, then point and vector are just nice names for the same thing! – gspr Oct 12 '10 at 12:20
1  
And I think a mathematician would say: "A vector space is an abelian group with a scalar multiplication satisfying (etc., etc.)". Wikipedia's definition has the whole story (including "the etc, etc" above) at en.wikipedia.org/wiki/Vector_space#Definition - no need to muck around with tensors or concepts from the physical world. Of course, the latter is great for intuition :-) – gspr Oct 12 '10 at 12:25
1  
@duffymo: Nah, you're just repackaging it. Sure, saying "first order tensor" (sort of) avoids algebra until I ask "what's a tensor?". Then you'll have to fire up the machinery of algebra anyway. Thus, in order to just convey the basics, the common definition (as presented for example by Wikipedia) is far more sensible. – gspr Oct 12 '10 at 12:54
1  
@gspr sort of both I suppose although I think that the notion of abelian group is sufficiently elementary that it should be taught in high school: it's not though and most people won't have any idea what it is. It's (at the level necessary to understand its significance to a vector space) orders of magnitude simpler than a tensor though. Also, please don't think that I have any objections to getting fancy ;) – aaronasterling Oct 12 '10 at 12:58
1  
@gspr. I don't think that any harm was done by bringing the notion of a tensor into it (restricted to R^n). I dont think that that the explanation did any good. I also disagree that points and vectors are the same in any context. A vector is an algebraic concept and a point is a topological concept. It can be argued that it does not harm to conflate the two in R^3 but I don't like the idea of telling anybody that they are the same. If they have to hurt their head to understand the difference, then that's probably good for them anyways. – aaronasterling Oct 12 '10 at 13:06
show 10 more comments
feedback

Does a 3D vector differ from a 3D point tuple (x,y,z) in the context of 3D game mathematics?

Traditionaly vector means a direction and speed. A point could be considered a vector from the world orgin of one time step. (even though it may not be considered mathematically pure)

If they are different, then how do I calculate a vector given a 3d point?

target-tower is the common mnemonic.

Careful on your usage of this. The resulting vector is really normal*velocity. If you want to change it into something useful in a game application: you will need to normalize the vector first.

Example: Joe is at (10,0,0) and he wants to go to (10,10,0)
Target-Tower: (10,10,0)-(10,0,0)=(0,10,0)
Normalize the resulting vector: (0,1,0)
Apply "physics": (0,1,0) * speed*elapsed_time < speed = 3 and we'll say that the computer froze for a whole 2 seconds between the last step and this one for ease of computation > =(0,6,0)
Add the resulting vector to Joes current point in space to get his next point in space: ... =(10,6,0)

Normal = vector/(sqrt(x*x+y*y+z*z))

...I think I have everything here

link|improve this answer
feedback

No, there is no difference. Points are vectors. If you like to think of a vector as direction + magnitude, then point is just a vector from the origin of coordinates.

link|improve this answer
Points are not vectors. Multiplying a vector by a constant results in a vector with a different magnitude. Multiplying a point by a constant is meaningless. – Ignacio Vazquez-Abrams Oct 12 '10 at 10:58
@Ignocio: yes it is. Heard of scaling? – ybungalobill Oct 12 '10 at 11:01
2  
@Ignacio: It has a completely precise and well-defined meaning. Wikipedia gives a nice introduction: en.wikipedia.org/wiki/Vector_space#Definition – gspr Oct 12 '10 at 11:24
2  
@Ignacio: Give me a basis and I'll answer your question. – ybungalobill Oct 12 '10 at 11:32
1  
@Ignacio: As it stands, (5,2, -3.4, 8, -2) is meaningless "in a vector space", since I don't know which, and I don't know the basis you're using. In this context, of course, the natural interpretation is the linear combination 5e_1 + 2e_2 - 3.4e_3 + 8e_4 - 2e_5 in R^5 with the standard basis e_1,...,e_5. It's a point in a vector space (in this case R^5), and handy jargon for such an animal is a vector. – gspr Oct 12 '10 at 11:33
show 23 more comments
feedback

Vector is the change in the states. A point is the static point. Two vectors can be parallel or perpendicular. You can have product of two vectors which is a third vector. You can multiply a vector by a constant. You can add two vectors.
All these operations are not allowed on point. So program wise if you think both as a C++ class, there will be many such methods in the vector class but probably only Get and Set for point.

link|improve this answer
-1: See my comment to Ignacio Vazquez-Abrams' answer about a vector being a "change of state". – gspr Oct 12 '10 at 11:14
feedback

A vector is a line, that is a sequence of points but that it can be represented by two points, the starting and the ending point.

If you take the origin as the starting point, then you can describe your vector giving only the ending point.

link|improve this answer
-1: You're describing the concept of a straight line in Euclidean space. It is not the same as a vector. – gspr Oct 12 '10 at 11:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.