I have something starting at (50, 10) it then rotates

Yesenia Sherman

Yesenia Sherman

Answered question

2022-06-29

I have something starting at (50, 10) it then rotates counter clockwise by 30 degrees, around the point at (50, 0), essentially mapping out an arc of a circle. How do I find the point it now lies on?

Answer & Explanation

Colin Moran

Colin Moran

Beginner2022-06-30Added 21 answers

You apply a rotation matrix to the vector from the center of rotation to the point that is rotating. Here the vector is ( 50 50 , 10 0 ) = ( 0 , 10 ). Then you multiply that by [ cos θ sin θ sin θ cos θ ] , getting
[ cos θ sin θ sin θ cos θ ] [ 0 10 ] = [ 10 sin 30 10 cos 30 ] = [ 5 5 3 ]
and add that to the center, getting ( 50 + 5 , 0 + 5 3 ) = ( 55 , 5 3 )

Do you have a similar question?

Recalculate according to your conditions!

New Questions in High school geometry

Ask your question.
Get an expert answer.

Let our experts help you. Answer in as fast as 15 minutes.

Didn't find what you were looking for?