Sujet : Re: Does the number of nines increase?
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : sci.mathDate : 29. Jun 2024, 05:49:33
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v5o3ou$3opjt$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
User-Agent : Mozilla Thunderbird
On 6/28/2024 8:04 PM, Chris M. Thomasson wrote:
[...]
r[0] = .9
r[n] = r[n] + 10^(-n) * .9
[...]
Oh my, should that be: ? lol.. wow, sorry, brain fart big time:
r[n] = r[n - 1] + 10^(-n) * .9
;^o
r[0] = .9
r[1] = r[n - 1] + 10^(-n) * .9
as:
r[1] = r[1 - 1] + 10^(-1) * .9
where:
r[1] = r[0] + 10^(-1) * .9
finally:
r[1] = .9 + 10^(-1) * .9 = .99
God damn it!
https://youtu.be/rblt2EtFfC4Sorry everybody! Shit happens.