How could you determine the coordinates of the vertices of a translated image without using a graph?

2 answers

You would have to know the rule of the translation.
e.g.
(x,y) -----> (x+2, y-3)
and then do and check the arithmetic.
Huh