Search for a tool
Modular Multiplicative Inverse

Tool to compute the modular inverse of a number. The modular multiplicative inverse of an integer N modulo m is an integer n such as the inverse of N modulo m equals n.

Results

Modular Multiplicative Inverse -

Tag(s) : Arithmetics

Share
Share
dCode and more

dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Modular Multiplicative Inverse' tool for free! Thank you!

Modular Multiplicative Inverse

Modular Inverse Calculator



Extended GCD Calculator (with steps)

Bezout Identity Calculator (with steps)

Batch InvMod Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Answers to Questions (FAQ)

What is the modular Inverse? (Definition)

The value of the modular inverse of an integer $ a $ modulo $ n $ is the value $ a^{-1} $ such that $ a \cdot a^{-1} \equiv 1 \mod n $

In other words, the modular inverse is a number that, multiplied by $ a $, gives a remainder equal to $ 1 $ in the arithmetic modulo $ n $.

It is common to denote this modular inverse $ u $ and to use these equations $$ u \equiv a^{-1} \mod n \\ a u \equiv 1 \mod n $$

What is the condition for the existence and uniqueness of the modular inverse?

The modular inverse of $ a $ modulo $ n $ exists if and only if $ \operatorname{gcd}(a,n) = 1 $, that is, if $ a $ and $ n $ are coprime.

If $ \operatorname{gcd}(a,n) = d > 1 $, then any linear combination $ a u + n v $ is a multiple of $ d $ and therefore can never be equal to $ 1 $.

If a modular inverse exists, then it is unique modulo $ n $. All solutions are of the form: $ u + k n $ with $ k $ an integer.

How to calculate a modular inverse?

To calculate a modular inverse of $ a $ modulo $ n $, use Euclid's extended algorithm.

Euclid's extended algorithm makes it possible to find integers $ u $ and $ v $ such that $ a u + n v = \operatorname{gcd}(a,n) $. Since $ \operatorname{gcd}(a,n) = 1 $, then $ a u + n v = 1 $, reducing this modulo equality $ n $, the term $ n v $ disappears and there remains: $ a u \equiv 1 \mod n $. The value $ u $ is therefore a modular inverse of $ a $ modulo $ n $.

Example: $ 3^{-1} \equiv 4 \mod 11 $ because $ 4 \times 3 = 12 $ and $ 12 \equiv 1 \mod 11 $

dCode uses the Extended Euclidean algorithm for its inverse modulo N calculator and arbitrary precision functions to get results with big integers.

How to calculate v in au+bv?

Use the Bezout identity, also available on dCode.

What does invmod mean?

The keyword invmod is an abbreviation for invrse modular.

In programming or computer algebra, invmod(a,n) generally refers to the function that returns the modular inverse if such an inverse exists.

What is a multiplicative inverse?

A multiplicative inverse of an element is a number that, when multiplied by that element, gives $ 1 $.

In modulo $ n $ arithmetic, the multiplicative inverse of $ a $ is equal to its modular inverse.

What is the purpose of the modular inverse in the calculation of RSA keys?

In RSA encryption, the private key $ d $ is calculated as the modular inverse of the public exponent $ e $ modulo $ \varphi(n) $. Without the modular inverse, it would be impossible to construct the decryption key.

How can I quickly calculate the modular inverse of 2 modulo an odd number?

The inverse of $ 2 $ modulo an odd number $ n $ is always equal to $ \frac{n+1}{2} $

Indeed: $ 2 \times \frac{n+1}{2} = n + 1 \equiv 1 \mod n $

Example: Modulo 9, $ (9+1)/2 = 5 $, so $ 2^{-1} \equiv 5 \mod 9 $

Source code

dCode retains ownership of the "Modular Multiplicative Inverse" source code. Any algorithm for the "Modular Multiplicative Inverse" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Modular Multiplicative Inverse" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Modular Multiplicative Inverse" or any other element are not public (except explicit open source licence). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.

Cite dCode

The content of the page "Modular Multiplicative Inverse" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source (Creative Commons CC-BY free distribution license).

Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).

To cite dCode.fr on another website, use the link: https://www.dcode.fr/modular-inverse

In a scientific article or book, the recommended bibliographic citation is: Modular Multiplicative Inverse on dCode.fr [online website], retrieved on 2026-03-13, https://www.dcode.fr/modular-inverse

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Modular Multiplicative Inverse' tool for free! Thank you!


https://www.dcode.fr/modular-inverse
© 2026 dCode — The ultimate collection of tools for games, math, and puzzles.
 
Feedback