1
$\begingroup$

I have a vector A and a point P. My problem is how to find out if point is on the left or right side of vector looking from the point of origin of a vector in direction of it.

  • 0
    Do you know of any ways to measure the angle between the vector $A$ and the vector going from the origin to $P$?2010-12-06
  • 0
    @Jesse yes but only absolute value of it.2010-12-06
  • 0
    Do you know the formula $a \cdot b = |a||b|\cos \theta$ (where $\theta$ is the angle between the vectors)? In case the answer is yes, how can you use this formula to answer your question?2010-12-06
  • 0
    @Fredrik Yes, but in my case this formula is not helpful. Note that $cos( \theta ) = cos(0 - \theta )$.2010-12-06
  • 0
    One way is to perform a rotation $\phi$ so that $\phi(A)$ lies on the x-axis and then inspect the sign of the y-coordinate of $\phi(P)$2010-12-06

2 Answers 2

3

This answer on MO should do it for you.

0

Let $B$ be the vector from the end point of $A$ to $P$, then observe the sign of the coefficient of $A \wedge B$ in a chosen basis. The exact sign is up to $O(2)/SO(2)$, but you only need to distinguish between the two cases, so it's ok :)

UPD: Now that I think about it, letting $B$ be the vector from the starting point of $A$ to $P$ is even neater.