Reasoning · Grade 2-2 Working with Short Lengths

Problem

Counting shortest grid paths

On the street map, Home is bottom-left, the Shop is in the middle and the School is top-right. Travel only on drawn streets, and a shortest route only ever goes right or up. Every route must pass through the Shop. Count the shortest routes from Home through the Shop to the School.
Home Stationery shop School
Your answer
How to solve
Strategy Make a Systematic List — Because the trip must pass through the Stationery Shop, we count Home-to-Shop and Shop-to-School separately and multiply. The grid is a maze with a few missing streets, so we cannot just use a full-rectangle formula — instead we list each right/up order and keep only the ones whose streets are actually drawn.
1STEP 1

Split the journey at the Stationery Shop

The Shop is compulsory, so count each half and multiply.

total = (Home→Shop) × (Shop→School)
2STEP 2

Count Home to the Stationery Shop

Home to Shop loses two to the missing street: 4 of 6.

6 - 2 = 4
3STEP 3

Count the Stationery Shop to the School

Shop to School keeps 2 of 3.

3 - 1 = 2
4STEP 4

Combine the two halves

Joining them gives 4 × 2 = 8.

4 × 2 = 8
Answer
8 routes
4 × 2 = 8
On a full rectangle the two halves would give 6 × 3 = 18 routes; the missing streets remove routes from each half (6→4 and 3→2), so the true answer 8 should be well under 18 — and it is. The figure provides exactly eight blank grid copies for drawing one route each, which matches the count of 8.
Takeaway

Count each half of the trip by listing the streets you can really walk, then multiply — 4 times 2 makes 8, and the page even gives you 8 grids to draw them on!

  • Split the journey at the Stationery Shop
  • Count Home to the Stationery Shop
  • Count the Stationery Shop to the School
  • Combine the two halves