Sujet : Re: how
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : sci.mathDate : 15. Jun 2024, 07:01:39
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v4jao4$3b7mr$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12
User-Agent : Mozilla Thunderbird
On 5/2/2024 10:06 AM, Moebius wrote:
Am 30.04.2024 um 14:56 schrieb WM:
The end is smaller than ω.
The sequence of natural numbers (all of which are smaller than ω) does not have an end, Du Depp!
Fwiw, here how I generally write my recursive functions. Say the natural numbers, including zero here:
r[0] = 0
r[n + 1] = r[n] + 1
Lets expand that for a couple of iterations:
r[0] = 0
r[1] = r[0] + 1 = 1
r[2] = r[1] + 1 = 2
r[3] = r[2] + 1 = 3
...
[n] where n is an index
vs:
r_0 = 0
r_(n+1) = r_n + 1
Both seem okay to me, as in I can understand both of them.