If you have not checked out Part I of the problem, click here . Part I is less challenging, and my solution to that problem might give you inspiration for solving Part II.
Consider a graph with vertices t 1 , t 2 , t 3 , . . . , t k , where k ∈ Z + , k ≥ 2 . For every integer pair ( m , n ) where k ≥ m > n ≥ 1 , there are ( m − n ) distinct edges connecting t m to t n . No edges intersect. An ant moves along the edges of the graph. Given that it can only move from t a to t b if a > b , the number of distinct ways it can move from t k to t 1 can be expressed as A ( B ) k − C ( D ) k , where A , B , C , D are positive numbers. Find 1 0 A C + B + D .
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.
Nice solution! It is also interesting to note that the terms of x k are every other number in the Fibonacci sequence!
Great solution Sam! I agree with David Vreken who mentioned above that the xk's are numbers in the Fibonacci sequence. I noticed this and used the general formula for Fibonacci sequence terms to find the solution to this problem. By the way, this is a great problem that you should consider sending to MAA so it may be incorporated into the AIME exam!
Thanks! I only realized this interesting pattern after I figured out the solution to this problem :)
Suppose the number of ways to traverse a distance k = m − n is f(k).
Since we can do the first step of size j to any lower in vertex in j ways, we have the recursion relationship: f ( k ) = ∑ j = 1 k j f ( k − j ) , with f ( 0 ) = 1 , or
f ( k ) = 1 × f ( k − 1 ) + 2 × f ( k − 2 ) + . . . + k × f ( 0 ) . This way we find f ( 1 ) = 1 , f ( 2 ) = 1 , f ( 3 ) = 3 , f ( 4 ) = 8 , f ( 5 ) = 2 1 , f ( 5 ) = 5 5 , . . . . These are the even indexed Fibonacci numbers F n where n = 2 k − 2 . Using Binets formula: f ( k ) = F 2 k − 2 = 5 φ 2 k − 2 − ψ 2 k − 2 = φ 2 5 ( φ 2 ) k − ψ 2 5 ( ψ 2 ) k
So A = φ 2 5 1 = 0 . 1 7 0 8 2 0 . . . B = φ 2 = 2 . 6 1 8 0 3 3 . . . C = ψ 2 5 1 = 1 . 1 7 0 8 2 0 . . . D = ψ 2 = 0 . 3 8 1 9 6 6 . . .
And 1 0 A C + B + D = 2 + 3 = 5
Problem Loading...
Note Loading...
Set Loading...
Let x k denote the number of ways the ant can move from t k to t 1 . By inspection, x 2 = 1 and x 3 = 3 .
We can define x k recursively, and can deduce that x k = ∑ i = 1 k − 1 ( k − i ) x i = x k − 1 + ∑ i = 1 k − 2 ( k − i ) x i = x k − 1 + ∑ i = 1 k − 2 ( k − 1 − i ) x i + ∑ i = 1 k − 2 x i = 2 x k − 1 + ∑ i = 1 k − 2 x i .
Notice that ∑ i = 1 k − 2 x i = x k − 1 − x k − 2 . Therefore, x k = 3 x k − 1 − x k − 2 . We can now solve this recurrence relation.
The auxiliary equation λ 2 − 3 λ + 1 = 0 and has roots 2 1 ( 3 + 5 ) and 2 1 ( 3 − 5 ) . These two values are B and D respectively.
Plug the two values and the initial conditions ( x 2 = 1 and x 3 = 3 ) into the equation x k = A ( B ) k − C ( D ) k to get A = 1 0 1 ( 3 5 − 5 ) and C = 1 0 1 ( 3 5 + 5 ) .
As 1 0 A C = 2 and B + D = 3 , the answer is 5 .