dark_omen Messages 9 Reaction score 0 Thread starter Sep 19, 2006 #1 Okay, so I have two vectors a = <-6, 9, -3> and b = <2, -3, 1>. How can I test to see if these two vectors are parallel or not? Thanks
Okay, so I have two vectors a = <-6, 9, -3> and b = <2, -3, 1>. How can I test to see if these two vectors are parallel or not? Thanks
radou Homework Helper Messages 3,149 Reaction score 8 Sep 19, 2006 #2 Vectors a and b are parallel if there exists a real number c such that a=cb. In your case it is pretty obvious.
Vectors a and b are parallel if there exists a real number c such that a=cb. In your case it is pretty obvious.
dark_omen Messages 9 Reaction score 0 Sep 19, 2006 #3 What if it is not so obvious like the one I presented. Is there another approach to it (cross product of dot product ??) Thanks
What if it is not so obvious like the one I presented. Is there another approach to it (cross product of dot product ??) Thanks
radou Homework Helper Messages 3,149 Reaction score 8 Sep 19, 2006 #4 Think about the definition of the cross product, and see what happens. Btw, just use axb=[tex]det \left(\begin{array}{ccc}\vec{i} & \vec{j} & \vec{k}\\a_{1} & a_{2} & a_{3}\\b_{1} & b_{2} & b_{3}\end{array}\right)[/tex] for a=cb.
Think about the definition of the cross product, and see what happens. Btw, just use axb=[tex]det \left(\begin{array}{ccc}\vec{i} & \vec{j} & \vec{k}\\a_{1} & a_{2} & a_{3}\\b_{1} & b_{2} & b_{3}\end{array}\right)[/tex] for a=cb.