General::modp
Examples
Basic Examples (2)
The value of the Modulus option is expected to be an integer:
Together[3 / x + 1 / (x + 5), Modulus -> 5 / 2]This shows a valid Modulus specification in Together:
Together[3 / x + 1 / (x + 5), Modulus -> 2]The value of the Modulus option in Together is expected to be a prime number:
Together[923 / (807 + x) + 1 / x, Modulus -> 583]You can use PrimeQ to determine if a number is prime:
PrimeQ[583]PrimeQ[587]This shows a valid value for the Modulus option in Together:
Together[923 / (807 + x) + 1 / x, Modulus -> 587]