Respuesta :

Answer: Point E is located at (2, 3)

====================================

Explanation:

The sequence PQRST has T as the last letter.

The sequence ABCDE has E as the last letter

The two letters T and E pair up or they correspond. So T will rotate to land on point E. Or T will rotate to point E's location.

Point T is at location (-3,2). So x = -3 and y = 2.

-------

Use the rule

(x,y) ---> (y, -x)

which is the rule we use when we rotate any point 90 degrees clockwise around the origin. We swap the x and y coordinates, then change the sign of the second coordinate (after the swap happens).

This means,

(-3, 2) ----> (2, -(-3)) = (2, 3)

or simply

(-3, 2) ---> (2, 3)