dark_omen
- 9
- 0
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
Thanks
To determine if two vectors, specifically a = <-6, 9, -3> and b = <2, -3, 1>, are parallel, one must check if there exists a scalar c such that a = cb. The discussion emphasizes using the cross product method, defined as a x b = 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). If the result of the cross product is the zero vector, the vectors are parallel.
PREREQUISITESStudents and professionals in mathematics, physics, and engineering who need to understand vector relationships and operations, particularly in the context of parallelism.