PDA

View Full Version : Vector Magnitude symbols?


CinderBlockFist
Sep18-04, 04:19 PM
when you use these symbols | |, does that mean absolute value of the vector size (since it is same as absolute value symbols)? Or do they just have a different meaning, that we just write the same symbols. So |U| automatically implies just the magnitude of U?

Also, what is a unit vector e used for? Why do we need to multiply a vector U by this unit vector? If the problem provides me w/ an arrow and vector U = 50 Newtons. Why do I need to multiply it by e? I dont gett it.

jcsd
Sep18-04, 04:25 PM
Yes |U| (sqrt(<U,U>)) is the magitude or length of a vector and is therefore a scalar. The unit vectors form basis which allows you to define U in terms of scalars (it's components in that basis).

CinderBlockFist
Sep18-04, 04:27 PM
So the unit vector e is used to break up the vector into components? What if the vector U is given only in vector ie. 50 newtons w/out any coordinates? BTW thanks for the response

Galileo
Sep18-04, 04:30 PM
Yes, |\vec U| is just the magnitude of the vector \vec U, it's just a (positive) number. (Remember, vectors have both magnitude and direction).
When you're only interested in the magnitude, you use |\vec U|.
In mathematics it's more commonly called the 'length' or the 'norm' of the vector and written ||\vec U||.

Likewise, when you are not interested in the magnitude but only in the direction of the vector, use the unit vector of \vec U. It's a vector with length 1 and points in the direction of \vec U.
Every vector \vec U can be written as \vec U=|\vec U|\vec e, where |\vec U| is the magnitude of the vector and \vec e is the unit vector in the direction of \vec U.

jcsd
Sep18-04, 04:31 PM
The unit vector in the direction of U is U/|U|.

CinderBlockFist
Sep18-04, 04:38 PM
Thanks guys