- 16,027
- 9,237
The discussion analyzes the phenomenon where certain kilometer-to-mile conversions yield matching last three digits when rounded, specifically for four-digit distances like 7923 km ≈ 4923 mi. The conversion factor used is 1 km = 0.621371 miles. A Fibonacci-like approximate relationship between miles and kilometers is noted, with mile-to-kilometer ratios close to the golden ratio (≈1.618). The problem is formalized as finding integer values X, Y, U, W, Z such that XUWZ km equals YUWZ mi when rounded, using polynomial sums to represent digits and the conversion constant. Brute force attempts found limited matches, and the user seeks a systematic or expert method to identify all such occurrences.
Mathematicians, numerical analysts, and enthusiasts interested in number theory applications to unit conversions, as well as programmers developing algorithms for pattern detection in numerical data and those exploring relationships between Fibonacci numbers and measurement units.
It looks like I didn't make my question clear. Here is what I meant to ask:PeroK said:Miles to kilometres, coincidentally, has approximately a Fibonacci relationship. One mile is 1.609km, while the limiting factor for a Fibonacci sequence is ##\frac{1 + \sqrt 5}{2} \approx 1.618##.
1 mile is approximately 2 km
2 miles are approximately 3 km
3 miles are approximately 5km
5 miles are approximately 8 km
8 miles are approximately 13 km
etc.
That's the first (brute force) approach I tried without much success. So I thought that there might be a clever shortcut known to experts. If there isn't, I'll try again. Thanks.jedishrfu said:I think you could work it out by defining your numbers as polynomial sums. Then your relationship becomes
$$\Sigma ( b_n * 10^n ) = constant * \Sigma( a_n * 10^n )$$
Next add the constraint that the first 3 a values are equal to the first 3 b values
The remaining work is left to the OP
The numbers are (km):kuruman said:Find integer values X ,Y, U, W and Z such that
XUWZ km = YUWZ mi (rounded four digit distances)
given the conversion factor 1 km = 0.621371 mi.
I stumbled into one possibility. Are there more 4-digit distances?