The integer-division tag has no wiki summary.
0
votes
4answers
51 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 ...
0
votes
0answers
90 views
Large Integer Division - C++ - Knuth's Algorithm D
Im working on a problem where we have to use Large Integer Division using Knuth's Algorithm D (The art of programming Volume 2):
Here is an overview of the problem that that i face:
I have to be able ...
0
votes
4answers
53 views
c program to divide a number and show mod of a number won't work [closed]
Hi I made a program which integer divides a number by 50 and shows the mod of that number also but the compiler tells me that "value requires left operand of assignment" for"/" I'm not sure what to ...
1
vote
4answers
69 views
What's the reason for this seemingly overengineered code for checking one number is a multiple of another?
According to this answer if I want to check one number is a multiple of another I can use the remainder operator %.
if( number % anotherNumber == 0 ) {
number is a multiple of anotherNumber
}
...
0
votes
2answers
34 views
Division not giving the expected result
Code:
float cordsStepAmountHeight;
float cordsStepAmountWidth;
coordStepAmountHeight=(2.0f/height);
coordStepAmountWidth=(2.0f/width);
Where width is 2560 and height is 1504 (the resolution of my ...
-3
votes
4answers
123 views
C++ wrong result of mathematical expression [closed]
I have to calculate some simple mathematical expression, but when I do it in one row, the result always will be zero. But the correct result is obviously not zero. And its interesting but when I ...
9
votes
2answers
202 views
Why does -103/100 == -2 but 103/100 == 1 in Python?
Why does -103/100 == -2 but 103/100 == 1 in Python? I can't seem to understand why.
0
votes
5answers
157 views
Division in C# to get exact value [duplicate]
I am new to C#. If I divide 150 by 100, I should get 1.5. But I am getting 1.0 when I did like below.
double result = 150 / 100;
Can any1 help me how to get 1.5
0
votes
0answers
41 views
Efficient modulus division by a fixed divisor (using only primitive binary operands)
I have an 8-bit microcontroller that does have an integer multiplication unit, but does NOT have a hardware division or modulus instruction.
What I need to do is to perform modulus division for a ...
12
votes
1answer
207 views
Integer division by 7
Source my answer in:
Is this expression correct in c preprocessor
I'm a little bit out of my forte here, and I'm trying to understand how this particular optimization works.
As mentioned in the ...
0
votes
2answers
70 views
int divided by int to make a BigDecimal
Is it possible to divide two integers to make and make a BigDecimal out of it? I'm attempting to optimize my code. If I could reduce the number of times I declared a new BigDecimal, it should speed up ...
3
votes
2answers
200 views
Faster way for any number(16bit) divide by 3 in assembly without DIV opcode
I want to divide a unsigned integer by 3, in 8086 assembly or similar , any way to do it faster which I dont want to use DIV opcode.
1
vote
1answer
150 views
int division rounding library?
Does anyone know of an open-source C or C++ library with functions implementing every integer division mode one might want? Possible behaviors (for positive result):
round_down, round_up,
...
3
votes
3answers
196 views
Efficiently converting 16-bits short to 8-bits char
I'm working on a Cortex M0 cpu, which doesn't have hardware division, so every time I divide something, the GCC libary function is used. Now one of the division I do the most is dividing by 256, to ...
-1
votes
1answer
142 views
Dividing negative numbers with floordiv in python
I'm confused by the nature of integer division with // or floordiv with negative numbers in python.
>>> -5 // 2
-3
>>> int(-5/2)
-2
Why would floordiv() round down to -3? I ...
0
votes
1answer
179 views
Big-O of division
What is the Big-O of division on most modern day ISAs? Is there some kind of optimization or is it the naive O(numerator/denominator)? I'm writing code that relies heavily of modulus operation.
For ...
2
votes
4answers
137 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 ...
5
votes
1answer
161 views
With c++ integers, does 1 divided by 2 reliably equal 0, and 3/2 = 1, 5/2 = 2 etc.?
There are two vectors of differing, yet related sizes. The larger is (2 * RESOLUTION) + INDEX_OFFSET (e.g. 2050) and the smaller is simply RESOLUTION (e.g. 1024). I believe it safe enough to assume ...
2
votes
4answers
108 views
C++: Division by vector.size() gives strange results [duplicate]
Possible Duplicate:
int divided by unsigned int causing rollover
Hi I am doing the following:
struct coord{
int col;
};
int main(int argc, char* argv[]) {
coord c;
c.col = ...
0
votes
2answers
130 views
how to extract first three digits after decimal in any calculation in perl?
For a simple division like 1/3, if I want to extract only first 3 digits after decimal from the result of division, then how it can be done?
0
votes
3answers
104 views
Division in python. 7/9 = 0? How to stop this? [duplicate]
Possible Duplicate:
how can I force division to be floating point in Python?
I'm very sorry if this question has been asked already.
timothy_lewis_three_pointers_attempted = 4
...
-2
votes
1answer
208 views
java program - divisibility test with varification - how do i write this in textpad [closed]
i have the program written however I have two problems and need assistance to correct. the problems are
1) i do not want the counter i to go from 1 to x because then it would try the divisibility ...
1
vote
2answers
71 views
In Python 2.* division which has more overhead?
Let's say I want to divide two variables, in Python 2.* (mainly 6 and 7), that are considered integers. For instance:
a, b = 3, 2
print a/b
# Prints "1"
Now, there are at least two (non-redundant) ...
0
votes
2answers
320 views
Numpy: How to scale an integer array by an integer value?
I have a numpy array with maximum value num. I would like to scale all the values in the array by newMaxValue/num so that the new maximum value of array is newMaxValue. I tried to convert the array to ...
1
vote
2answers
119 views
convert a number to a variable base in mathematica
let n be an integer and A = {2,3,...,10} and I want to do as follows:
divide n to 2, so there is a reminder r2 and a quotient q2.
divide q2 to 3, so there is a reminder r3 and a quotient q3.
we ...
2
votes
2answers
158 views
How to divide the integer value
I want to perform integer division in VB.NET, i.e. only keep the whole part of division result.
Dim a, b, c as int32
a = 3500
b = 1200
c = a/b
This example outputs 3.
How do I make it return 2 ...
6
votes
1answer
167 views
Integer division: is a//b == int(a/b) true for all integers a,b?
I know that integer division will always return the same answer as truncation of a floating point result if the numbers are both positive. Is it true if one or both of them are negative?
I was just ...
0
votes
2answers
78 views
find the min and max of the set of prime factor of a number with the same power in Mathematica
Let
n=2^10 3^7 5^4...31^2...59^2 61...97
be the factorization of an integer such that the powers of primes are non-increasing.
I would like to write a code in Mathematica to find Min and Max ...
0
votes
1answer
821 views
Dividing two integers to produce a float result [duplicate]
Possible Duplicate:
Why can't I return a double from two ints being divided
My C++ program is truncating the output of my integer devision even when I try and place the output into a ...
0
votes
0answers
168 views
Values returning as 0, integer division is a suspect [closed]
Edit: Changed the block of code to a SSCCE and implemented the solutions suggested by chris and oldrinb. VN has started showing up as a non-zero value so that is fixed, but TS and TP still disagree ...
3
votes
3answers
353 views
C integer division and floor
In C, is there a difference between integer division a/b and floor(a/b) where both a and b are integers?
More specifically what happens during both processes?
0
votes
1answer
65 views
Need to know if a number is divisible after an operation
I have a number on which I perform a specific operation
I want to make sure that the number is still divisible after the operation.
Let's say I have an integer x which is divisible by PAGE_S
does ...
2
votes
2answers
161 views
Range-coders: How to get rid of divisions?
I am trying to optimize the QTC video codec to work on the Raspberry Pi with a decent performance. One important bottleneck is a 32 bits integer division done in the range decoder which takes into ...
-3
votes
4answers
80 views
recursion parameter issue [closed]
public void mystery1(int n) {
if (n <= 1) {
System.out.print(n);
} else {
mystery1(n / 2);
System.out.print(", " + n);
}
}
What gives this code for odd numbers. Becuase when we divide ...
2
votes
2answers
292 views
Custom Binary Division?
Hi I am trying to use the custom Binary Integer division method:
Source: http://www.informit.com/guides/content.aspx?g=dotnet&seqNum=642
public static void DivMod (Int128 dividend, Int128 ...
2
votes
3answers
1k views
The opposite of the modulo operator?
I remember in java that, the modulo operator could be inverted so that rather than seeing what the remainder is of an operation, you could invert it, so instead it will tell you many times a number ...
0
votes
1answer
149 views
Integer division with Cortex-M0 under RVDS
I am trying to divide a 64 bits integral type to a 32 bits one, and I am using RVDS 4.1 as a tool-chain.
Cortex-M0 does not have hardware divisor, so can I do the operation below? If so How?
...
2
votes
2answers
186 views
JSP EL div operator - strange behavior
I have this strange behavior in my JSP page:
I have two Integer variables count and size.
When I print the values of these variables to the page I'm getting
266 100
but when I use ${count div ...
0
votes
1answer
377 views
Python Tkinter Temperature Converter
so i am making a temp converter and i just cant get it to the calc for Fahrenheit to Celsius. It works to go from Celsius to Fahrenheit but it wont convert the other way. I am not sure what problem is ...
1
vote
0answers
102 views
Fastest algorithm of division [closed]
Can anyone tell me please what is the fastest algorithm of division for floating point and for integer numbers? Is there any new research work about them? From which arithmetical journal may I read?
1
vote
4answers
105 views
How to set minimum value to a division operation in python?
Is there a standard library function which will set a minimum value to a division operation, for example:
min(1, a/b)
This will ensure that min value of operation above will always be 1, never 0.
...
1
vote
1answer
245 views
truncate not defined in DrRacket
I am trying to use the truncate function in scheme and DrRacket keeps issuing this message
ProblemA.rkt:27:46: truncate: this function is not defined in: truncate
Is there an import or something I ...
2
votes
4answers
206 views
Divide the number into random number of random elements?
If I need to divide for example 7 into random number of elements of random size, how would I do this?
So that sometimes I would get [3,4], sometimes [2,3,1] and sometimes [2,2,1,1,0,1]?
I guess ...
1
vote
1answer
386 views
Non-restoring signed integer division post-corrections
I cant figure out the post-corrections to non-restoring integer division. For some reason I keep getting cases where I correct where no corrections are needed or don't correct when needed
heres ...
1
vote
1answer
252 views
What is the fastest way to do integer division?
Using scheme I have the need to use the following function. (All args are natural numbers [0, inf) )
(define safe-div
(lambda (num denom safe)
(if (zero? denom)
safe
(div num ...
3
votes
2answers
381 views
Integer division in PHP produces zero - how to cast it to float?
In a Russian card game I'm trying to keep statistics of how often a player swears (says "bad words" - and we do have a lot of them in Russian language) in the following PostgreSQL table:
# select * ...
1
vote
4answers
136 views
int64 doesn't support LanguagePrimitives.DivideByInt?
Why int64 doesn't support LanguagePrimitives.DivideByInt? I thought it would be pretty natural to write something like this:
let inline DivBy2 n = LanguagePrimitives.DivideByInt n 2
let res = DivBy2 ...
1
vote
5answers
983 views
Javascript Integer Division, or is Math.floor(x) equivalent to x | 0 for x >= 0?
Looking at the following examples, it looks like Math.floor(x) is equivalent to x | 0, for x >= 0. Is that really true? If yes, why? (or how x | 0 is calculated?)
x = -2.9; ...
0
votes
4answers
39 views
Stock Maintenance
Lets Suppose we have 251 Items in stock and we want to convert it into Boxes and single items.
How can we do that?
I want result like that E.g
50 boxes 1 item
Total Items # 251 items
items per ...
15
votes
3answers
629 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 ...


