A frog, namely, Sally, is jumping about the vertices of a triangle,
. Each time, she jumps to an adjacent vertex with equal probability. In how many ways can she get from
to
in
jumps?
Can you generalise for jumps as a little bonus?
This problem is a part of my froggy, soggy set .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Let N ( x , y ; k ) denote the number of ways of getting from vertex x to y in k jumps. Then we have the following recursive equations : N ( A , A ; k ) = N ( B , A ; k − 1 ) + N ( C , A ; k − 1 ) ( 1 ) N ( B , A ; k ) = N ( A , A ; k − 1 ) + N ( C , A ; k − 1 ) ( 2 ) Due to symmetry of the points B and C , we have N ( B , A ; k ) = N ( C , A ; k ) = g k (say) Also, let N ( A , A ; k ) = f k . Then equations (1) and (2) are simplified as f k = 2 g k − 1 , ( 3 ) g k = f k − 1 + g k − 1 ( 4 ) Eliminating f k from Eqns (3) and (4), we have g k = g k − 1 + 2 g k − 2 with the initial conditions g 1 = 1 , g 2 = 1 . Solving the above linear recurrence for g k , we have g k = 3 1 ( 2 k − ( − 1 ) k ) And hence f k = 3 2 ( 2 k − 1 − ( − 1 ) k − 1 ) The above is an exact solution for k jumps. For large k , the above may be simplified as f k ≈ 3 1 2 k Hence for k = 1 3 2 4 3 5 , the answer follows (after taking logarithm to the base of 1 0 and then exponentiating the result).