find the coordinates of the vertices of a triangle after a 90 degree rotation counterclockwise about the origin.

Step-by-step explanation:
The rule for a 90 degree counterclockwise is
(x,y) -> (-y,x)
so
C(-1,2) -> C'(-2,-1)
D(3,5) -> D'(-5,3)
E(1,2) -> E'(-2,1)