You are not logged in.
Pages: 1
If
find 8x
Offline
If x was equal to
, then 8x would be 987654321. (or 80/81)However, it's actually a bit less than that, because the tenth decimal place is only 1 instead of 10, etc.
I'll try some more to find an exact answer, but it looks like it'll be tricky.
Why did the vector cross the road?
It wanted to be normal.
Offline
Does it end at ...979899, or is there some new pattern after that?
Wrap it in bacon
Offline
Break the number x into chunks, where each chuck starts with a 0 and ends just before the next 0 (and includes at least one nonzero digit). Multiply each chunk by 8, and then add the chunks up.
For example, the first chunk is 0.1234567891. Multiply that by 8: 0.9876543128.
The second chunk is 01112131415161718192. Multiply that by 8: 08897051321293745536.
Hence the first 31 digits (30 decimal places) of 8x is: 0.987654312808897051321293745536.
Now continue with the third chunk 022122232425262728293, fourth chunk 03132333435363738394, etc.
Offline
Pages: 1