Statistics · real student question

A city has 4 roads running east-west and 4 running north-south, forming a grid. A person at the north-west corner A walks to the south-east corner B, at each intersection moving only east or south. How many different routes are there?

Question

Four roads run east–west and four run north–south, forming a grid of intersections. A person starts at the north-west corner AA and walks to the south-east corner BB, at each intersection choosing only to go east or south. How many different routes from AA to BB are there?

Step-by-step solution

  1. Count the moves each route must make. With 44 roads in each direction there are 33 blocks in each direction, so every route consists of exactly

    3 east movesand3 south moves3\ \text{east moves}\quad\text{and}\quad 3\ \text{south moves}

    for a total of 66 moves — and this is the same for every route, which is what makes the count a pure combinatorial one.

  2. Turn a route into a word. A route is completely described by the order of its moves, i.e. by a string of 66 letters, three E's and three S's, such as EESESSEESESS. Different strings give different routes and every route gives a string, so counting routes = counting strings.

  3. Choose the positions of the east moves. Once you decide which 33 of the 66 positions carry an E, the S's fill the rest. The number of ways is

    (63)\binom{6}{3}

  4. Evaluate the binomial coefficient.

    (63)=6!3!3!=654321=20\binom{6}{3}=\frac{6!}{3!\,3!}=\frac{6\cdot 5\cdot 4}{3\cdot 2\cdot 1}=20

    20 routes\boxed{20\ \text{routes}}

  5. Cross-check with Pascal's triangle on the grid. Label each intersection with the number of routes reaching it from AA: the top row and left column are all 11, and every other node is the sum of the node above and the node to its left. This builds the rows 1,1,1,11,1,1,1 / 1,2,3,41,2,3,4 / 1,3,6,101,3,6,10 / 1,4,10,201,4,10,20 — and the corner BB carries 2020 ✓, matching the binomial count.

Answer

(63)=20 routes\binom{6}{3}=20\ \text{routes}

Need to solve a different problem like this? Open the solver →