Vector projection is the process of projecting one vector onto another. The projection of vector a onto vector b is given by the formula:
proj_b a = (a 路 b) / (b 路 b) * b
Calculate the Dot Product: Find a 路 b.
Calculate the Magnitude Squared: Find b 路 b.
Apply the Formula: Substitute the values into the projection formula.
Problem 1: Project vector a = (3, 4) onto vector b = (1, 2).
Calculate a 路 b = 31 + 42 = 11.
Calculate b 路 b = 11 + 22 = 5.
Apply the formula:
proj_b a = (11/5) * b = (11/5, 22/5)
Problem 2: Project vector a = (2, 3, 4) onto vector b = (1, 0, 0).
Calculate a 路 b = 21 + 30 + 4*0 = 2.
Calculate b 路 b = 11 + 00 + 0*0 = 1.
Apply the formula:
proj_b a = 2 * b = (2, 0, 0)
Here are a few word problems that require vector projections to solve:
Force on an Object: A force of 10 N is applied at an angle of 30掳 to the horizontal. Find the horizontal component of the force using vector projection.
Boat Crossing a River: A boat is heading directly across a river with a velocity of 5 m/s. The current flows downstream at 3 m/s. Determine the projection of the boat's velocity vector onto the direction of the riverbank.
Shadow Length: A light source is positioned above a hill. If the hill is represented by a vector and the light source by another, find the projection of the light vector onto the hill vector to determine the length of the shadow cast.
Work Done: A worker pushes a crate with a force vector of 15 N at an angle of 45掳 to the direction of motion. Calculate the work done by finding the projection of the force vector onto the direction of motion.