5
votes
6answers
450 views
Computing (a*b) mod c quickly for c=2^N +-1
In 32 bit integer math, basic math operations of add and multiply are computed implicitly mod 2^32, meaning your results will be the lowest order bits of the add or multiply.
If y …
1
vote
4answers
68 views
Filtering odd numbers
M = [[1,2,3],
[4,5,6],
[7,8,9]]
col2 = [row[1] + 1 for row in M if row[1] % 2 == 0]
print (col2)
Output: [3, 9]
I'm expecting it to filter out the odd numbers, but it …
2
votes
2answers
123 views
Does (!(i % j)) mean not modulus of i and j = 0?
int main()
{
int i,j;
for (i=1; i<=25; i++)
{
for (j=2; j<= i/2; j++)
if (!(i%j)) break;
if (j>i/2) cout << i << "\n";
}
return 0;
}
This progra …
1
vote
4answers
136 views
long/large numbers and modulus in .NET
Hello,
I'm currently writing a quick custom encoding method where I take a stamp a key with a number to verify that it is a valid key.
Basically I was taking whatever number that …
0
votes
4answers
81 views
How do I combine n and e to create the public key in RSA?
Hello :)
I have a 128 byte (1024 bit) modulus (in a byte array format) and my exponent (also in a byte array format). I need to create a 128 bytes byte array representing the publ …
6
votes
7answers
395 views
Why does 2 mod 4 = 2?
I'm embarrassed to ask such a simple question. My term does not start for two more weeks so I can't ask a professor, and the suspense would kill me.
2/4 = .5 so why does 2 mod 4 = …
0
votes
5answers
177 views
In ruby, why is “100.7”.to_f.modulo(1) = 0.700000000000003?
This is very strange to me:
irb(main):012:0> "100.7".to_f.modulo(1)
=> 0.700000000000003
Why the 3 at the end?
irb(main):019:0> "10.7".to_f.modulo(1)
=> 0.699999999 …
10
votes
5answers
158 views
How can I achieve a modulus operation with System.TimeSpan values, without looping?
I'm in a very performance-sensitive portion of my code (C#/WPF), and I need to perform a modulus operation between two System.TimeSpan values in the quickest way possible.
This …
0
votes
3answers
202 views
f# whole number float modulus 1.0 = 1.0?
Ok I have two functions the first of which looks like so:
let dlth x = float (x.ToString().Length)
which takes a float and returns the number of digits, that part works fine. T …
8
votes
3answers
724 views
Python-style integer division & modulus in C
In Python and Ruby, signed integer division truncates towards negative infinity, and signed integer modulus has the same sign the second operand:
>>> (-41) / 3
-14
>&g …
1
vote
2answers
159 views
Printing python modulus operator as it is over command line
I want to print modulus operator as it is over the command line:
E.g this is how the output should look like:
1%2
2%4
or
30%
40%
I am using the print statement like this:
pri …
2
votes
5answers
726 views
What is the correct way to use the modulus (%) operator in JavaScript?
In JavaScript the % operator seems to behave in a very weird manner. I tried the following:
>>> (0 - 11) % 12
-11
Why does it return -11 instead of 1 (as in Python)?
I …
0
votes
2answers
787 views
C# RSA encryption using modulus and public exponent
I have to implement a digital envelope using AES and RSA, but I am having problems with the .NET implementation of the RSA algorithm.
I have managed to encrypt the data (AES) with …
5
votes
19answers
768 views
Efficient (cycles wise) algorithm to compute modulo 25?
Hi,
I have a code in which i am computing x % 25. x always takes a positive value but its dynamic range is large.
I found out that this particular code piece of computing a x % …
2
votes
7answers
1k views
In C#, how do I implement modulus like google calc does?
I have a class which represents a shape. The Shape class has a property called Angle. I want the setter for this property to automatically wrap the value into the range [0,359].
U …
