I need to invert a BigInteger.
Let's say i have BigInteger x; and i need to calculate x.modPow(new BigInteger("-1"), p).
I receive the following error: java.lang.ArithmeticException: BigInteger not invertible.
|
I need to invert a Let's say i have I receive the following error: |
||||
| show 1 more comment |
|
If you read the docs for
If you're getting "BigInteger not invertible" this means that x and p are not relatively prime, so there is no mathematically defined inverse for the pair of numbers x and p given as input. Possibilities:
|
||||
|
|
|
Just put |
|||||||||||
|
modPow(-1, p), you should be seeing the same error withmodInverse(p). What kind of values are you using for x and p? Can you give us any further information? – Jason S Nov 29 '11 at 22:08isProbablePrime(k)where k is large (e.g. 1000 or more) that the numbers are, in fact, prime? – Jason S Nov 30 '11 at 0:32probablePrime(int bitLength, Random rnd)from BigInteger. Let's say i have g from Zp*. What i need to do is (raise g at power x) mod p, then the (result raised at power y) mod p, then (the new result raised at the invert of x) mod p, and i should obtain g. But this doesn't happen. – user1019710 Nov 30 '11 at 8:58