I have 2 numbers a and p ($0<a<p$) and p is prime. Both are of 256 bits. To represent them in a computer, I have divided each number into 4 parts of 64 bits each ($a0, a1, a2, a3$ and $p0, p1, p2, p3$).
How to calculate the multiplicative inverse of a over field p? ($(a*b)modp=1$)
$b$ is of 256 bits and is stored as $b0, b1, b2, b3$.
2026-04-04 00:19:41.1775261981
How to find multiplicative inverse of a very large number when the number and field is divided into parts?
59 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Two options:
I am not sure that your representation of big integers is efficient, there are some models that already exist in many languages.