Calvin the Frog is trying to hop across a river. The river has 10 lily pads on it, and he must hop on them in a specific order (the order is unknown to Calvin).
If Calvin hops to the wrong lily pad at any point, he will be thrown back to the wrong side of the river and will have to start over.
Assuming Calvin is infinitely intelligent, what is the minimum number of hops he will need to guarantee reaching the other side?
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.
Calvin needs (at most) i ( 1 0 − i ) hops to determine the ith lily pad he should jump to, then an additional 11 hops to actually get across the river. Thus he requires i = 1 ∑ 1 0 ( i ( 1 0 − i ) ) + 1 1 = 1 7 6 hops to guarantee success.