Modulo Calculator
Calculate the remainder after division, with both the mathematical and the programming convention shown.
Negative numbers split the two conventions
−7 mod 3 is 2 in mathematics, because the result should share the divisor's sign. In C, Java and JavaScript the % operator returns −1 instead, because it truncates towards zero. Python returns 2. This is a real source of bugs whenever code ports between languages, so both values are shown above.
The formula
a mod b = a − b · ⌊a / b⌋
Every result on this page comes from this formula. Nothing is rounded until the final display, so figures match a spreadsheet to the cent.
How to use the Modulo Calculator
- Fill in each field with your own figures — the defaults are only there as an example.
- The result updates as you type, so there is no button to press.
- Check the breakdown under the main result for the supporting numbers.
- Use the copy button to take the result with you, or share the link to reload the same inputs.
Modulo Calculator — frequently asked questions
Is this modulo calculator free to use?
Yes. Every calculator on the site is free, needs no sign-up, and runs entirely in your browser, so your figures never leave your device.
How accurate is the result?
The maths is exact for the formula shown on the page. Accuracy in the real world depends on your inputs and on assumptions the formula cannot see, so treat the output as a well-grounded estimate rather than a quote.
Can I use it on my phone?
Yes. The page is responsive, weighs a few kilobytes and works offline once loaded, so it behaves the same on a phone as on a desktop.
What people search for
This page answers each of these searches. They are the exact phrases visitors use to find the modulo calculator.
- modulo calculator
- calculator get remainder
About this calculator
Written and reviewed by The Samsung Calculator editorial team. Every calculator is written against a published formula, reviewed against at least one independent reference implementation, and dated when it changes.
Last reviewed August 23, 2026 · Calculation runs client-side · No data collected · Report an error