So I have this problem to answer and although I understand the concept, I have a little bit of difficulty solving this particularly worded one. Here it is:
Suppose you are walking in a rectangular grid from point $(0, 0)$ to the point $(m, n)$. In every step of the path, if you are at point $(x, y)$, you can either walk one step to the right, to $(x + 1, y)$ or a step up to $(x, y + 1)$. You are not allowed to move left or down.
a) What is the number of possible paths you can take?
b) If you choose a path at random, what is the probability that your path has exactly one turn?
I don't quite understand part b). For part a), I know that if a number was given, say $(3,2)$, then the total possible number of outcomes would result to ${5}\choose{3}$ or similarly ${5}\choose{2}$ since it would give you the same answer. Would it be fair to say that ${m+n}\choose{m}$ or ${m+n}\choose{n}$ would be a right answer?