how to calculate reverse modulus

2019-01-15 19:19发布

now I have one formula:

int a = 53, x = 53, length = 62, result;
result = (a + x) % length;

but how to calculate reverse modulus to get the smallest "x" if I known result already

(53 + x) % 62 = 44
//how to get x

i mean what's the formula or logic to get x

5条回答
混吃等死
2楼-- · 2019-01-15 19:44
private int ReverseModulus(int div, int a, int remainder)
{
   if(remainder >= div)
      throw new ArgumentException("Remainder cannot be greater than or equal to divisor");
   if(a < remainder)
      return remainder - a;
   return div + remainder - a;
}

e.g. :

// (53 + x) % 62 = 44
var res = ReverseModulus(62,53,44); // res = 53

// (2 + x) % 8 = 3
var res = ReverseModulus(8,2,3); // res = 1
查看更多
Juvenile、少年°
3楼-- · 2019-01-15 19:48

how about

IEnumerable<int> ReverseModulo(
    int numeratorPart, int divisor, int modulus)
{
   for(int i = (divisor + modulus) - numeratorPart; 
       i += divisor; 
       i <= int.MaxValue)
   {
       yield return i;
   }
}

I'm now aware this answer is flawed because it does not gice the smallest but a .First() would fix that.

查看更多
Juvenile、少年°
4楼-- · 2019-01-15 19:53

Who needs a computer? If 53 + x is congruent to 44, modulo 62, then we know that for integer k,

53 + x + 62*k = 44

Solving for x, we see that

x = 44 - 53 - 62*k = -9 - 62*k

Clearly the smallest solutions are -9 (when k=0) and 53 (when k=1).

查看更多
太酷不给撩
5楼-- · 2019-01-15 20:02

It may not be the X that was originally used in the modulus, but if you have

(A + x) % B = C

You can do

(B + C - A) % B = x

查看更多
爷的心禁止访问
6楼-- · 2019-01-15 20:11

x = (44 - 53) % 62 should work?

x = (44 - a) % length;
查看更多
登录 后发表回答