Modulo Calculator

Calculate a mod b — the remainder when a is divided by b.

mod
Result (a mod b)
0
Quotient
0
Remainder
0

Verification

a = b × q + r

Divisibility Check

-

Modulo Operation

The modulo operation finds the remainder after division: a mod b = r, where a = b × q + r and 0 ≤ r < |b|.

Related Calculators