this post was submitted on 08 Mar 2026
33 points (100.0% liked)
askchapo
23239 readers
98 users here now
Ask Hexbear is the place to ask and answer ~~thought-provoking~~ questions.
Rules:
-
Posts must ask a question.
-
If the question asked is serious, answer seriously.
-
Questions where you want to learn more about socialism are allowed, but questions in bad faith are not.
-
Try !feedback@hexbear.net if you're having questions about regarding moderation, site policy, the site itself, development, volunteering or the mod team.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
a_i and a_n are defined the same way, they're just examining two different numbers in the sequence, but each can only be defined after the previous numbers in the sequence have been defined. In your example, after determining a_0=0, you next have to evaluate n=1. This shows a_1 can't be 2, it has to be the largest integer such that 0+a_1/2 <= 0.32, so a_1 has to be 0. Next you evaluate a_2, which given a_0 and a_1 has to be 1.
This process is essentially expressing a number in a different base, but focusing on the non-integer part. What it's asking you to prove is similar to proving that a number in binary will only have digits 0 or 1, and a number in octal will only have digits 0-7.
About your question of definitions more broadly, generally when a~n~ is defined, other subscripts a~i~, a~j~, a~m~, a~xyz~, are defined in the same way, even if that isn't specifically stated.
The a is what carries the properties of the sequence, and any variables in the subscript are just different ways of referencing the index. That can be to communicate a separation between concepts, or to set up relationships like i<=n that will be needed later
Thanks, I was thinking the same. I had already wrote a proof that worked if all a_i are defined like that, but wanted to be sure.