Update modular_inverse_simple.cpp

This commit is contained in:
John Law
2022-04-25 03:36:20 +08:00
committed by GitHub
parent fa16e10529
commit f49a954b34

View File

@@ -3,7 +3,7 @@
* @brief simple implementation of modular multiplicative inverse
*
* @details
* this algorithm calculates the modular inverse x^{-1} mod y iteratively
* this algorithm calculates the modular inverse x^{-1} \mod y iteratively
*
* @ref
* https://en.wikipedia.org/wiki/Modular_multiplicative_inverse
@@ -14,8 +14,7 @@
/**
* @brief Function imod
* Responsible for calculating the modular inverse of x with respect to y,
* x^{-1} mod y
* Calculates the modular inverse of x with respect to y, x^{-1} \mod y
* @param x number
* @param y number
* @returns the modular inverse