This page has surveyed modulo from definition through congruence to its role across arithmetic. The remaining detail — the full operation laws for modular addition, multiplication, and exponentiation, and the convention split that governs negative dividends — lives on dedicated child pages. The table below collects those pages plus the closely linked siblings in /arithmetic/divisibility, with a one-line indication of what each covers.
| Topic |
What you'll find there |
Page |
| Modular arithmetic operations |
addition, subtraction, multiplication, and exponentiation performed entirely within a fixed modulus — including last-digit problems and large-power computations |
/modulo/operations |
| Negative numbers in modulo |
the two conventions for handling negative dividends, the rounding choices that distinguish them, and how programming languages differ |
/modulo/negative-numbers |
| Divisibility |
the concept that modulo computes — the statement a mod n = 0 is the operational form of n ∣ a |
/arithmetic/divisibility |
| Divisibility rules |
digit-based shortcuts derived from how 10 behaves under modular arithmetic — each rule is a modular identity in compact form |
/divisibility/rules |
| GCD & Euclidean algorithm |
the algorithm finds gcd(a, b) by repeatedly applying the modulo operation until the remainder reaches zero |
/divisibility/gcd |