Mental Model
We count how many ways to reach each cell by adding ways from the top and left cells. This builds up the total paths step by step.
Analogy: Imagine walking on a city grid where you can only move right or down. To reach a building, you add the number of ways you could have come from the building above and the building to the left.
Start grid (3x3): [1] -> [ ] -> [ ] ↓ ↓ ↓ [ ] -> [ ] -> [ ] ↓ ↓ ↓ [ ] -> [ ] -> [ ] [1] means starting point with 1 way, empty means unknown ways.