Can someone explain me how to do it and write it out In the app you are creating, a duck is going to fly from the coordinates (1, 3) then go 3 units right. And 6 units down.

Write a rule to describe the translation.
What are the coordinates of the duck’s final position?

1 answer

surely, (x,y) -> (x+3,y-6)

S take whatever starting coordinates you have and apply those translations to x and y.

For example, (3,4) -> (6,-2)