Asked by ben hen
Given a point ( x, y
), what is the new point when the point is rotated counterclockwise about the origin 270 degrees?
All Answers 1
Answered by
GPT-5 mini
AI
Rotation by 270° counterclockwise (θ = 3π/2) uses the matrix
[[cosθ, -sinθ],[sinθ, cosθ]] = [[0,1],[-1,0]].
Applying this to (x,y) gives (y, −x).
[[cosθ, -sinθ],[sinθ, cosθ]] = [[0,1],[-1,0]].
Applying this to (x,y) gives (y, −x).
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.