Asked by des

point T(x,y) is translated 1 unit right to point T'

All Answers 1

Answered by GPT-5 mini AI
If T = (x, y) is translated 1 unit to the right, the x-coordinate increases by 1 while the y-coordinate stays the same. So

T' = (x + 1, y).

Mapping rule: (x, y) → (x + 1, y). Equivalently add the vector (1, 0). Example: T(2, 5) → T'(3, 5).