I am having some trouble finding parallel vectors because of floating point precision. How can I determine if the vectors are parallel with some tolerance?

I also need a check for orthogonality with tolerance.

link|improve this question

55% accept rate
Which Programming language do you use and how do you code your vectors in that language – yunzen Sep 27 '11 at 16:41
I am guessing I just need to round the components to the desired precision – Josh C. Sep 27 '11 at 16:45
This is c#, and the vector is written with an x and a y. – Josh C. Sep 27 '11 at 16:46
feedback

2 Answers

up vote 2 down vote accepted

For vectors v1 and v2 check if they are orthogonal by

abs(scalar_product(v1,v2)/(length(v1)*length(v2))) < epsilon

where epsilon is small enough. Analoguously you can use

scalar_product(v1,v2)/(length(v1)*length(v2)) > 1 - epsilon

for parallelity test and

scalar_product(v1,v2)/(length(v1)*length(v2)) < -1 + epsilon

for anti-parallelity.

link|improve this answer
That's right, and to check being parallel, you'd check to see if the left-hand-side expression was 1.0, rather than 0.0. That is you'd see if the difference from 1.0 was less than epsilon. In general you're comparing that expression with the cosine of the desired angle, since that expression is the cosine of the angle between the vectors. – Sean Owen Sep 27 '11 at 16:45
To check for parallelity using scalar_product(v1,v2)/(length(v1)*length(v2)) > 1 - epsilon, should I take the abs of the left hand side? – Josh C. Sep 27 '11 at 16:55
@JoshC. It depends. If you take the absolute value also vectors pointing exactly opposite will be considered parallel. Then instead you can also write abs(1-scalar_product/lengths)<epsilon. – Howard Sep 27 '11 at 16:56
@Howard, ok, but where do I send the roses, my love? – Josh C. Sep 27 '11 at 16:58
@Howard How can I know if two line segments are near collinear? – Josh C. Apr 10 at 22:39
feedback

If you have 3D vectors the answer is simple. Compute the cross product and if it is nearly zero, your vectors are nearly parallel: http://mathworld.wolfram.com/ParallelVectors.html

For 2d vectors you can convert them into 3D vectors just by adding a coordinate with zero (1;2) => (1;2;0), (4; 5.6) => (4; 5.6; 0) and so on

Two vectors are orthogonal or perpendicular, if there dot product ist zero: http://mathworld.wolfram.com/CrossProduct.html

-edit http://mathworld.wolfram.com/Perpendicular.html

link|improve this answer
And, for orthogonality? – Josh C. Sep 27 '11 at 16:47
I edited my post, wrong link – yunzen Sep 27 '11 at 17:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.