asked 217k views
1 vote
4 i Rotate the figure 90° counterclockwise about the origin, and then reflect in the x-axis. Polygon 1. Move PREV 1 2 3

1 Answer

4 votes

to rotate 90 degrees counterclockwise we must transform the points like this


(x,y)\longrightarrow(y,-x)

and then invert the sign of the y-coordinate or the second coordinate of each point, so the total transformation is


(x,y)\longrightarrow(y,x)

now, transform each point


(0,4)\longrightarrow(4,0)
(0,1)\longrightarrow(1,0)
(2,1)\longrightarrow(1,2)
(2,4)\longrightarrow(4,2)

answered
User Tim Autin
by
8.1k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.