A Simpler Proof of the Divisibility Test for 11
📂Number TheoryA Simpler Proof of the Divisibility Test for 11
Buildup
In this post, we use the following notations for convenience regarding numerical bases.
[anan−1…a1a0]:=an⋅10n+an−1⋅10n−1+…+a1⋅101+a0⋅100
For example, 5714 can be represented as follows.
[5714]==5000+700+10+45⋅103+7⋅102+1⋅101+4⋅100
Theorem
If an−an−1+…+a1−a0 is a multiple of 11, then [anan−1…a1a0] is also a multiple of 11.
Explanation
Of course, from the divisibility rules of 7 and 13, we can determine whether a given number is a multiple of 7, 11, 13, but in the case of 11, there is a much easier result and a simple proof. However, unlike the cases of 7, 11, 13, it uses congruences, so a very basic knowledge of number theory is required to understand the proof.
Proof
Strategy: The key idea used in the proof is that under modulo 11, 10 and −1 are congruent. With just this hint, the proof is practically done.
10≡−1(mod11)
≡≡≡[anan−1…a1a0]an⋅10n+an−1⋅10n−1+…+a1⋅101+a0⋅100(mod11)an(−1)n+an−1(−1)n−1+…+a1(−1)1+a0(−1)0(mod11)an−an−1+an−2−…+a2−a1+a0(mod11)
In other words, if an−an−1+an−2−…+a2−a1+a0 is a multiple of 11, then
an−an−1+an−2−…+a2−a1+a0≡0≡[anan−1…a1a0](mod11)
In other words, [anan−1…a1a0] is a multiple of 11.
■