Enter the components of two vectors to calculate the projection of one vector onto another.
Vector projection is a fundamental concept in linear algebra and vector mathematics. It involves finding the component of one vector that is parallel to another vector. This guide will explain how to calculate vector projection step by step.
For vectors \(\vec{a}\) and \(\vec{b}\), the projection of \(\vec{a}\) onto \(\vec{b}\) is defined as follows:
Where:
Let's calculate the projection of \(\vec{a} = (3, 4)\) onto \(\vec{b} = (1, 2)\):
\(\vec{a} \cdot \vec{b} = (3 * 1) + (4 * 2) = 3 + 8 = 11\)
|\(\vec{b}\)| = \(\sqrt{1^2 + 2^2} = \sqrt{5}\)
Scalar Projection = \(\frac{\vec{a} \cdot \vec{b}}{|\vec{b}|} = \frac{11}{\sqrt{5}} \approx 4.919\)
Vector Projection = \(\frac{\vec{a} \cdot \vec{b}}{|\vec{b}|^2} \vec{b} = \frac{11}{5} * (1, 2) \approx (2.2, 4.4)\)
This diagram illustrates the vector projection. The blue arrow represents vector \(\vec{a}\), the red arrow represents vector \(\vec{b}\), and the green arrow shows the projection of \(\vec{a}\) onto \(\vec{b}\).