The modulo (sometimes called modulus) operation finds the remainder of division of one number by another.
0
votes
1answer
15 views
BigQuery: Mod operator returning negative result when dividing by positive integer
I have a table with a couple of fields. The first field is the userId. I am using the hash function to shard the data by userId.
I am running the following query:
SELECT userId, HASH(userId) as ...
-1
votes
1answer
33 views
Modulo of big number in Objective C [closed]
I need to calculate a modulo of a big number (a number like x*10^35) by something like 34.
I'm pretty sure that with we can't use such numbers the easy way (NSInteger). Is there a way to use ...
0
votes
1answer
30 views
Javascript modulo operation gives wrong results [duplicate]
My script calculates weights of products. Full box weights 25.2KG. Each item weights 4.2KG making 6 items full box.
I'm chekcing with Javascript if box.
alert(jsonData.total_weight + ' % ' + ...
3
votes
3answers
75 views
GLSL(330) modulo returns unexpected value
I am currently working with GLSL 330 and came across some odd behavior of the mod() function.
Im working under windows 8 with a Radeon HD 6470M. I can not recreate this behavior on my desktop PC which ...
-3
votes
1answer
25 views
RSA encryption theory - modulo theory [closed]
I'm a bit mathematically challenged and have been working on the RSA cipher (good start). I can find the public and private keys and know how to work do modulo operations on a calculator. The ...
0
votes
3answers
92 views
loop not running as intended
I can't find the break in logic here but when run I get an output of 3125 as for what was supposed to be the largest prime factor. 3125 is obviously not prime nor even the largest non-prime factor. ...
23
votes
5answers
693 views
Testing oddity of an integer with the modulo operator
The following code snippet does not test oddity correctly:
public static boolean isOdd(int i) {
return i % 2 == 1;
}
I read in the web that I should do it the following way:
public static ...
-1
votes
6answers
93 views
Why 7%-5 gives 2 but -7%5 gives -2? Shouldn't it be -2 in both cases? [duplicate]
Please explain the reason behind the following, as mathematically the correct answer is -2 in both cases:
int a=7%-5; //Assigns 2 to a
int a=-7%5; //Assigns -2 to a
The code is in C.
0
votes
3answers
41 views
Determining if a Variable is Numerically an Integer in Python
I'm having an issue with determining if a variable is an integer. Not the variable type, but the actual value stored in the variable. I have tried using variable % 1 as a test, but it does not seem to ...
0
votes
1answer
30 views
How can I get MOD in Javascript to return a decimal correctly?
A simple problem I'm working with is taking a time for a 300m run in seconds and converting them to a string so that it reads "9:99.99". To get seconds, I do the following MOD operation:
sec = ...
1
vote
3answers
60 views
iOS objective-C: using modulo on a float to get “inches” from Feet
I am trying to make a simple objective-C height converter. The input is a (float) variable of feet, and I want to convert to (int) feet and (float) inches:
float totalHeight = 5.122222;
float myFeet ...
2
votes
0answers
76 views
c# double modulus returns 0 with “Optimize Code” turned on
So I made my own struct to represent angle values, with some convenience methods. However, while it works in Debug mode, when turning on optimizations in Release mode, my code behaves differently. Am ...
1
vote
4answers
53 views
Java modulo operator precedence
I need some help in debugging the following java program.
import java.util.Random;
public class NextInt
{
public static void main(String[] args)
{
for(int i=0; i<20; ++i)
...
0
votes
4answers
53 views
Modulus division when first number is smaller than second number
I apologize if this is a simple question but I'm having trouble grasping the concept of modulus division when the first number is smaller than the second number. For example when 1 % 4 my book says ...
3
votes
1answer
64 views
Python 3.2 number theory library
I'm having trouble finding a usable python 3 number theory library. All the libraries I found are written for python version 2, or they're lacking the functionality that I am looking for. I require ...
4
votes
1answer
156 views
Modulo operation in C#, C and OCaml
I wanted to confirm that the modulo operation was an expensive operation so I tested this piece of code that checks if a given number is even:
bool is_even(int n) {
return (n & 1) == 0;
}
...
-1
votes
2answers
34 views
Ruby modulo 3 with negative numbers is unintuitive [closed]
Ruby modulo rules with negative numbers are unclear. In IRB:
-7%3==2
Should be 1!
Why?
7
votes
2answers
67 views
Test against odd numbers
Most commanly the modulo operator % is used to test against an even or odd Number.
Now my question is, is there any Problem testing against an odd number using a bitwise AND, as it feels much more ...
0
votes
1answer
34 views
Need explanation for use of '%' and '/' to grid buttons with Tkinter
The code below is used in a simple calculator I made using Tkinter to implement a simple gui. I am new to Python, and it is basically my first programming language. This is my first stab at creating a ...
1
vote
1answer
69 views
Java - Modulo Addition of Bytes
I'm trying to perform modulo addition with two bytes in java, getting a third byte as a result.
Here's the code I'm using:
public static byte modAdd(byte byte1,byte byte2){
int int1 = ...
0
votes
2answers
102 views
What does 1 (mod N) mean?
I am trying to implement a simple algorithm in JavaScript. Wherever I look, it calls for the code to work out 1 (mod N). As far as I can tell, 1 modulo anything (or 1%N) is 1.
What am I missing? Is ...
0
votes
1answer
34 views
How to use fmodf after converting from NSString [closed]
Given:
//Example A
NSString *percentageStringRep = @"0.85";
fmodf(percentageStringRep.floatValue, 25.0f)
evaluates to 0.850000; however,
//Example B
fmodf(0.85f, 0.25f)
evaluates to 0.100000
...
1
vote
1answer
65 views
what is the result of modulo opeartion on (a-b)%n
Recently i solved a problem where i have to compute (a-b)%n.The results were self explanatory when a-b is an positive number but for negative numbers the results that i got seems confusing..i just ...
6
votes
2answers
161 views
is it better to avoid using the mod operator when possible?
I assume that calculating the modulus of a number is a somewhat expensive operation, at least compared to simple arithmetic tests (such as seeing if a number exceeds the length of an array). If this ...
1
vote
4answers
96 views
When using modulus operator, I want the number not remainder 0
First of all, I have to say that my English is so poor.
I could not find any better title for this article.
Anyway, I want to ask you guys, about Python.
Please look at the code below.
for i in ...
0
votes
2answers
61 views
How to process % to negative number in Visual Foxpro
How to do % to negative number in VF?
MOD(10,-3) = -2
MOD(-10,3) = 2
MODE(-10,-3) = -1
Why?
0
votes
4answers
93 views
How to map characters to integer range [-128, 127] in Python?
I would like to convert a list of characters (represented on a single byte ie. the range [0, 255]) to be represented with integers in the range [-128,127]. I've read that Python's modulo operator (%) ...
0
votes
1answer
39 views
Division by defined constant in Obj-C does not work
If I write
#define ANOTHER_CONSTANT 200
#define MYDIVISOR 1000/ANOTHER_CONSTANT
and then a method
- (void)result {
NSRange range = [@"--BB-------A----" rangeOfString:@"A" ...
2
votes
4answers
332 views
Fast algorithm to calculate large n! mod 2^32
N can be up to 2^31. I want to calculate exact value of N! mod 2^32.
Any language is fine but I would appreciate detailed explanation of algorithm.
Time limit is <1 sec
5
votes
3answers
66 views
SQL insert with if conditon
i m using SQL SERVER 2008 R2
i have table LV with stucture ID(varchar), name(varchar), and Item(int)
ID Name Item
1 xxx 5
2 yyy 9
3 rrr 11
4 hhh 19
i want to insert into table LV_TEMP ...
0
votes
1answer
148 views
Modular exponentiation in C++
Something is wrong in my code for modular exponentiation and I can't spot the problem despite of writing it three times when using two different sources of pseudocode. I've read other questions about ...
0
votes
2answers
116 views
BigInteger Modulo '%' Operation & Less Than / More Than Operations
Hi I have an algorithm in which I need to apply operations to BigInt's.
I understand that BigInt's can be manipulated using the Maths class such as:
import java.math.*;
BigInteger a;
BigInteger b = ...
-3
votes
2answers
56 views
Simple Formula for float algorithm [closed]
I need to set an alpha value, which is derived of a float value.
I list the pairs of float:alpha below, and I hope you guys can give me a simple correlation:
Float:Alpha
0:0
6:0.5
12:1
18:0.5
24:0
...
0
votes
4answers
109 views
Java module operator [duplicate]
Why does this code print 2.4099999999999997, instead of just 2.41
public class Main
{
public static void main(String args[])
{
double d = 5.55%3.14;
System.out.println(d);
...
1
vote
1answer
85 views
Why does using modulo on non-integer values lose floating-point precision? [duplicate]
I am wondering why I am losing precision when using this code :
double x = 12.0456; // or float : same result
System.out.println(x); // outputs 12.0456 obviously
x %= 1; // should ...
2
votes
2answers
120 views
How can I use modulo to do REVERSE (backwards) wrap-around (overflow)?
Can the expression ((x-1) % k + k) % k be simplified futher?
This is slightly more of a math question than is is a programming question, but it shows up very frequently in coding. Suppose we iterate ...
0
votes
1answer
204 views
Homemade Vigenere cipher; working with acsii character manipulation
As the post title suggests, I'm working to strengthen my grasp on C++ and character manipulation, this time through creating a Vigenere Cipher. For those unfamiliar with it, it's a fairly simple way ...
-1
votes
1answer
61 views
Modular math reducing to remainder modulo [closed]
I need some help with modulo. I saw this example in my book and don't understand how my prof got it. Can someone explain to me how this works?
2^345 = (2^5)^69 = 32^69 = 1^69 = 1 (mod 31)
The = ...
3
votes
1answer
76 views
Java - Is there a method for Euclidean or floored modulo
Java modulo operator % is based on the truncated division (see Wikipedia: Modulo operation).
5%3 produces 2 (note that 5/3 produces 1)
5%(-3) produces 2 (note that 5/(-3) produces -1)
(-5)%3 ...
4
votes
3answers
147 views
Python modulo on floats
Can anyone explain how the modulo operator works in Python?
I cannot understand why 3.5 % 0.1 = 0.1.
2
votes
1answer
124 views
For-loop modulo operator
I have to take an exam tomorrow, and one of the practice questions is as follows:
for ($i = 3; $i++; $i %= 9) { Write-Host $i }
The answer to this question should be that the lowest possible ...
0
votes
0answers
45 views
modulo without division
I'm trying to do modulo with higher performance because the microcontroller is too slow for normal modulo. The algorithm I used was rem = m & (2^i - 1), which (2^i - 1) here is specifically 255. ...
0
votes
1answer
32 views
Problematic modulo operator in a preg_replace_callback
It's late, and I can't figure out the pattern to the below problem ( which has been simplified ). The problem is with the process function.
<?php
function imcrement_image_id( $template ){
...
0
votes
2answers
161 views
mathematics behind modulo behavor
Preamble
This question is not about the behavior of (P)RNG and rand(). It's about using power of two values uniformly distributed against modulo.
Introduction
I knew that one should not use modulo ...
1
vote
4answers
125 views
Modulo gives impossible value
I want a table of four values between 1 to 6.
I'm using: rand() % 6 + 1;
This should give values between 1 and 6.
Except if rand() generates the value 0.
I keep getting 7's. I don't want any 7's
...
0
votes
2answers
185 views
python integer division error - modulo by zero - BUT divisor != 0
I am new to doing simple math using python, so sorry if this is a silly question.
I have 8 variables that are all set to integers and these integers are used when performing a simple calculation.
a ...
-3
votes
1answer
61 views
Why Modulo When Finding Prime Numbers
I'm trying to understand why one needs modulo operator in writing a program that finds prime numbers; I'm a student analysing some code for learning purposes, and I am confused as to why modulo is ...
1
vote
1answer
254 views
R remainder Function, Extract Specific Value
I'm working to write a function in R that gives out vectors of numeric indices where a vector divided by a number that has no remainder is listed in a resultant vector.
this is what I have so far
...
1
vote
4answers
158 views
Check if numbers are in a specific sequence
I have an int array with 4 numbers that are sorted ascendingly.
I want to find out whether these numbers match this rule:
1, 2, 3, 4 or
5, 6, 7, 8 or
9, 10, 11, 12 or
13, 14, 15, 16
etc.
They ...
2
votes
4answers
143 views
Integer division & modulo operation with negative operands in Python
Questions arise when I type in these expressions to Python 3.3.0
-10 // 3 # -4
-10 % 3 # 2
10 // -3 # -4
10 % -3 # -2
-10 // -3 # 3
It appears as though it takes the approximate floating ...




