How could I determine whether vectors P<−2,7,4>,Q<−4,8,1>,andR<0,6,7> are all in the same plane?
maliaseth0
Answered
2022-01-24
How could I determine whether vectors are all in the same plane?
Answer & Explanation
Mazzuranavf
Expert
2022-01-25Added 10 answers
The first way is to use linear algebra. If a matrix is dependent, then the vectors are coplanar. So, you need to try reducing the matrix:
The third row is zero, so the matrix is dependent and therefore the vectors are coplanar.
The second way is to use the scalar triple product. One interpretation of this product is that it is the volume of a parallelepiped formed by the vectors. If the volume is zero, then the vectors must be coplanar. Here is a simplification of the scalar triple product:
So, we can just find the determinant of the vectors. If the determinant (volume of the parallelepiped) is zero, then the vectors are coplanar:
And we do have a 0 determinant, so they are coplanar, again.
Bottisiooq
Expert
2022-01-26Added 9 answers
If this is all hard to wrap your head around, you can do it the long way. The cross product will find the normal between 2 vectors. So compute the normal between 2 of the vectors, say then do it for another 2 vectors, say . If all 3 are coplanar, then or will be zero. I'm sure there are some identities that will convert this close to the scalar triple product!