What is a Parallel Unit Vector and How is it Calculated?

AI Thread Summary
Parallel unit vectors are derived by dividing a vector by its magnitude, resulting in a vector that retains the original direction but has a length of one. This process ensures that the new vector is a unit vector, which is defined as having a magnitude of one. The discussion clarifies that multiplying or dividing a vector by a scalar maintains its direction, confirming that the resulting unit vector is parallel to the original vector. Algebraically, if a vector is expressed as a multiple of a unit vector, it demonstrates their linear dependence, reinforcing the concept of parallelism. Thus, dividing a vector by its magnitude is essential for obtaining a unit vector that is inherently parallel to the original vector.
I_am_no1
Messages
17
Reaction score
0
What PARALLEL UNIT VECTORS are and Why i got to divide a vector with its value to get a PARALLEL UNIT VECTOR ?
This way
\hat{a} = \stackrel{\rightarrow}{A}
/|\stackrel{\rightarrow}{A}
| ?

I am sure that the answere would be very easy but i am such a . . . ! Please help!
 
Mathematics news on Phys.org
First, we usually don't use the word "value" to denote the magnitude or length of a vector. Just use the phrase "magnitude of a vector" and people will know what you mean.

So your question is why does dividing a vector \vec{V} by its magnitude |\vec V| produce a unit vector \hat V parallel to the original vector?

First understand the parallel part. Whenever your multiply or divide a vector by a number you are simply scaling the vector leaving its direction unchanged. Thus a two-dimensional vector with components (6, 8) is parallel to the vector (3, 4) and has twice the magnitude.

Next understand the unit part. Consider the vector with components (3, 4). Its magnitude is
(3^2 + 4^2)^{1/2} = 5. Hence the vector divided by its magnitude is (3/5, 4/5). The claim is that this vector has unit magnitude. Just check it: [(3/5)^2 + (4/5)^2]^{1/2} = [9/25 + 16/25]^{1/2} = (25/25)^{1/2} = 1.
 
For two vectors to be "parallel" just means they point in the same direction. That's all.

Multiplying by a scalar (such as the magnitude of the vector) does not change the vector's direction, only its magnitude. So there you go.
 
Yes, if P (3,4) then\stackrel{\rightarrow}{OP} = 3\hat{i} + 4\hat{j}
so parallel unit vector of \stackrel{\rightarrow}{OP}, would be \stackrel{\rightarrow}{OR} = \stackrel{\rightarrow}{OP}/|\stackrel{\rightarrow}{OP}|
=(3\hat{i} + 4\hat{j})/\sqrt[]{3^2 + 4^2}
=(3\hat{i} + 4\hat{j})/5
=3/5\hat{i} + 4/5\hat{j}

equation of OP is (x - 3) / (3 - 0) = (y - 4) / (4 - 0)
=>4x = 3y
equation of OR is (x - 3/5) / (3/5 - 0) = (y - 4/5) / (4/5 - 0)
=>20x = 15y
=>4x = 3y
so OP and OR is parallel without any doubt but why we are dividing with its magnitude ? If we divide with 2, 3, 4 or any other number that time also there will be a parallel vector visible, not?
 
Thanks thanks thanks i have solved the problem !
When we divide one vector with its magnitude we get a UNIT VECTOR so \hat{n} = \stackrel{\rightarrow}{A}/|\stackrel{\rightarrow}{A}| and this unit vector must be parallel to \stackrel{\rightarrow}{A}.

So we divide one vector with its magnitude is to calculate a unit vector and automatically they are parallel!
 
is it possible to prove algebraically that dividing any vector by its magnitude results in a parallel unit vector?
 
what does it mean for two vectors to be parallel? one of them can be written as a multible of the other. or in other words, they are linearly dependent, so there exists a nontrivial linear combination equal to zero.

let a be such a vector, and let u be the unit vector acquired as follows u=\frac{a}{|a|}

then it is clear that:


na+mu=0, where n and m are different from zero.

or a=ku, with k=|a|.

so a and u are linearly dependent, or parallel.

it is also clear that u is the unit vector, since |u|=1.
 
2^Oscar said:
is it possible to prove algebraically that dividing any vector by its magnitude results in a parallel unit vector?

Assuming you know that for scalar a and vector A that

| kA | = |k| |A|

apply that to:

( 1/|A|)A
 
2^Oscar said:
is it possible to prove algebraically that dividing any vector by its magnitude results in a parallel unit vector?

Any vector parallel to xi+yj can be written as α(xi+yj)=αxi+αyj where α= scalar

Unit vector means the magnitude of the vector you want is 1

so


\left | \alpha x \hat{i}+ \alpha \hat{j} \right |= \sqrt{(\alpha x)^2 + (\alpha y)^2}=1


So your scalar α works out to be equal to

\alpha = \frac{1}{\sqrt{x^2+y^2}}

this means to obtain a unit vector, you divide the vector by its magnitude
 
Back
Top