learn.howToCalculate
learn.whatIsHeading
Modular arithmetic wraps numbers around after reaching a modulus. a mod m is the remainder when a is divided by m. Foundational in cryptography, checksums, and number theory.
चरण-दर-चरण मार्गदर्शिका
- 1a mod m = remainder of a ÷ m
- 2(a+b) mod m = ((a mod m)+(b mod m)) mod m
- 3Modular exponentiation: fast algorithm for aⁿ mod m
हल किए गए उदाहरण
इनपुट
17 mod 5
परिणाम
2
17 = 3×5 + 2
learn.ctaText
इसे स्वयं आज़माएँ →