← Change Exercise
Distance between two points on a gridline
How far apart are the two points? A(2, 3) — B(7, 3)
All difficulties
0%
Accuracy
0
Current streak
0
Total answers
0
Correct
This exercise finds the distance between two points that lie on the same gridline — they share either their x-coordinate or their y-coordinate. When two points share a coordinate, you can just count the squares between them, or subtract the coordinates that change.
What does this generator do?
Picks two points in the first quadrant that lie on the same horizontal or vertical line and asks for the distance between them.
How to use it
If the y-values match, the distance is the difference of the x-values. If the x-values match, it is the difference of the y-values. Subtract the smaller number from the bigger one.