compute inverse modulo
How in sage language can I find the inverse of mod ?
For example the inverse of 55 (đť‘šđť‘śđť‘‘ 89)?
or the inverse of 19 (mod 141)
add a comment
How in sage language can I find the inverse of mod ?
For example the inverse of 55 (đť‘šđť‘śđť‘‘ 89)?
or the inverse of 19 (mod 141)
There is a dedicated inverse_mod
function.
Use it as follows:
sage: inverse_mod(55, 89)
34
sage: inverse_mod(19, 141)
52
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2022-09-12 13:50:16 +0100
Seen: 3,579 times
Last updated: Sep 13 '22