How Many Paths Exist from (0, 0, 0) to (a, b, c) in a 3D Grid?

  • Thread starter Thread starter dancergirlie
  • Start date Start date
  • Tags Tags
    Combinatorics Path
dancergirlie
Messages
194
Reaction score
0

Homework Statement



Let a, b, and c be positive integers. How many paths are there from (0, 0, 0) to
(a, b, c) if we are only allowed to increase one of the coordinates by one at each
step?


Homework Equations





The Attempt at a Solution



This problem is easy for the path between (0,0) to (a,b)
because you can make the path into a binomial sequence, where if you increase a, then that will be a one, and if you increase b, then it will be a zero.

so for two:
total number of digits in the binary sequence= a+b
where a= # of 1s and b=#of 0's

So the total # of paths=
(a+b) choose a, which is equivalent to (a+b) choose b.

However for (0,0) to (a,b,c)
the total digits in the binary= a+b+c
and define the number of ones as a
and non-ones (zeros)= a+b

which yields:
Total path #s= (a+b+c) choose a.

I think the answer is:

((a+b+c) choose a)((b+c) choose b)

However, how do I explain that? Can i define c as the number of two's in the binary sequence? I thought binaries only had ones and zeros, that is why I haven't done that. Any help would be great!
 
Physics news on Phys.org
This can be done using a multinomial formula.

But yes

\left( \begin{array}{c}{a+b+c}&{a}\end{array} \right) \left( \begin{array}{c}{b+c}&{b}\end{array} \right)

is fine.

--Elucidus
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top