Skip to main contentSkip to solution

With rectangular axes of coordinates, the number of paths from (1,1)(1,1) to (8,10)(8,10) via (4,6)(4,6), where each step from any point (x,y)(x, y) is either to (x(x, y+1)y+1) or to ( x+1,yx+1, y ), is

Entered answer:

Solution

✅ Correct Answer: 3920

When we move from point (x,y)(x, y) to either (x,y+1)(x, y+1) or (x+1,y)(x+1, y), we're essentially:

Moving right by 1 unit: (x,y)→(x+1,y)(x, y) \to (x+1, y)

Moving up by 1 unit: (x,y)→(x,y+1)(x, y) \to (x, y+1)

This is called a lattice path problem.


Since we must pass through (4,6)(4,6), we can split our journey into two parts:

Part 1: (1,1)→(4,6)(1,1) \to (4,6)

Part 2: (4,6)→(8,10)(4,6) \to (8,10)

The total number of paths = (Paths in Part 1) × (Paths in Part 2)

Why multiply? For each way to reach (4,6)(4,6), we can combine it with any way to go from (4,6)(4,6) to (8,10)(8,10). This is the multiplication principle in counting.


To go from (1,1)(1,1) to (4,6)(4,6):

Right moves needed: 4−1=34 - 1 = 3 steps

Up moves needed: 6−1=56 - 1 = 5 steps

Total moves: 3+5=83 + 5 = 8 steps

Out of these 8 steps, we need to choose which 3 will be "right" moves (the remaining 5 will automatically be "up" moves).

Number of ways = 8C3=8!3!×5!=8×7×63×2×1=56{{}}^{8}C_{3} = \dfrac{8!}{3! \times 5!} = \dfrac{8 \times 7 \times 6}{3 \times 2 \times 1} = 56


To go from (4,6)(4,6) to (8,10)(8,10):

Right moves needed: 8−4=48 - 4 = 4 steps

Up moves needed: 10−6=410 - 6 = 4 steps

Total moves: 4+4=84 + 4 = 8 steps

Out of these 8 steps, we choose which 4 will be "right" moves.

Number of ways = 8C4=8!4!×4!=8×7×6×54×3×2×1=70{{}}^{8}C_{4} = \dfrac{8!}{4! \times 4!} = \dfrac{8 \times 7 \times 6 \times 5}{4 \times 3 \times 2 \times 1} = 70


Total number of paths = 56×70=392056 \times 70 = 3920

Key Insight: In lattice path problems, if you need to go right rr times and up uu times, the number of ways is r+uCr{{}}^{r+u}C_{r} (or equivalently r+uCu{{}}^{r+u}C_{u}).

Keyboard Shortcuts

  • Left arrow: Previous question
  • Right arrow: Next question
  • S key: Jump to solution
  • Q key: Jump to question