Tagged Questions
The division tag has no wiki summary.
84
votes
13answers
5k views
Is multiplication and division using shift operators in C actually faster?
Multiplication and division can be achieved using bit operators, for example
i*2 = i<<1
i*3 = (i<<1) + i;
i*10 = (i<<3) + (i<<1)
and so on.
Is it actually faster to use say ...
54
votes
6answers
2k views
VB.NET vs C# integer division
Anyone care to explain why these two pieces of code exhibit different results?
VB.NET v4.0
Dim p As Integer = 16
Dim i As Integer = 10
Dim y As Integer = p / i
//Result: 2
C# v4.0
int p = 16;
int ...
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?
24
votes
5answers
10k views
how can I force division to be floating point in Python?
I have two integer values a and b, but I need their ratio in floating point. I know that a<b and I want to calculate a/b, so if I use integer division I'll always get 0 with a remainder of a.
How ...
16
votes
18answers
3k views
Why is 0 divided by 0 an error?
I have come across this problem in a calculation I do in my code, where the divisor is 0 if the divident is 0 too. In my code I return 0 for that case. I am wondering, while division by zero is ...
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 ...
15
votes
2answers
326 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 ...
12
votes
5answers
1k views
64/32-bit division on a processor with 32/16-bit division
My processor, a small 16-bit microcontroller with no FPU and integer math only has 16/16 division and 32/16 division which both take 18 cycles. At the moment I'm using a very slow software routine ...
12
votes
8answers
2k views
ArithmeticException thrown during BigDecimal.divide
I thought java.math.BigDecimal is supposed to be The Answer™ to the need of performing infinite precision arithmetic with decimal numbers.
Consider the following snippet:
import ...
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
3answers
618 views
Faster integer division when denominator is known?
I am working on GPU device which has very high division integer latency, several hundred cycles. I am looking to optimize divisions.
All divisions by denominator which is in a set { 1,3,6,10 }, ...
11
votes
2answers
654 views
Why does (360 / 24) / 60 = 0 … in Java
I am trying to compute (360 / 24) / 60 I keep getting the answer 0.0 when I should get 0.25
In words: I want to divide 360 by 24 and then divide the result by 60
public class Divide {
public ...
10
votes
6answers
484 views
Fast multiplication/division by 2 for floats and doubles (C/C++)
In the software I'm writing, I'm doing millions of multiplication or division by 2 (or powers of 2) of my values. I would really like these values to be int so that I could access the bitshift ...
10
votes
5answers
406 views
Division in C++ not working as expected
I was working on something else, but everything came out as zero, so I made this minimalistic example, and the output is still 0.
#include <iostream>
int main(int argc, char** argv)
{
double ...
10
votes
4answers
615 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:
...
10
votes
3answers
943 views
Java int division confusing me
I am doing very simple int division and I am getting odd results.
This code prints 2 as expected:
public static void main(String[] args) {
int i = 200;
int hundNum = i / 100;
...
10
votes
7answers
5k views
Assembly mod algorithm on processor with no division operator
This is pretty basic, but I figure it should be on SO for posterity.
I need to implement a simple macro that finds the modulo of two numbers on a processor that doesn't have a division operator ...
8
votes
1answer
499 views
Bitwise signed division algorithm in C
Well, to be honest this is actually my homework where I have to implement an algorithm which has to be able to divide two values without taking the absolute values of them to do the division. It also ...
8
votes
5answers
313 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
12answers
464 views
What division operator symbol would you pick?
I am currently designing and implementing a small programming language as an extra-credit project in a class I'm taking. My problem is that the language has three numeric types: Long, Double, and ...
8
votes
4answers
8k views
Java, BigDecimal. Problems with division
I'm trying to calculate a percentage "factor". That is, given a 20%, convert it into 0.2 (my intention is to later multiply values by that and get the 20% of the values).
Anyway, the question is ...
8
votes
3answers
2k views
When is the difference between quotRem and divMod useful?
From the haskell report:
The quot, rem, div, and mod class
methods satisfy these laws if y is
non-zero:
(x `quot` y)*y + (x `rem` y) == x
(x `div` y)*y + (x `mod` y) == x
quot is ...
7
votes
4answers
324 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
6answers
941 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 ...
7
votes
5answers
226 views
Can bad stuff happen when dividing 1/a very small float?
If I want to check that positive float A is less than the inverse square of another positive float B (in C99), could something go wrong if B is very small?
I could imagine checking it like
...
7
votes
5answers
5k views
How can i multiply and divide with only using bit shifting and adding?
How can i multiply and divide with only using bit shifting and adding?
7
votes
6answers
224 views
DivideByZeroException too slow
This is extremely slow:
try
{
x = k / y;
}
catch (DivideByZeroException) { }
This is about 5x faster:
if (y > 0) x = k / y;
Can anybody tell me why?
7
votes
7answers
488 views
6
votes
6answers
153 views
condition vs division
given the following statement which is executed a lot:
iNormVal = iVal / uRatio;
would the following make more sense (performance wise) if uRatio == 1 most (90%) of the time?
if(uRatio > 1)
...
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
10answers
4k views
What's the fastest way to divide an integer by 3?
int x = n / 3; // <-- make this faster
// for instance
int a = n * 3; // <-- normal integer multiplication
int b = (n << 1) + n; // <-- potentially faster multiplication
5
votes
3answers
251 views
Floating point division by zero exception in Delphi5
My app is written in Delphi5. I am using madExcept to track down bugs. I tracked down a "Floating point dvision by zero" exception, where it shouldn't be. The code segment, where it is raised, goes as ...
5
votes
6answers
458 views
C++ Best way to get integer division and remainder
I am just wondering, if I want to divide a by b, and am interested both in the result c and the remainder (e.g. say I have number of seconds and want to split that into minutes and seconds), what is ...
5
votes
2answers
110 views
Difference between “Math.DivRem” and % operator?
What is the difference between System.Math.DivRem() and the % operator?
5
votes
4answers
2k views
Should I bit-shift to divide by 2 in Java? [closed]
Possible Duplicates:
Is shifting bits faster than multiplying and dividing in Java? .NET?
Quick Java Optimization Question
Many years ago in college, I learned that bit-shifting right by ...
5
votes
2answers
387 views
How to implement long division for enormous numbers (bignums)
I'm trying to implement long division for bignums. I can't use a library like GMP unfortunately due to the limitations of embedded programming. Besides, i want the intellectual exercise of learning ...
5
votes
2answers
398 views
Zero division does not throw exception in nunit
Running the following C# code through NUnit yields
Test.ControllerTest.TestSanity: Expected: `<System.DivideByZeroException>` But was: null
So either no DivideByZeroException is thrown, or ...
5
votes
5answers
1k views
Find multiples of a number in PHP
Hay i need help.
I want to find all muliples of a number in PHP.
I'm using something like this
if($count != 20 )
to work out if $count is not equal to 20.
but i also need this script to check if ...
5
votes
3answers
733 views
What is the reason for having '//' in Python?
I saw this in someone's code:
y = img_index // num_images
where img_index is a running index and num_images is 3.
When I mess around with // in IPython, it seems to act just like a division sign ...
5
votes
4answers
1k views
I need a fast 96-bit on 64-bit specific division algorithm for a fixed-point math library
I am currently writing a fast 32.32 fixed-point math library. I succeeded at making adding, subtraction and multiplication work correctly, but I am quite stuck at division.
A little reminder for ...
5
votes
3answers
929 views
Double value returns 0
Here's an example:
Double d = (1/3);
System.out.println(d);
This returns 0, not 0.33333... as it should.
Does anyone know?
4
votes
4answers
238 views
How to implement division by addition?
An interview question.
How to implement division by addition? suppose they are all int.
My idea
Add divisor to itself until it is larger than dividend.
Each iteration, keep the sum result before ...
4
votes
1answer
307 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
508 views
64 bit by 32 bit division
I am looking for a fast way to perform the following divison:
Dividend is a signed 64 bit integer.
Divisor is a signed 32 bit integer.
Quotient should be a signed 64 bit integer, remainder is ...
4
votes
4answers
271 views
integer division properties
does the following integer arithmetic property hold?
(m/n)/l == m/(n*l)
At first I thought I knew answer (does not hold), but now am not sure.
Does it hold for all numbers or only for certain ...
4
votes
8answers
757 views
How to force c# binary int division to return a double?
How to force double x = 3 / 2; to return 1.5 in x without the D suffix or casting? Is there any kind of operator overload that can be done? Or some compiler option?
Amazingly, it's not so simple to ...
4
votes
4answers
954 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
381 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
2answers
396 views
How fast is division?
i was once supposed to make a short assembler code for dividing with numbers that are not power of 2. My solution was subtracting the divider in cycles and the number of cycles was the actual result. ...
4
votes
1answer
845 views
Assembly fast division by 2
Is there a faster way of dividing by 2, with sign, in assembly than the one in the example below?
...
mov ecx, 2
idiv ecx
push eax #push the result
...