Open stoklund opened 8 years ago
This fixes issue #310.
This implements neg(X) in modulo arithmetic as the number Y such that X + Y == 0 (mod N).
neg(X)
Y
X + Y == 0 (mod N)
This fixes issue #310.
This implements
neg(X)
in modulo arithmetic as the numberY
such thatX + Y == 0 (mod N)
.