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
There is a dedicated inverse_mod function.
Use it as follows:
sage: inverse_mod(55, 89)
34
sage: inverse_mod(19, 141)
52
Asked: 2022-09-12 13:50:16 +0100
Seen: 4,918 times
Last updated: Sep 13 '22
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.