Bumbling to Honey

Bombus the BumbleBee wants to get to the cell containing honey.

Each time, he can only take a step to a neighboring cell, that moves him to the right.

How many ways does he have of reaching the honey in the last cell?

121 132 144 128

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.

2 solutions

Mahabubul Islam
Apr 30, 2017

Why Fibonacci

Simon Fawcett - 5 months, 3 weeks ago
Daniel Liu
Jul 1, 2015

Let the number of ways to get to the n n th leftmost hexagon be F n F_n . Thus, we want to find the value of F 12 F_{12} .

Note that F 1 = 1 F_1=1 . Also, F 2 = 1 F_2=1 . Now, to get to F 3 F_3 , Bombus can arrive through F 1 F_1 or F 2 F_2 . Thus, F 3 = F 1 + F 2 = 2 F_3=F_1+F_2=2 .

In general, to arrive on F n F_n Bombus can choose either to arrive from F n 1 F_{n-1} or F n 2 F_{n-2} . Thus F n = F n 1 + F n 2 F_n=F_{n-1}+F_{n-2}

But this is a sequence we recognize: the Fibonacci sequence!

We can then apply the Fibonacci recursion to get that F 12 = 144 F_{12}=\boxed{144} .

Nice solution, Daniel. Follow-up question: If we added a row of six cells above the two existing rows, and had Bombus start at the top left cell with the same rules of motion, how many ways would he have of reaching the lower right cell? I'm not sure if there is a "pretty" answer to this version.

Brian Charlesworth - 5 years, 11 months ago

Log in to reply

That would be an excellent question to post! I was contemplating doing so, but haven't had the time write it out. We would have a two sequence linear recurrence relation to solve.

In this problem, if A i A_i is the number of moves to the ith hexagon in the top row and B i B_i is the number of moves to the ith hexagon in the bottom row, then we want to solve

A n = A n 1 + B n 1 , B n = A n + B n 1 , A 1 = 1 , B 1 = 1 A_n = A_{n-1} + B_{n-1} , B_n = A_n + B_{n-1}, A_1 = 1, B_1 = 1

Calvin Lin Staff - 5 years, 11 months ago

In all likelihood there is not a very nice answer (after all, if you think about it, calculating the Fibonacci numbers isn't very nice either).

I calculated that if there are n n columns and 3 3 rows like you proposed, then the number of ways to get to the end is ( 3 + 3 ) ( 2 + 3 ) n + ( 3 3 ) ( 2 3 ) n 6 12 \dfrac{(3+\sqrt{3})(2+\sqrt{3})^n+(3-\sqrt{3})(2-\sqrt{3})^n-6}{12}

Daniel Liu - 5 years, 11 months ago

There is a simple way to solve that, in fact, or at least a visualization:

For each cell, it can only be reached from its neighbors to the left. (For example, the marked 15 hex can be reached from the top-left (6 ways there), from the left (4 ways there), and from the bottom-left (5 ways there); just add up all of them. Thus by carefully evaluating each cell from the leftmost to rightmost, we can find the answer.

Ivan Koswara - 5 years, 11 months ago

Hmmmm this problem looks familiar .

Pi Han Goh - 5 years, 11 months ago

Log in to reply

But my picture nicer :p

JK

Calvin Lin Staff - 5 years, 11 months ago

Can we use C or P to find the answer , I mean Combination etc

Syed Baqir - 5 years, 11 months ago

Log in to reply

Not in a direct way.

There is an indirect way of doing so, which highlights why the answer is the Fibonacci sequence.

Calvin Lin Staff - 5 years, 11 months ago

U say that to get to F2 there is one way . But why is that because i can reach F2 in two ways -One is directly from bee's position ,And the other is from is from F1 .As im not breaking the rule coz im still moving to the right from F1>F2. Moreover it is no where stated that we need to find the shortest path

Saaket Sharma - 5 years, 11 months ago

Log in to reply

You are talking about F 3 F_3 .

F 1 F_1 is the bee's starting position.

Daniel Liu - 5 years, 11 months ago

Log in to reply

oh! ok...ok...Sorry i misunderstood............Well,Good solution then.But did u check that the sequence Fn=F(n-1)+F(n-2) continues all through upto the end position?

Saaket Sharma - 5 years, 11 months ago

Log in to reply

@Saaket Sharma It is symmetric, so it holds.

Daniel Liu - 5 years, 11 months ago

Log in to reply

@Daniel Liu yup....right....good solution

Saaket Sharma - 5 years, 11 months ago

can you please explain the fibonacci sequence or get me a link to that? i am only known to permutations and combinations.

Abhay Lath - 5 years, 11 months ago

Log in to reply

Sure, check out the Fibonacci Sequence !

Calvin Lin Staff - 5 years, 11 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...