Consider the following grid.
We start at the bottom left corner. We may only move one step up or one step right at each move. This procedure is continued until we reach the top right corner. How many different paths from the bottom left corner to the top right corner are possible?
This is an excerise from Sheldon Ross' A First Course in Probability.
The correct answer is $$\binom{7}{4}=35.$$ However, no explanation is given. I understand that there are $7$ moves total that must be made: $$3\ \text{steps up and}\ 4\ \text{steps to the right.}$$ Can anyone provide me with an explanation of how the author came up with this answer?
Thanks so much!


What Mike Earnest said is simpler, but here's a strategy that also applies, for example, for 3-D paths.
Note that the number of paths is equal to the number of ordered 7-tuples with 3 $U$'s and 4 $R$'s, for example $URRURRU$ means, in order, go up, right, right, up, right, right, up.
The number of these is $$\frac{\# \text{ways to order 7 different letters}}{\# \text{ways to re-order the equivalent $U$'s} \cdot \# \text{ways to re-order the equivalent $R$'s}} = \frac{7!}{3! \cdot 4!} = \binom{7}{4}.$$