Module 4 · Manhattan Navigation
Lesson 1 · Coordinates on the Grid — Knowledge ChecksAnswer key
In the coordinate (2, 3), what does the 2 mean?
Row comes first. (2, 3) means row 2 (two down), column 3 (three right).
Are (2, 3) and (3, 2) the same position?
Order matters. Swapping the numbers names a completely different intersection.
How many steps from (0, 0) to (3, 2), moving only along grid lines?
3 rows down + 2 columns right = 5 steps. That sum is the Manhattan distance.
The robot is at (1, 2). What position is directly below it (one row down)?
Moving down increases the row by 1 and leaves the column alone: (1, 2) → (2, 2).