(no title)
alyxya
|
1 month ago
I think the standard way to convert repeating decimals or decimals that appear to have a certain repeating pattern to fractions is to take the first repeating period and divide by 0.999.. with the number of 9s matching the period length.
0.163272727.. = 0.163+0.00027/0.99 = 163/1000+27/99000 = 449/2750
krackers|1 month ago
Or going the other way, if d = 10^n - 1 then [10 a = a (mod d)] so your remainders never change. And then note that
so your quotient is just `a` as well.