Go to the first, previous, next, last section, table of contents.


inv

inv(i,m)
:: the inverse (reciprocal) of i modulo m.
return
integer
i,m
integer
[71] igcd(1234,4321);  
1
[72] inv(1234,4321);
3239
[73] irem(3239*1234,4321);
1
References
section igcd,igcdcntl.


Go to the first, previous, next, last section, table of contents.