this post was submitted on 08 Mar 2026
27 points (100.0% liked)
askchapo
23237 readers
134 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
Yeah, that's helpful. So I show that 0 <= a_1 <= k-1 from a_1 <= k(x - a_0) < a_1 + 1 by showing 0 <= (x - a_0) < 1 which implies 0 <= k(x - a_0) < k. That's the base case. Then I assume that the hypothesis holds for some positive integer n-1. From there I manipulate the inequalities to show that they imply 0<= a_n <=k-1.
Then having already assumed 0 <= a_i <= k-1 for all 1 <= i <= n-1, that means it is the case for all 1<= i <= n. Since I have shown it to be true for n=1, it is true for n=2. Since it is true for n=1 and n=2, it is true for n=3, and so on for all positive integers n.
Is this the way? Also, I think this technique is an example of strong induction and not regular induction, is that right?
Yes and yes ๐ I would show both inequalities seperately, i.e. one chain of inequalities for 0 <= a~i~ and another for a~i~ <= k-1 (or < k) (in the base case as well) just for clarity but the argument is solid.๐
Oh just be clear
The hypothesis is "0 <= a~i~ <= k-1 for all i <= n-1" right?
Yes, that one.