Tagged Questions
The integer-division tag has no wiki summary.
34
votes
3answers
10k views
Integer division in JavaScript
In JavaScript, how do I get:
the whole number of times a given integer
goes into another?
the remainder?
18
votes
2answers
1k views
Integer division algorithm
I was thinking about an algorithm in division of large numbers: dividing with remainder bigint C by bigint D, where we know the representation of C in base b, and D is of form b^k-1. It's probably the ...
15
votes
3answers
154 views
How to implement (fast) bigint division?
I'm currently making my own BigInt class, by splitting numbers by 7 digits. (i.e. in base 10,000,000)
I implemented addition, subtraction, and multiplication, and now I'm implementing division and ...
15
votes
2answers
325 views
How can I strength reduce division by 2^n + 1?
I need to perform some integer divisions in the hot path of my code. I've already determined via profiling and cycle counting that the integer divisions are costing me. I'm hoping there's something I ...
14
votes
5answers
19k views
How should I do integer division in Perl?
What is a good way to always do integer division in Perl?
For example, I want:
real / int = int
int / real = int
int / int = int
10
votes
4answers
612 views
How can I perform division in a program, digit by digit?
I'm messing around with writing a class similar to mpz (C) or BigInteger (Java). This is just for fun, so please don't go on about how I shouldn't be writing my own.
I have a class similar to:
...
8
votes
2answers
184 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
5answers
338 views
Is div function useful (stdlib.h)?
There is a function called div in C,C++ (stdlib.h)
div_t div(int numer, int denom);
typedef struct _div_t
{
int quot;
int rem;
} div_t;
But C,C++ have / and % operators.
My question is: "When ...
8
votes
5answers
312 views
Efficiently implementing floored / euclidean integer division
Floored division is when the result is always floored down (towards −∞), not towards 0:
Is it possible to efficiently implement floored or euclidean integer division in C/C++?
(the obvious ...
8
votes
9answers
850 views
Why I cannot the get percentage by using Int
Please forgive my programming knowledge. I know this is a simple thing, but I do not understand why result is always 0. Why decimal will be fine?
int a = 100;
int b = 200;
decimal c = (a / b) * 100;
...
7
votes
4answers
322 views
Python negative integer division surprising result
In my application i encountered the following and was surprise d with the results:
8/-7=-2 (both integers).
what does this means?
7
votes
2answers
225 views
How can I avoid a warning about division-by-zero in this template code?
I have a class for fixed-point arithmetic, of which this is the salient portion:
template <typename I, I S>
struct fixed
{
I value;
fixed(I i) : value(i * S) {}
template ...
7
votes
8answers
2k views
How can I use bit shifting to replace integer division
I understand how to do it for powers of 2 so that's not my question.
For example, if i want to find 5% of a number using a bit shift instead of an integer divide, how would i calculate that?
So ...
7
votes
6answers
935 views
Integer vs floating division -> Who is responsible for providing the result?
I've been programming for a while in C++, but suddenly had a doubt and wanted to clarify with the Stackoverflow community.
When an integer is divided by another integer, we all know the result is an ...
6
votes
4answers
113 views
Integer divsion in Python
I'm confused about the following integer math in python:
-7/3 = -3 since (-3)*3 = -9 < -7. I understand.
7/-3 = -3 I don't get how this is defined. (-3)*(-3) = 9 > 7. In my opinion, it should ...
6
votes
3answers
153 views
Division not crossing over bytes
im trying to do division on a uint128_t that is made up of 2 uint64_ts. weirdly enough, the function works for uint64_ts with only the lower value set and the upper value = 0. i dont get why
heres ...
6
votes
3answers
4k views
Java Integer Division, How do you produce a double?
int num = 5;
int denom = 7;
double d = num / denom;
this results in 0, I know you can force it to work by doing
double d = ((double) num) / denom;
but there has to be another way, right? I don't ...
5
votes
2answers
163 views
Integer division on ARM
Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come ...
5
votes
3answers
142 views
Changing python math module behaviour for non-positive numbers division
Non-positive number division is quite different in c++ and python programming langugages:
//c++:
11 / 3 = 3
11 % 3 = 2
(-11) / 3 = -3
(-11) % 3 = -2
11 / (-3) = -3
11 % (-3) = 2
(-11) / (-3) = 3
...
5
votes
4answers
1k views
Round with integer division
Is there is a simple, pythonic way of rounding to the nearest whole number without using floating point? I'd like to do the following but with integer arithmetic:
skip = int(round(1.0 * total / ...
5
votes
1answer
754 views
How can I perform 64-bit division with a 32-bit divide instruction?
This is (AFAIK) a specific question within this general topic.
Here's the situation:
I have an embedded system (a video game console) based on a 32-bit RISC microcontroller (a variant of NEC's ...
4
votes
8answers
213 views
Why can't I return a double from two ints being divided
Relatively new to coding and have an issue regarding basic division. How come to following doesn't return the answer I thought it would:
int a=7;
int b=3;
double c=0;
c=a/b;
I would have put money ...
4
votes
4answers
131 views
Locating numerical errors due to Integer division
Is there a g++ warning or other tool that can identify integer division (truncation toward zero)? I have thousands of lines of code with calculations that inevitably will have numerical errors ...
4
votes
1answer
306 views
Is this a clever or stupid way to do an integer divide function?
I'm a Computer Science major, interested in how assembly languages handle a integer divide function. It seems that simply adding up to the numerator, while giving both the division and the mod, is way ...
4
votes
2answers
257 views
How to check if a integer is sum of given integers?
Lets say I have a integer result and an array of integers, lets say [a,b,c] (not a fixed length). I need to detect if result=a*i +b*j + c*k, with i,j,k>=0.
I prefer a solution in C/C# if it is ...
4
votes
4answers
950 views
C problem - division result is always zero
I got this C code.
#include <stdio.h>
int main(void)
{
int n, d, i;
double t=0, k;
scanf("%d %d", &n, &d);
t = (1/100) * d;
k = n / 3;
...
4
votes
4answers
380 views
Error using Double type in Java…this has to be so simple, I'm almost ashamed I am asking it here
Okay. I have been bashing my head against the wall for like 2 hours now trying to figure out why in the world double answer = 364/365; is telling me that answer is 0. Or any other combination of ...
4
votes
5answers
4k views
SQL Server, division returns zero
Here is the code I'm using in the example:
PRINT @set1
PRINT @set2
SET @weight= @set1 / @set2;
PRINT @weight
Here is the result:
47
638
0
I would like to know why it's returning 0 instead ...
4
votes
7answers
728 views
How do I compute the first decimal digit of a division between large numbers?
I have two unsigned long longs X and Y, where X < Y, but both may be very large. I want to compute the first digit past the decimal point of X / Y. For example, if X is 11 and Y is 14, then 11 / ...
3
votes
1answer
165 views
Does do_div() in Linux work in 32 and 64 bit architectures?
I need to do an integer division in a kernel module and I am using do_div() for that. It seems to work on my machine (I have an i686 processor), however I am not sure that it works everywhere. Could ...
3
votes
1answer
152 views
Consistent integer division with floating point operations
I need to do integer division in JavaScript, which only gives me double-precision floating point numbers to work with. Normally I would just do Math.floor(a / b) (or a / b | 0) and be done with it, ...
3
votes
6answers
3k views
Objective-C Integer Arithmetic
I'm trying to calculate some numbers in an iPhone application.
int i = 12;
int o = (60 / (i * 50)) * 1000;
I would expect o to be 100 (that's milliseconds) in this example but it equals 0 as ...
3
votes
5answers
321 views
how to calculate (a times b) divided by c only using 32-bit integer types even if a times b would not fit such a type
Consider the following as a reference implementation:
/* calculates (a * b) / c */
uint32_t muldiv(uint32_t a, uint32_t b, uint32_t c)
{
uint64_t x = a;
x = x * b;
x = x / c;
return ...
3
votes
5answers
860 views
Matlab division… should 29 / 128 return 0?
I really don't think this is a precision problem, the answer is .226-ish...
here's the exact code:
val = I(i,j)
bucketSize
pos = val / bucketSize
'I' is just a matrix I'm taking ...
3
votes
6answers
727 views
Is “long x = 1/2” equal to 1 or 0, and why?
if I have something like:
long x = 1/2;
shouldn't this be rounded up to 1? When I print it on the screen it say 0.
3
votes
3answers
786 views
Unsigned 128-bit division on 64-bit machine
I have a 128-bit number stored as 2 64-bit numbers ("Hi" and "Lo"). I need only to divide it by a 32-bit number. How could I do it, using the native 64-bit operations from CPU?
(Please, note that I ...
3
votes
6answers
658 views
Why is the output of cout << 7/9*9; is zero?
Why is the output of the following code equals to 0 or serven?
cout << 7/9*9; //output 0 (zero) why?
float nine = 9;
float seven = 7;
float i = seven/nine*nine;
cout << i ...
2
votes
2answers
57 views
Quick alternatives to floating point multiplication to calculate percentages
I'm writing some code on an Arduino that needs to run fast and make rough approximations to percentages of integers.
For example, given a number I want to find 90% of it, or 70% or 30% etc. The ...
2
votes
2answers
58 views
Can someone clarify why the value of a variable in my loop is not updating until the loop is closed?
This is my function
def rating(array)
sum_count = array.values.inject(0) { |sum_count,value| sum_count + value }
run_count = 0
array.each do |tag,count|
run_count += count
cum_distn = ...
2
votes
2answers
150 views
128-bit division intrinsic in Visual C++
I'm wondering if there really is no 128-bit division intrinsic function in Visual C++?
There is a 64x64=128 bit multiplication intrinsic function called _umul128(), which nicely matches the MUL x64 ...
2
votes
2answers
147 views
Visual C++ generates DIV instead of IDIV (x86, integer arithmetic)
I'm working with Visual C++ 2008 here (9.x) and I was preparing a fixed point value when I ran into the compiler generating a DIV instead of an IDIV. I collapsed the code into a tiny piece to exactly ...
2
votes
1answer
105 views
Division of numbers
I could see in Timestamp class, the constructor goes like:
public Timestamp(long time) {
super((time/1000)*1000);
....................
What Im not understanding is, what is the need of ...
2
votes
3answers
55 views
Dividing a file up with integer math
I'm reading a file from n servers, and I want each to download 1/nth of the file. I thought some quick integer math would work, but it doesn't seem to always work:
threads = n
thread_id = 0:n-1
...
2
votes
4answers
760 views
Why does the division of two integers return 0.0 in Java?
int totalOptCount = 500;
int totalRespCount=1500;
float percentage =(float)(totalOptCount/totalRespCount);
Why does this always return value 0.0? Also I want to format this into 00.00 format and ...
2
votes
1answer
72 views
Help with JavaME Function
Could anyone explain to me how this MIDP Java function works? I'm particularly curious about the operators being used.
public static final int smoothDivide(int numerator, int denominator) {
...
2
votes
3answers
506 views
How to divide stupidly big numbers in C
Am learning C and thought that Project Euler problems would be a fun and interesting way to learn (and would kill 2 birds with 1 stone because it would keep me thinking about maths as well) but I've ...
2
votes
7answers
706 views
Causing a divide overflow error (x86)
I have a few questions about divide overflow errors on x86 or x86_64 architecture. Lately I've been reading about integer overflows. Usually, when an arithmetic operation results in an integer ...
2
votes
6answers
2k views
noob: Why divide always produces 0.0 float/integer problem?
So if I have a range of numbers '0 - 1024' and I want to bring them into '0 - 255', the maths would dictate to divide the input by the maximum the input will be (1024 in this case) which will give me ...
2
votes
1answer
3k views
how do you divide two integers and get a decimal answer?
how do you divide two integers and get a decimal answer? in xcode..
the only thing i could was find http://www.gnu.org/s/libc/manual/html_node/Integer-Division.html
this method will not allow me to ...
2
votes
1answer
582 views
Integer division compared to floored quotient: why this surprising result?
The // "integer division" operator of Python surprised me, today:
>>> math.floor(11/1.1)
10.0
>>> 11//1.1
9.0
The documentation reads "(floored) quotient of x and y". So, why is ...