C# ModInverse Function
Is there a built in function that would allow me to calculate the modular inverse of a(mod n)? e.g. 19^-1 = 11 (mod 30), in this case the 19^-1 == -11==19; Anton Samsonov Since .Net 4.0+ implements BigInteger with a special modular arithmetics function ModPow (which produces “ X power Y modulo Z ”), you don't need a third-party library to emulate ModInverse. If n is a prime, all you need to do is to compute: a_inverse = BigInteger.ModPow(a, n - 2, n) For more details, look in Wikipedia: Modular multiplicative inverse , section Using Euler's theorem , the special case “when m is a prime” . By