Skip to content
Related Articles
Open in App
Not now

Related Articles

Vector Projection Formula

Improve Article
Save Article
  • Last Updated : 29 Dec, 2022
Improve Article
Save Article

A vector is a two-dimensional object that has magnitude as well as direction. A vector can be seen geometrically as a directed line segment with an arrow indicating the vector’s direction and a length equal to the vector’s magnitude. From the tail to the head is the direction of the vector. Two vectors are the same if they have the same magnitude and direction. This means that if we translate a vector to a new point (without rotating it), the vector we derive is the same as the one that we started with.

vectorprojection

 

Projection Vector

The length of a given vector’s shadow cast over another vector is the vector projection of one vector over another vector. It’s calculated by multiplying the magnitude of the two vectors by the cosecant of the angle between them. A scalar value is the outcome of a vector projection formula.

Formula

The dot product of vector a and vector b, divided by the magnitude of vector b, is the projection vector formula in vector algebra for the projection of vector an on vector b. The dot product’s result is a scalar value, and the vector b’s magnitude is also a scalar value. As a result, the projection vector answer’s magnitude and argument are both scalar values in the direction of vector b.

Projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

Derivation of Vector Projection

derivationofvectorprojection

 

From the right triangle OAL , cos θ = OL/OA

OL = OA cos θ

⇒ OL = \vec{a}     cos θ

OL is the projection vector of vector a on vector b.

We know, \vec{a}.\vec{b}=|\overrightarrow a||\overrightarrow b|cos θ

\vec{a}.\vec{b}=|\overrightarrow a||\overrightarrow b|cos θ\\ \vec{a}.\vec{b}=|\overrightarrow b|(|\overrightarrow a|cos θ)\\\vec{a}.\vec{b}=|\overrightarrow b|OL

OL = \frac{\vec{a}.\vec{b}}{|b|}

Hence proved.

Sample Problems

Question 1. Find the projection of the vector 4\hat i + 2\hat j + \hat k    and 5\hat i -3\hat j + 3\hat k   .

Solution:

Here, \vec{a}=4\hat i + 2\hat j + \hat k \\\vec{b}=5\hat i -3\hat j + 3\hat k   .

We know, projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

\dfrac{(4.(5) + 2(-3) + 1.(3))}{|\sqrt{5^2 + (-3)^2 + 3^2}|}\\=\dfrac{17}{\sqrt{43}}

Question 2. Find the projection of the vector 5\hat i + 4\hat j + \hat k    and 3\hat i + 5\hat j - 2\hat k   .

Solution:

Here, \vec{a}=5\hat i + 4\hat j + \hat k \\\vec{b}=3\hat i + 5\hat j - 2\hat k.

We know, projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

\dfrac{(5.(3) + 4(5) + 1.(-2))}{|\sqrt{3^2 + 5^2 + (-2)^2}|}\\=\dfrac{33}{\sqrt{38}}

Question 3. Find the projection of the vector 5\hat i - 4\hat j + \hat k    and 3\hat i - 2\hat j + 4\hat k   .

Solution:

Here, \vec{a}=5\hat i - 4\hat j + \hat k \\\vec{b}=3\hat i - 2\hat j + 4\hat k.

We know, projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

\dfrac{(5.(3) + ((-4).(-2)) + 1.(4))}{|\sqrt{3^2 + (-2)^2 + (4)^2}|}\\=\dfrac{49}{\sqrt{29}}

Question 4. Find the projection of the vector 2\hat i – 6\hat j + \hat k and 8\hat i – 2\hat j + 4\hat k .

Solution:

Here, \vec{a}=2\hat i - 6\hat j + \hat k \\\vec{b}=8\hat i - 2\hat j + 4\hat k

We know, projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

\dfrac{(2.(8) + ((-6).(-2)) + 1.(4))}{|\sqrt{8^2 + (-2)^2 + (4)^2}|}\\=\dfrac{32}{\sqrt{84}}

Question 5. Find the projection of the vector 2\hat i – \hat j + 5\hat k and 4\hat i – \hat j + \hat k.

Solution:

Here, \vec{a}=2\hat i - \hat j + 5\hat k \\\vec{b}=4\hat i - \hat j + \hat k.

We know, projection of Vector a on Vector b = \frac{\vec{a}.\vec{b}}{|b|}

\dfrac{(2.(4) + ((-1).(-1)) + 5.(1))}{|\sqrt{4^2 + (-1)^2 + (1)^2}|}\\=\dfrac{14}{\sqrt{18}}


My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!