Step 1: Understanding the Concept:
We need to compute the cross product of two composite vectors. Instead of substituting the components immediately, it is more efficient to use the algebraic properties of the cross product (distributivity and anticommutativity) to simplify the expression first.
Step 2: Key Formula or Approach:
Properties of cross product:
1. u × (v + w) = u × v + u × w
2. u × u = 0
3. v × u = -(u × v)
Step 3: Detailed Explanation:
Simplify the expression:(a + 2b) × (3a - b) = a × (3a) - a × b + 2b × (3a) - 2b × b= 3(a × a) - (a × b) + 6(b × a) - 2(b × b)
Since a × a = 0 and b × b = 0:= 0 - (a × b) - 6(a × b) - 0
Using b × a = -(a × b)= -7(a × b)
Now, calculate a × b using the determinant method:
a × b = | i j k | | 1 -2 -2 | | 2 1 2 | = i[(-2)(2) - (-2)(1)] - j[(1)(2) - (-2)(2)] + k[(1)(1) - (-2)(2)]= i(-4 + 2) - j(2 + 4) + k(1 + 4)= -2i - 6j + 5k
Finally, multiply by -7:-7(a × b) = -7(-2i - 6j + 5k)= 14i + 42j - 35k
Step 4: Final Answer:
The result is 14i + 42j - 35k.