167
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 16 Jul 2023
167 points (97.7% liked)
Asklemmy
43781 readers
977 users here now
A loosely moderated place to ask open-ended questions
If your post meets the following criteria, it's welcome here!
- Open-ended question
- Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
- Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
- Not ad nauseam inducing: please make sure it is a question that would be new to most members
- An actual topic of discussion
Looking for support?
Looking for a community?
- Lemmyverse: community search
- sub.rehab: maps old subreddits to fediverse options, marks official as such
- !lemmy411@lemmy.ca: a community for finding communities
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
founded 5 years ago
MODERATORS
Do you remember the Fibonacci sequence? You can use it to convert miles to kilometers .
2 mi ~= 3km
5mi ~= 8km
8mi ~= 13km
13mi ~= 21km
And so on.
Wait, is this true until its not or is it true forever as you go higher in the sequence?
I think the way to formally prove this is to find the difference between the Fibonacci approximation and the usual conversion, and then to find whether that series is convergent or not. Someone who has taken the appropriate pre-calculus or calculus course could actually carry it out :P
However, I got curious about graphing it for distances "small enough" like from Earth to the sun (150 million km). Turns out, there's always an error, but the error doesn't seem to be growing. In other words, except for the first few terms, the Fibonacci approximation works!
This graph grabs each "Fibonacci mile" and converts it to kilometers either with the usual conversion or the Fibonacci-approximation conversion. I also plotted a straight line to see if the points deviated.
Edit: Here's another graph
So it turns out:
TL;DR:
If someone wants to play around with the code, here it is.
Note that you need RStudio and the Tidyverse package.
You just did the math!
Mmm dat ggplot2 but ggthemr::ggthemr("flat") is where it's at.
Checked it out and love that package! Thanks for the recommendation :)
The ratio of consecutive terms of the Fibonacci sequence is approximately the golden ratio phi = ~1.618. This approximation gets more accurate as the sequence advances. One mile is ~1.609km. So technically for large enough numbers of miles, you will be off by about half a percent.
It's true forever. The Fibonacci sequence used in this way converges on the golden ratio, which is close to the conversion of km and mi.
Someone already replied with a graph, but I also got curious and checked for some higher numbers. Sure enough, it held up.
For example:
832,040mi => 1,346,269km (actual: 1,339,039km)
So are you telling me that the inventors of the mile were using the golden ratio?
We wish they were that cool, the inventors of the modern mile were more concerned about land measurements. A square mile is 640 acres. Which neatly can be cut into quarters 3 times. 160, 40, 10.
Just a neat coincidence
Conversion factor of miles to kilometers is about 1.609 and golden ratio is about 1.618, it will be pretty accurate for quite a while...
It’s always true because the ratio of miles to km is really close to the golden ratio.
If you do it for a zillion miles you’ll be off by a lot of km, but proportionally the same amount as for 1 mile
That's brilliant.
That's awesome thanks !