First of all this is not a duplicate of Proving Pascal's Rule
.
I tried google before posting this question ,but did not find anything useful.
Here is what I already know : To get to any point the number of paths is just the number entering horizontally from the left plus the number entering vertically from below.
Let's say P(n,r) is the point I want to get to.
So, lattice method gives C(n,r) = C(n-1,r) +C(n-1,r-1)
But I think that C(n,r) = C(n-1,r) +C(n,r-1) and not C(n,r) = C(n-1,r) +C(n-1,r-1)
Because those are precisely the co-ordinates of the point one to the left, and the other immediately under.
What's wrong with my understanding?
Can someone show the lattice proof here or point me to the right place?