Please read the new rule regarding the restriction on the use of AI tools. ×

Calcuate (a/b) mod p when p is not prime

Revision en1, by dragneel3131, 2017-11-08 15:53:36

I have to calculate the value of (a/b) mod p where p may or may not be a prime number. For p being prime, I can simply find (b inverse for mod p) using euclid theorem or little fermat theorem, and perfrom (a * inverse(b)) % p. But in case p is not prime, how can I find the solution? I think there is a method by doing prime factorization of p and then using chineese remainder theorem but not sure about it. Can anyone help how can I solve this problem?

a and b both are less than p.

Tags number theory

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English dragneel3131 2017-11-08 15:53:36 532 Initial revision (published)