I came across the following example on page 9 of Introduction to Arithmetic for Digital Systems by Waser and Flynn:
Example 1.5
Suppose we have two $\mod 99$ $A'$ and $B'$, having the following operations performed $\mod 100$, and then corrected to $\mod 100$ and then to a $\mod 99$ result?
(i) $A' = 47$, $B' = 24$; find $(A' + B') \mod 99$.
47 +24 ----- 071 71 mod 100 ≡ 71 mod 99 = result
(ii) $A' = 47$, $B' = 57$; find $(A' + B') \mod 99$.
47 +57 ----- 104 4 mod 100 ≡ 5 mod 99 = result +1 ----- 05
(iii) $A' = 47$, $B' = 52$; find $(A' + B') \mod 99$.
47 +52 ----- 099 99 mod 100 ≡ 0 mod 99 = result
Could someone please help me understand why $4 \mod 100 \equiv 5 \mod 99$?
I know that $N \mod \mu \equiv M \mod \mu$, iff there exists an integer $K$ such that $N - M = K\mu$, but I don't know how to interpret congruence between two different moduli.