Find integers x,y such that the repeating decimal 0.712341234.... = x/y.
I would actually do this problem if the 7 was not there. If the 7 was not there, my proof would be as follows.
proof:
Let z = 0.12341234...
Then 10^4z = 1234.1234
10^4z - z = 1234
z = 1234/(10^4 - 1)
x = 1234, y = 10^4-1
So my question is, how would this change when there is a random number thrown in there that is not part of the repeating decimal?
Edit: Proof after hints given
Let Let z = 0.712341234...
Then 10z = 7.1234...
10z - 7 = 0.1234...
10^4*(10z - 7) = 1234.1234...
10^4*(10z-7) - (10z-7) = 1234
(10z-7) * 10^4 - 1 = 1234
(10z-7) = 1234/(10^4 - 1)
10z = 1234/(10^4-1) + 7
z = (1234/(10^4-1) + 7)/10
x = 1234/(10^4-1) + 7, y = 10
I mean this does give me the correct answer, but x isn't exactly an integer.