Telling if three vectors in the same plane? Help

  • Thread starter Thread starter samh
  • Start date Start date
  • Tags Tags
    Plane Vectors
AI Thread Summary
Three vectors in R3 are coplanar if they are linearly dependent, meaning one vector can be expressed as a combination of the others. A common method to determine coplanarity is using the scalar triple product, where the result is zero if the vectors are in the same plane. The example provided illustrates that if two vectors add up to the third, they are dependent and thus coplanar. Additionally, the determinant of a matrix formed by the vectors can also indicate coplanarity; a zero determinant signifies that the vectors lie on a common plane. Understanding these concepts is essential for grasping vector relationships in three-dimensional space.
samh
Messages
46
Reaction score
0
Telling if three vectors in the same plane?? Help!

Hey guys I've got a question about vectors that's confusing me. Here's what my book says:

Two vectors are called independent in R2 if they are not multiples of each other. Three vectors in R3 are called independent if they are not in the same plane.

Example: (1,0,1), (0,1,0) and (1,1,1) are not independent (since (1,0,1) + (0,1,0) = (1,1,1)).

I don't understand the example... How do you tell if three vectors in R3 are in the same plane? Why does adding the first two and getting (1,1,1) show this? I'm real rusty on all this plane stuff... Any help is appreciated.
 
Physics news on Phys.org
Well, if one of them is NOT in the same plane formed by the other two, then you can't completely describe that vector in terms of the other two. The simplest example is the standard unit vectors in cartesian coordinates : i, j and k. You can never express k as c1i+c2j, for contants c1 and c2. Such vectors are known as linearly independent.

Think of it this way, when you add two vectors (or scalar multiples of them), the resulting vector goes from the "tail" of one to the "head" of the other. The "tail", "head" and the point where these two vectors meet all form a unique plane.
 
samh said:
I don't understand the example... How do you tell if three vectors in R3 are in the same plane? Why does adding the first two and getting (1,1,1) show this? I'm real rusty on all this plane stuff... Any help is appreciated.
Any three given vectors <x1,y1,z1>, <x2,y2,z2>, <x3,y3,z3>
are coplanar iff <x1,y1,z1> \times <x2,y2,z2> • <x3,y3,z3> = 0
 
Last edited:
Three vectors are in the same plane (coplanar) if and only if they are "dependent". That is, there is some linear combination Av1+ Bv2+ Cv3= 0 with not all of A, B, C equal to 0. Equivalently, one vector can be written as a linear combination of the other two.

Bomba923's last post "Any three given vectors <x1,y1,z1>, <x2,y2,z2>, <x3,y3,z3> are coplanar iff <x1,y1,z1>\times<x2,y2,z2> • <x3,y3,z3> = 0" is a good way of checking. Even more simply that calculation can be written as a single determinant:
\left|\begin{array}{ccc}x_1 &amp; y_1 &amp; z_1 \\ x_2 &amp; y_2 &amp; z_2 \\ x_3 &amp; y_3 &amp; z_3 \end{array}\right|
 
(adding to the last previous two posts...)

that HallsofIvy's determinant (and bomba923's scalar triple product) can be intrepreted as the volume enclosed by a box (parallelepiped) with sides given by your three vectors. If that volume is zero, the box is "degenerate"... and the three vectors lie on a common plane.
 
robphy said:
(adding to the last previous two posts...)

that HallsofIvy's determinant (and bomba923's scalar triple product) can be intrepreted as the volume enclosed by a box (parallelepiped) with sides given by your three vectors. If that volume is zero, the box is "degenerate"... and the three vectors lie on a common plane.
Good point!
 
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks
Back
Top