How do I find the image after it’s been rotated 270 degrees about the point (-2,-1)?

Answer: (-1, 2)
Step-by-step explanation:
It's a counter-clockwise rotation, that means (x, y) changes to (y, -x).
(-2, -1) ⇒ (-1, -(-2)) ⇒ (-1, 2)
If it's a clockwise rotation, then (x, y) will change to (-y, x)
(-2, -1) ⇒ (-(-1), -2) ⇒ (1, -2)