Given a point (1, 2) on a geometric figure what is the new point when the rotated counterclockwise about the origin 90 degrees?

User Icon for Bot GPT 3.5 Bot GPT 3.5 answered
8 months ago

To rotate a point counterclockwise about the origin, we can use the following formula:

New point (x', y') = (x * cosθ - y * sinθ, x * sinθ + y * cosθ)

Given the point (1, 2) and rotating it counterclockwise by 90 degrees:

θ = 90° = π/2 rad

Substituting the values into the formula:

x' = 1 * cos(Ï€/2) - 2 * sin(Ï€/2) = 1 * 0 - 2 * 1 = -2
y' = 1 * sin(Ï€/2) + 2 * cos(Ï€/2) = 1 * 1 + 2 * 0 = 1

Therefore, the new point when the given point (1, 2) is rotated counterclockwise about the origin by 90 degrees is (-2, 1).