Tagged Questions
The modulo tag has no wiki summary.
32
votes
10answers
4k views
Fastest way to calculate a 128-bit integer modulo a 64-bit integer
I have a 128-bit unsigned integer A and a 64-bit unsigned integer B. What's the fastest way to calculate A % B - that is the (64-bit) remainder from dividing A by B?
I'm looking to do this in either ...
27
votes
12answers
4k views
Check if a number is divisible by 3
Not sure if it's a duplicate. But I need to find whether a number is divisible by 3 without using %, / or *. The hint given was to use atoi() function. Any idea how to do it?
19
votes
10answers
14k views
Weird Objective-C Mod Behavior
So I thought that negative numbers, when mod'ed should be put into positive space... I cant get this to happen in objective-c
I expect this:
-1 % 3 = 2
0 % 3 = 0
1 % 3 = 1
2 % 3 = 2
But get ...
15
votes
5answers
283 views
Does INT_MIN % -1 produce undefined behavior?
gcc generates floating code that raises SIGFPE for the following code:
#include <limits.h>
int x = -1;
int main()
{
return INT_MIN % x;
}
However I can find no statement in the standard ...
14
votes
3answers
13k views
How to make a modulo operation in objective-c / cocoa touch?
I have two CGFloat values, and want to calculate the modulo result. Or in other words: I want to know what's left if valueA is placed as much as possible into valueB.
So I just tried:
CGFloat ...
14
votes
3answers
7k views
Mod of negative number is melting my brain!
Duplicate of Weird Objective-C Mod Behavior
I'm trying to mod an integer to get an array position so that it will loop round. Doing i %
arrayLength works fine for positive numbers but for negative ...
13
votes
4answers
2k views
Why is modulus different in different programming languages?
Perl
print 2 % -18;
-->
-16
Tcl
puts [expr {2 % -18}]
-->
-16
but VBScript
wscript.echo 2 mod -18
-->
2
Why the difference?
12
votes
7answers
2k 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 = 2?
Sorry if I'm ...
12
votes
3answers
2k 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
>>> (-41) % 3
1
...
11
votes
1answer
182 views
Computing x mod y where y is not representable as floating point
As a canonical example, consider the problem of argument-reduction for trigonometric functions, as in computing x mod 2π as a first step for computing sin(x). This kind of problem is difficult in that ...
11
votes
13answers
698 views
Recognizing when to use the mod operator
I have a quick question about the mod operator. I know what it does; it calculates the remainder of a division. My question is, how can I identify a situation where I would need to use the mod ...
11
votes
7answers
459 views
“Nearly divisible”
I want to check if a floating point value is "nearly" a multiple of 32. E.g. 64.1 is "nearly" divisible by 32, and so is 63.9.
Right now I'm doing this:
#define NEARLY_DIVISIBLE 0.1f
float offset = ...
11
votes
11answers
14k views
Is there an alternative to using % (modulus) in C/C++?
I read somewhere once that the modulus operator is inefficient on small embedded devices such as 8 bit micros without integer division operator. Perhaps someone can confirm this but I thought the ...
9
votes
3answers
143 views
Is it possible to rewrite modulo (2^n - 1) using bitwise and restricted operators
For unsigned int x, is it possible to calculate x % 255 (or 2^n - 1 in general) using only the following operators (plus no loop, branch or function call)?
!, ~, &, ^, |, +, <<, >>.
9
votes
8answers
12k views
How to calculate modulus of large numbers?
How to calculate modulus of 5^55 modulus 221 without much use of calculator?
I guess there are some simple principles in number theory in cryptography to calculate such things.
9
votes
12answers
2k views
Modulus operation with negatives values - weird thing?
Can you please tell me how much is (-2) % 5 ?
According to my python interpreter is 3, but do you have a wise explanation for this ?
I've read that in some languages the result can be ...
8
votes
2answers
187 views
How can I get the quotient and the remainder in a single step? [closed]
Possible Duplicate:
Divide and Get Remainder at the same time?
Is it possible to get both the quotient and the remainder of integer division in a single step, i.e., without performing ...
8
votes
3answers
207 views
Fast multiplication and subtraction modulo a prime
I need to optimize some code where I multiply a vector of ints (32 bit) by a scalar modulo p (where p is the prime number (2^32)-5) and then subtract that vector from another vector modulo p.
The ...
8
votes
7answers
2k views
How to code a modulo (%) operator in C/C++/Obj-C that handles negative numbers
One of my pet hates of C-derived languages (as a mathematician) is that
(-1) % 8 // comes out as -1, and not 7
fmodf(-1,8) // fails similarly
What's the best solution?
C++ allows the ...
8
votes
1answer
245 views
Does either ANSI C or ISO C specify what -5 % 10 should be?
I seem to remember that ANSI C didn't specify what value should be returned when either operand of a modulo operator is negative (just that it should be consistent). Did it get specified later, or ...
8
votes
9answers
3k views
Mathematical modulus in c#
Is there a library function in c# for the mathematical modulus of a number - by this I specifically mean that a negative integer modulo a positive integer should yield a positive result.
edited to ...
7
votes
2answers
136 views
Using modulus operator to keep within indices of container
Assume I have a vector v with m elements in it, and a random access index to the vector called i.
When I increment the index, if it goes out of bounds, I want to index the first (zeroth) element. ...
7
votes
8answers
400 views
How does a 32-bit operating system perform the 2^56 modulo 7?
How does the system perform the 2^56 modulo 7, if it's 32 bits operating system in cryptography for example?
And how it stored in memory?
7
votes
4answers
1k views
Difference Between Modulus Implementation in Python Vs Java
I've noticed differing implementations of the modulus operator in Python and Java.
For example, in Python:
>>> print -300 % 800
>>> 500
Whereas in Java:
System.out.println(-300 ...
7
votes
5answers
2k views
Fastest modular exponentiation in JavaScript
My problem is to compute (g^x) mod p quickly in JavaScript, where ^ is exponentiation, mod is the modulo operation. All inputs are nonnegative integers, x has about 256 bits, and p is a prime number ...
7
votes
7answers
6k views
Is & faster than % when checking for odd numbers?
To check for odd and even integer, is the lowest bit checking more efficient than using the modulo?
>>> def isodd(num):
return num & 1 and True or False
>>> isodd(10)
...
6
votes
3answers
65 views
How to mod2^64 in long in Java?
I'm implementing a Skein hash function in Java, and I have a problem with a part where some additions where modulo 2^64. As I we know, long in java has max value = 2^63-1. So my problem is, how to ...
6
votes
1answer
136 views
Calculating expressions modulo n
When doing calculations modulo n with large numbers, you will encounter huge performency penalties when doing for example mod (123456789^987654321) n. Instead you have to use your own ^ that ...
6
votes
7answers
3k views
How to get the separate digits of an int number?
I have numbers like 1100, 1002, 1022 etc. I would like to have the individual digits, for example for the first number 1100 I want to have 1, 1, 0, 0.
How can I get it in Java?
6
votes
4answers
910 views
Better ways to implement a modulo operation (algorithm question)
I've been trying to implement a modular exponentiator recently. I'm writing the code in VHDL, but I'm looking for advice of a more algorithmic nature. The main component of the modular exponentiator ...
6
votes
3answers
2k views
Modulo operator in Objective-C returns the wrong result
I'm a little freaked out by the results I'm getting when I do modulo arithmetic in Objective-C. -1 % 3 is coming out to be -1, which isn't the right answer: according to my understanding, it should be ...
6
votes
5answers
719 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 code will be running ...
6
votes
12answers
3k views
Fast way to manually mod a number
I need to be able to calculate (a^b) % c for very large values of a and b (which individually are pushing limit and which cause overflow errors when you try to calculate a^b). For small enough ...
6
votes
6answers
2k 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 you want to compute ...
6
votes
3answers
7k views
How do you calculate div and mod of floating point numbers?
In Perl, the % operator seems to assume integers. For instance:
sub foo {
my $n1 = shift;
my $n2 = shift;
print "perl's mod=" . $n1 % $n2, "\n";
my $res = $n1 / $n2;
my $t = ...
6
votes
7answers
5k views
How do you do modulo or remainder in Erlang?
I'm brand new to Erlang. How do you do modulo (get the remainder of a division)? It's % in most C-like languages, but that designates a comment in Erlang.
Several people answered with rem, which in ...
6
votes
6answers
856 views
What is the fastest way to get the 4 least significant bits in a byte (C++)?
I'm talking about this:
If we have the letter 'A' which is 77 in decimal and 4D in Hex.
I am looking for the fastest way to get D.
I thought about two ways:
Given x is a byte.
x << 4; x >> ...
5
votes
1answer
417 views
Cube root modulo P — how do I do this?
I am trying to calculate the cube root of a many-hundred digit number modulo P in Python, and failing miserably.
I found code for the Tonelli-Shanks algorithm which supposedly is simple to modify ...
5
votes
4answers
642 views
C#: decrementing a clock using modulus math
Trying to emulate the rollover of a 24 hour clock by hand (with math vs. using the timespan classes). The incrementing part was easy to figure out how to roll over from 23:00 to 0:00 and from, but ...
5
votes
4answers
378 views
negative numbers in python
I've found some strange behaviour in python regarding negative numbers:
>>> a = -5
>>> a % 4
3
Could anyone explain what's going on?
5
votes
2answers
168 views
Is the behavior of % with negative operands defined in Perl 5?
Until recently (i.e. C99), the behavior of the modulo operator was implementation defined in C. Since Perl 5 is written in C, is it reliant on the behavior of the C compiler used to build it?
5
votes
9answers
538 views
What are the practical uses of modulus (%) in programming? [closed]
Possible Duplicate:
Recognizing when to use the mod operator
I wonder, what are the practical uses of modulus? I know what modulo division is. The first scenario which comes to my mind is ...
5
votes
6answers
523 views
Modulo of negative numbers [closed]
Possible Duplicate:
Mod of negative number is melting my brain!
I was wondering if there was a nicer algorithm for what I'm trying to do:
wrapIndex(-6, 3) = 0
wrapIndex(-5, 3) = 1
...
5
votes
3answers
6k views
5
votes
20answers
2k views
Efficient (cycles wise) algorithm to compute modulo 25?
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 % 25 is taking large ...
5
votes
7answers
2k views
Handling “Big” Integers in C#
How do I handle big integers in C#?
I have a function that will give me the product of divisors:
private static int GetDivisorProduct(int N, int product)
{
for (int i = 1; i < N; i++)
...
5
votes
4answers
1k views
Perform a modulus in a huge number?
I need to do a modulus operation on very large integers. The biggest integer supported by my platform (edit: .NET 2.0) is a 64 bit integer, which aren't big enough for the numbers I'm working with.
...
4
votes
2answers
86 views
Ruby: divisible by 4
This works fine, but I want to make it prettier - and accommodate all values that are divisible by 4:
- if i== 4||i==8||i==12||i==16||i==20||i==24||i==28||i==32
Any clever, short method to do this? ...
4
votes
2answers
215 views
Solving quadratic congruence equation in Mathematica
In order to solve
x^2 == 123456 mod 1299709
in Mathematica I have used:
Reduce[x^2 == 123456 + 1299709 k, {x, k}, Integers]
which yields the correct answer.
Question: Is Reduce the best ...
4
votes
3answers
132 views
How is the modulo operator (%) actually computed?
Recently I've been confused about the modulo operator, %.
It's known that a % b == a-a/b*b when we have integers a and b where a > b, and we can do this calculation by hand if a and b are small ...