Signed angle in plane
up vote
0
down vote
favorite
What is the formula to compute the signed angle between two vectors $u, vinmathbb{R}^2$ where positive angle is equivalent to a counter-clockwise rotation on the plane
In other words I would like to create a function $angle(u, v)$ where
$$angle(u, v) = -angle(v, u)$$
$$angle(u, v) = -angle(u, -v)$$
$$angle(u, v) = angle(-u, -v)$$
$$angle(u, v) = pi + angle(-u, v)$$
and I want that $angle(e_1, e_2)=frac{pi}{2}$
linear-algebra angle
add a comment |
up vote
0
down vote
favorite
What is the formula to compute the signed angle between two vectors $u, vinmathbb{R}^2$ where positive angle is equivalent to a counter-clockwise rotation on the plane
In other words I would like to create a function $angle(u, v)$ where
$$angle(u, v) = -angle(v, u)$$
$$angle(u, v) = -angle(u, -v)$$
$$angle(u, v) = angle(-u, -v)$$
$$angle(u, v) = pi + angle(-u, v)$$
and I want that $angle(e_1, e_2)=frac{pi}{2}$
linear-algebra angle
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
What is the formula to compute the signed angle between two vectors $u, vinmathbb{R}^2$ where positive angle is equivalent to a counter-clockwise rotation on the plane
In other words I would like to create a function $angle(u, v)$ where
$$angle(u, v) = -angle(v, u)$$
$$angle(u, v) = -angle(u, -v)$$
$$angle(u, v) = angle(-u, -v)$$
$$angle(u, v) = pi + angle(-u, v)$$
and I want that $angle(e_1, e_2)=frac{pi}{2}$
linear-algebra angle
What is the formula to compute the signed angle between two vectors $u, vinmathbb{R}^2$ where positive angle is equivalent to a counter-clockwise rotation on the plane
In other words I would like to create a function $angle(u, v)$ where
$$angle(u, v) = -angle(v, u)$$
$$angle(u, v) = -angle(u, -v)$$
$$angle(u, v) = angle(-u, -v)$$
$$angle(u, v) = pi + angle(-u, v)$$
and I want that $angle(e_1, e_2)=frac{pi}{2}$
linear-algebra angle
linear-algebra angle
edited yesterday
Andrei
10.3k21025
10.3k21025
asked yesterday
gota
394315
394315
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
Just a small observation first, you will have some minor inconsistencies when the angle is either $pi$ or $0$.
To calculate the angle, you can use the $sin$ and $cos$ function, at the same time. Using both will allow you to uniquely define the angle between $-pi$ and $pi$. The cosine of the angle is given by the scalar product:$$ucdot v=|u||v|costheta$$In $mathbb R^2$ you can write the scalar product as $ucdot v=u_xv_x+u_yv_y$.
You get the sine of the angle using cross product $$utimes v=|u||v|sintheta$$
In $mathbb R^2$ you can write the cross product as $utimes v=u_xv_y-u_yv_x$.
Note that the ratio of the cross product and scalar product is the tangent of the angle. But the range of the $arctan$ function is from $-pi/2$ to $pi/2$. Note however that there is a function $mathrm{arctan2}$ or $mathrm{atan2}$ in some programming languages that take the sine and cosine and give you the correct angle. See for example the definition on wikipedia
Then $$angle(u,v)=mathrm{arctan2}(utimes v,ucdot v)$$
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
Just a small observation first, you will have some minor inconsistencies when the angle is either $pi$ or $0$.
To calculate the angle, you can use the $sin$ and $cos$ function, at the same time. Using both will allow you to uniquely define the angle between $-pi$ and $pi$. The cosine of the angle is given by the scalar product:$$ucdot v=|u||v|costheta$$In $mathbb R^2$ you can write the scalar product as $ucdot v=u_xv_x+u_yv_y$.
You get the sine of the angle using cross product $$utimes v=|u||v|sintheta$$
In $mathbb R^2$ you can write the cross product as $utimes v=u_xv_y-u_yv_x$.
Note that the ratio of the cross product and scalar product is the tangent of the angle. But the range of the $arctan$ function is from $-pi/2$ to $pi/2$. Note however that there is a function $mathrm{arctan2}$ or $mathrm{atan2}$ in some programming languages that take the sine and cosine and give you the correct angle. See for example the definition on wikipedia
Then $$angle(u,v)=mathrm{arctan2}(utimes v,ucdot v)$$
add a comment |
up vote
3
down vote
Just a small observation first, you will have some minor inconsistencies when the angle is either $pi$ or $0$.
To calculate the angle, you can use the $sin$ and $cos$ function, at the same time. Using both will allow you to uniquely define the angle between $-pi$ and $pi$. The cosine of the angle is given by the scalar product:$$ucdot v=|u||v|costheta$$In $mathbb R^2$ you can write the scalar product as $ucdot v=u_xv_x+u_yv_y$.
You get the sine of the angle using cross product $$utimes v=|u||v|sintheta$$
In $mathbb R^2$ you can write the cross product as $utimes v=u_xv_y-u_yv_x$.
Note that the ratio of the cross product and scalar product is the tangent of the angle. But the range of the $arctan$ function is from $-pi/2$ to $pi/2$. Note however that there is a function $mathrm{arctan2}$ or $mathrm{atan2}$ in some programming languages that take the sine and cosine and give you the correct angle. See for example the definition on wikipedia
Then $$angle(u,v)=mathrm{arctan2}(utimes v,ucdot v)$$
add a comment |
up vote
3
down vote
up vote
3
down vote
Just a small observation first, you will have some minor inconsistencies when the angle is either $pi$ or $0$.
To calculate the angle, you can use the $sin$ and $cos$ function, at the same time. Using both will allow you to uniquely define the angle between $-pi$ and $pi$. The cosine of the angle is given by the scalar product:$$ucdot v=|u||v|costheta$$In $mathbb R^2$ you can write the scalar product as $ucdot v=u_xv_x+u_yv_y$.
You get the sine of the angle using cross product $$utimes v=|u||v|sintheta$$
In $mathbb R^2$ you can write the cross product as $utimes v=u_xv_y-u_yv_x$.
Note that the ratio of the cross product and scalar product is the tangent of the angle. But the range of the $arctan$ function is from $-pi/2$ to $pi/2$. Note however that there is a function $mathrm{arctan2}$ or $mathrm{atan2}$ in some programming languages that take the sine and cosine and give you the correct angle. See for example the definition on wikipedia
Then $$angle(u,v)=mathrm{arctan2}(utimes v,ucdot v)$$
Just a small observation first, you will have some minor inconsistencies when the angle is either $pi$ or $0$.
To calculate the angle, you can use the $sin$ and $cos$ function, at the same time. Using both will allow you to uniquely define the angle between $-pi$ and $pi$. The cosine of the angle is given by the scalar product:$$ucdot v=|u||v|costheta$$In $mathbb R^2$ you can write the scalar product as $ucdot v=u_xv_x+u_yv_y$.
You get the sine of the angle using cross product $$utimes v=|u||v|sintheta$$
In $mathbb R^2$ you can write the cross product as $utimes v=u_xv_y-u_yv_x$.
Note that the ratio of the cross product and scalar product is the tangent of the angle. But the range of the $arctan$ function is from $-pi/2$ to $pi/2$. Note however that there is a function $mathrm{arctan2}$ or $mathrm{atan2}$ in some programming languages that take the sine and cosine and give you the correct angle. See for example the definition on wikipedia
Then $$angle(u,v)=mathrm{arctan2}(utimes v,ucdot v)$$
answered yesterday
Andrei
10.3k21025
10.3k21025
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3020095%2fsigned-angle-in-plane%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown