This is modulo arithmetic, also called clock arithmetic (even when the modulus is not 12) as the numbers start back at zero when the modulus is reached - the numbers go round and round in a cycle like the numbers (or times) on a clock.
When doing modulo arithmetic, only the reminder when the number is divided by the modulus is considered. For example 15 modulo 6 is 3 as 15 ÷ 6 = (2←ignored) remainder 3; 15 modulo 3 is 0 as 15 ÷ 3 = (5←ignored) remainder 0.
This is an important area of maths.
One application is finding the highest common factor of two numbers (which is Euclid's Algorithm or method):
eg find the hcf of 84 and 30:
84 MOD 30 = 24
30 MOD 24 = 6
24 MOD 6 = 0
→ hcf(84, 30) = 6.
Another use is in the RSA public key encryption.
---------------------------------------------------------------------
In the case of the question, the modulus is 12:
(11 + 2) MOD 12 = 13 MOD 12 = 1
(9 + 5) MOD 12 = 14 MOD 12 = 2
Copyright © 2026 eLLeNow.com All Rights Reserved.