Let’s solve each row step by step.
We start at the given “Start” point, then move according to the “Direction”, and find the “End” point.
Remember:
- Right → add to x-coordinate
- Left → subtract from x-coordinate
- Upwards → add to y-coordinate
- Downwards → subtract from y-coordinate
---
Row 1: Start (1,3), Direction: 3 units right, 5 units upwards
- x: 1 + 3 = 4
- y: 3 + 5 = 8
→ End:
(4,8)
---
Row 2: Start (3,5), Direction: 5 units right, 1 unit upwards
- x: 3 + 5 = 8
- y: 5 + 1 = 6
→ End:
(8,6)
---
Row 3: Start (5,7), Direction: 2 units left, 1 unit downwards
- x: 5 - 2 = 3
- y: 7 - 1 = 6
→ End:
(3,6)
---
Row 4: Start (7,9), Direction: 2 units left, 6 units downwards
- x: 7 - 2 = 5
- y: 9 - 6 = 3
→ End:
(5,3)
---
All calculations checked. Final answers are correct.
Final Answer:
(4,8)
(8,6)
(3,6)
(5,3)
Parent Tip: Review the logic above to help your child master the concept of plotting points coordinate plane worksheet.