Question:medium

Two friends while flying kites from different locations, find the strings of their kites crossing each other. The strings can be represented by vectors \( \mathbf{a} = 3 \hat{i} + \hat{j} + 2 \hat{k} \) and \( \mathbf{b} = 2 \hat{i} - 2 \hat{j} + 4 \hat{k} \). Determine the angle formed between the kite strings. Assume there is no slack in the strings.

Show Hint

The angle between two vectors can be found using the formula \( \cos \theta = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}| |\mathbf{b}|} \), where \( \mathbf{a} \cdot \mathbf{b} \) is the dot product and \( |\mathbf{a}| \) and \( |\mathbf{b}| \) are the magnitudes of the vectors.
Show Solution

Solution and Explanation

To determine the angle \( \theta \) between vectors \( \mathbf{a} \) and \( \mathbf{b} \), the formula used is: \[ \cos \theta = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}| |\mathbf{b}|} \] First, calculate the dot product \( \mathbf{a} \cdot \mathbf{b} \): \[ \mathbf{a} \cdot \mathbf{b} = (3)(2) + (1)(-2) + (2)(4) = 6 - 2 + 8 = 12 \] Next, calculate the magnitudes of \( \mathbf{a} \) and \( \mathbf{b} \): \[ |\mathbf{a}| = \sqrt{3^2 + 1^2 + 2^2} = \sqrt{9 + 1 + 4} = \sqrt{14} \] \[ |\mathbf{b}| = \sqrt{2^2 + (-2)^2 + 4^2} = \sqrt{4 + 4 + 16} = \sqrt{24} \] Substitute these values into the cosine formula: \[ \cos \theta = \frac{12}{\sqrt{14} \times \sqrt{24}} = \frac{12}{\sqrt{336}} = \frac{12}{\sqrt{336}} \approx \frac{12}{18.33} \approx 0.654 \] Therefore, \( \theta \approx \cos^{-1}(0.654) \approx 60^\circ \).
Was this answer helpful?
0