How could I determine whether vectors P<-2,7,4>,Q<-4,8,1>, and R<0,6,7> are

maliaseth0

maliaseth0

Answered question

2022-01-24

How could I determine whether vectors P<2,7,4>,Q<4,8,1>,andR<0,6,7> are all in the same plane?

Answer & Explanation

Mazzuranavf

Mazzuranavf

Beginner2022-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:
[274481067]
[274067067]R22R1
[274067000]R3+R2
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:
A(B×C)
=A[ijkb1b2b3c1c2c3]
=[a1a2a3b1b2b3c1c2c3]=|M|
=det|M|
So, we can just find the determinant of the vectors. If the determinant (volume of the parallelepiped) is zero, then the vectors are coplanar:
[274481067]
=2[8(7)1(6)]7[4(7)1(0)]+4[4(6)8(0)]
=2[50]7[28]+4[24]
=100+19696
=0
And we do have a 0 determinant, so they are coplanar, again.
Bottisiooq

Bottisiooq

Beginner2022-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 N1=P×R then do it for another 2 vectors, say N2=Q×R. If all 3 are coplanar, then N1×N2 or (P×R)×(Q×R) will be zero. I'm sure there are some identities that will convert this close to the scalar triple product!

Do you have a similar question?

Recalculate according to your conditions!

New Questions in Linear algebra

Ask your question.
Get an expert answer.

Let our experts help you. Answer in as fast as 15 minutes.

Didn't find what you were looking for?