Here is the previous post concerning the Golden Ratio. For a collection of all the posts concerning the Golden Ratio, click #GoldenRatio below.
Before we can discuss the Golden Ratio algebraically, we must first introduce the Fibonacci Numbers. These numbers arise from the following story: In the first year, we start with a pair of baby rabbits. It takes a year for each rabbit to grow up, so in the second year, we have a pair of adult rabbits. These rabbits then mate and have a pair of baby rabbits. For each pair of rabbits, they take a year to grow up and then mate every year after then. There is no other mating between the rabbits. This is pictured above. How many pairs of rabbits are present after years?
The way we solve this problem is by using recursion, which involves basing the next number in our sequence off of the earlier numbers. Let the first year have pair of rabbits. The second year has pairs of rabbits. And we can see that the number of pairs of rabbits in the next year will be the number of pairs of rabbits this year plus the number of pairs of rabbits that are adults this year, which is the same as the number of pairs of rabbits this year plus the number of pairs of rabbits in the prior year. (Read that slowly!) Thus we can build the recurrence relation . Then, to answer our question, the number of pairs of rabbits that are present after years is .
Question 1: Calculate how many pairs of rabbits there are after 11 years.
If you tried question 1, you have seen how difficult it is to calculate large Fibonacci numbers by hand. Perhaps there is a way around this...
Question 2: Write a computer program that finds the Fibonacci number. (I know that this is relatively easy, but be creative in your solution.)
However, there is an even easier method to calculating the Fibonacci number! Be before we figure that out, we need to know a bit more about this sequence's relation to the Golden Ratio. But before we do that, are there any other interesting patterns that you can find (yourself) in the Fibonacci sequence?
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
If we create the generalized Fibonacci sequence with starting terms a,b then the terms make two of their own fibonacci sequences!
a,b,a+b,a+2b,2a+3b,3a+5b,5a+8b,8a+13b,…
Log in to reply
Aha! After our initial discussion into Fibonacci numbers, we will be looking at the generalized Fibonacci numbers and Fibonacci-like sequences. It should be around the torque-group level.
If you put any Fibonacci number over the one directly behind it, and use it to create a series, the values converge onto the Golden Ratio. f(n−1)f(n)≈ϕ. For example, 11=1, 12=2, 23=1.5, 35=1.6, 58=1.6.