On the decimal expansion part, 1⁄7 has always fascinated me, having something very similar going on. Doubling from 7, you get 14, 28, 56; and 1⁄7 is 0.1̅4̅2̅8̅5̅7̅, 2⁄7 is 0.2̅8̅5̅7̅1̅4̅, 3⁄7 is 0.4̅2̅8̅5̅7̅1̅, &c. (just changing which digit you start the recurring sequence with). https://en.wikipedia.org/wiki/142,857 talks about it a bit more; the doubling sequence thing is covered in the section 1⁄7 as an infinite…
The Remarkable Number 1/89 (2004)
111–116 of 116 posts
Re: The Remarkable Number 1/89 (2004)
#112Earlier quoted context omitted.
If you read this and you’re curious, there’s a proof that is fairly easy to follow if you understand eigenvectors. Write the operation that takes the two last elements of the sequence and produces the following two, notice it’s linear, then analyze the eigenvalues of the associated matrix and relate the original operation to the power method.
You actually don't need eigenvectors for this proof. Sketch: Write x = lim a_n/a_{n-1} where a_n is the nth term of Fibonacci. Replace a_n with a_{n-1} + a_{n-2}, which will give you a quadratic equation in x. Solving this quadratic equation gives you the golden ratio.
Re: The Remarkable Number 1/89 (2004)
#113987654312/123456789 = 8
And this works in any base.
Re: The Remarkable Number 1/89 (2004)
#114Earlier quoted context omitted.
It tickles me that there was a "Fibonacci Quarterly" where people shared their favorite new Fibonacci facts on a quarterly basis.
Not was, is. I was curious about that as well. https://www.fq.math.ca/list-of-issues.html
Re: The Remarkable Number 1/89 (2004)
#115Earlier quoted context omitted.
You actually don't need eigenvectors for this proof. Sketch: Write x = lim a_n/a_{n-1} where a_n is the nth term of Fibonacci. Replace a_n with a_{n-1} + a_{n-2}, which will give you a quadratic equation in x. Solving this quadratic equation gives you the golden ratio.
I believe that gives you the result starting from Fibonacci, but not that any starting pair of numbers eventually lands at the golden ratio.
Re: The Remarkable Number 1/89 (2004)
#116Earlier quoted context omitted.
This seems like a pretty basic calculus problem. Constants become irrelevant at the limit, so that the relationship (ratio) is all that's left.
Well it isn’t really calculus as there’s no differentiation (I guess you could consider the last step where you take a limit to be calculus), but it’s a bit like differential equations. You can write down the recurrence relation: a_(n+2) = a_(n+1) + a_n Observe that there is a linear solution space (I.e. if you add solutions point wise or multiply each value by the same scalar, you get solutions), and the values a_0…