Chapter 1: Vectors, Lines and Planes
Section 1.5: Applications of Vector Products
Example 1.5.14
If A≠0, under what conditions on B and C can A×B=A×C not imply that B=C?
Solution
Mathematical Solution
Figure 1.5.14(a) illustrates an example where A×B=A×C but B≠C. The vectors A, B, and C must necessarily lie in the same plane and A must be to the right (or left) of both B and C.
The following analysis is the basis for constructing any such example.
Start with vectors A, B, C, respectively given by
a1a2a3,b1b2b3,c1c2c3
Figure 1.5.14(a) A×B=A×C but B≠C
For A×B=A×C to hold, the following three equations must likewise hold.
a2⁢b3−a3⁢b2
= a2⁢c3−a3⁢c2
−a1⁢b3+a3⁢b1
= −a1⁢c3+a3⁢c1
a1⁢b2−a2⁢b1
= a1⁢c2−a2⁢c1
Depending on which component of A is nonzero, there are three solutions for B, namely,
B1=b1a2a1(b1−c1)+c2a3a1(b1−c1)+c3, B2=a1a2(b2−c2)+c1b2a3a2(b2−c2)+c3, B3=a1a3(b3−c3)+c1a2a3(b3−c3)+c2b3
If a1≠0, the vector B1 satisfies A×B1=A×C. In order that B1≠C, it is necessary that b1≠c1 and at least one of a2 and a3 be nonzero. Any vector B1 satisfying those conditions will satisfy A×B1=A×C and will not equal C.
A similar analysis can be made for each of the other two cases.
The vectors shown in Figure 1.5.14(a), namely, A, B, C, and A×B (or A×C) are respectively
123,13235,127,8−40
The solution for B was obtained from B3 after choosing A and C arbitrarily, and setting b3=5.
An alternate, but less productive, approach to this example equates the lengths of the cross products, so that A B sinθ1 = A C sinθ2, where θ1 is the angle between A and B, and θ2 is the angle between A and C. All that can be determined from this approach is
B∥C∥ = sinθ2sinθ1
Maple Solution - Interactive
Initialize
Enter A as per Table 1.1.1.
Context Panel: Assign to a Name≻A
a1,a2,a3→assign to a nameA
Enter B as per Table 1.1.1.
Context Panel: Assign to a Name≻B
b1,b2,b3→assign to a nameB
Enter C as per Table 1.1.1.
Context Panel: Assign to a Name≻C
c1,c2,c3→assign to a nameC
Equate corresponding components of the vectors A×B and A×C
Write the sequence of cross products and press the Enter key.
Context Panel: Equate
Context Panel: Solve≻Solve for Variables≻b[2],b[3]
Context Panel: Assign to a Name≻S[1]
A×B,A×C
→equate
a2⁢b3−a3⁢b2=a2⁢c3−a3⁢c2,−a1⁢b3+a3⁢b1=−a1⁢c3+a3⁢c1,a1⁢b2−a2⁢b1=a1⁢c2−a2⁢c1
→solve (specified)
b2=a1⁢c2+a2⁢b1−a2⁢c1a1,b3=a1⁢c3+a3⁢b1−a3⁢c1a1
→assign to a name
S1
Obtain the vector B that corresponds to this solution
Expression palette: Evaluation template
Context Panel: Evaluate and Display Inline
Type in as B1, a factored form of the vector B
Bx=a|f(x)S1 =
B1=b1a2a1(b1−c1)+c2a3a1(b1−c1)+c3
Cyclically permute the indices in B1 to obtain alternate forms of the vector B
B2=a1a2(b2−c2)+c1b2a3a2(b2−c2)+c3
B3=a1a3(b3−c3)+c1a2a3(b3−c3)+c2b3
Maple Solution - Coded
Install the Student MultivariateCalculus package.
withStudent:-MultivariateCalculus:
Define the vectors A, B, and C.
A,B,C≔a1,a2,a3,b1,b2,b3,c1,c2,c3:
Apply the CrossProduct and Equate commands.
q≔EquateCrossProductA,B,CrossProductA,C
Solve for B under the assumptions that a1≠0, a2≠0, or a3≠0
Apply the solve command.
S1≔solveq,b2,b3;S2≔solveq,b1,b3;S3≔solveq,b1,b2
Obtain the vector B that corresponds to each solution
Apply the eval command.
Type in a factored form of each vector.
evalB,S1 =
evalB,S2 =
evalB,S3 =
<< Previous Example Section 1.5 Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
Download Help Document