In mathematics, division (÷) is an arithmetic elementary operation.
1
vote
2answers
27 views
Division of a float/integer by a integer in jquery [duplicate]
I am dividing a number( may be in amount format of XX.XX) by a integer.
But when i do 6.6 / 6 or 3.3/3 , it gives 1.099999... , instead of 1.1.
What i am doing is, I am dividing the amount equally ...
1
vote
1answer
30 views
How to locally redefine __truediv__ to return Fraction
In Python 3, division of integers, or anything including a float, results in a float:
>>> from fractions import Fraction
>>> f = Fraction(1, 2)
>>> f / 2
Fraction(1, 4)
...
1
vote
1answer
21 views
Rounding up to the multiple of float number in PHP
I want to round number to the specific number or to a multiple of them. For integer it is ok, but problem appears when I want round to the multile of float like this example:
Number (or multiple) of ...
0
votes
0answers
89 views
JavaScript simple calculation
I'm pretty sure I'm being stupid but why isn't this working!?
form.find( '.per_time' ).on( 'change', function() {
var price = parseInt( form.find( '.section-price' ).attr('data-price'), ...
0
votes
1answer
23 views
Logic with spacing when finding remainder
so I have this code:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i,k,m,l;
int add=0;
for(i=1;i<11;i++)
{
printf("%-2d: ",i);
for(k=i;k>0;k--)
{
...
-4
votes
1answer
49 views
Recursive function that divides the number by 2 without using / [closed]
I need help.
I need to create a recursive function that receives a "n" number and returns "n/2" without dividing.
Edit :
This is what I wrote, but it works only if after dividing it will still be a ...
2
votes
3answers
59 views
Whats wrong with my division?
I have a 16-bits sample between -32768 and 32767.
To save space I want to convert it to a 8-bits sample, so I divide the sample by 256, and add 128.
-32768 / 256 = -128 + 128 = 0
32767 / 256 = ...
0
votes
3answers
21 views
How to do a division from calculated values from one table in a single query
I have the following SQL query and I want to calculate a derivated field, A/B:
select center, month, sum(countA) as A, sum(countB) as B, A/B
from counter
group by center, month
However, this ...
-5
votes
0answers
12 views
Code for divide the window using a horizantal line using Html/CSS/javascript [closed]
I have to divide the window using a horizantal line using Html/CSS/javascript. So may i get any code regarding this?
Plz help me..
0
votes
1answer
29 views
How to avoid division by zero error, when performing calculations on parsed xml data
please be kind with your answers I have been coding now for 10 days. I am having trouble with performing loops in my code, but I am fairly certain this is because I am getting a traceback.
I parse ...
0
votes
1answer
40 views
Python - polynomial division GF(2) field
I'm trying to divide polynomials in the GF(2) field.
http://en.wikipedia.org/wiki/Finite_field_arithmetic
http://en.wikipedia.org/wiki/GF(2)
It seems like I have the entire division sequence going ...
3
votes
0answers
80 views
“AttributeError: 'NoneType' object has no attribute 'write'” when dividing two arrays element-wise
I want to divide two one-dimensional arrays element-wise. There will be divisions by zero, but I still want to do the division. The result of div/0 is irrelevant, I'll handle that later.
Why does ...
-1
votes
1answer
38 views
java hadoop job strange behavior in operation 1/double (ONE DIVISION a Double ) in reducer outputcollector
In a Hadoop MapReduce job write in Java
I have found, in the phase of REDUCE, an instability of the division. In the specific 1 / X with X double:
double sum = 0;
while (values.hasNext())
{
sum ...
0
votes
2answers
35 views
Two query, two results from sql trying to divide them in php
i have two count query from the sql. I wan to divide this two query's result. i tried:
$con = mysqli_connect("localhost", "root", "", "xoxo") or die(mysqli_connect_error());
$query = "SELECT ...
1
vote
1answer
28 views
idivl of two numbers where the first is less than the second (in assembly)
To my understanding, the idivl command in C assembly takes the 64-bit number represented by %edx (the more significant half) and %eax (the less significant), divides it by the argument, and stores the ...
0
votes
0answers
56 views
SQL: Fastest way to sum the division of two columns that contain 0's and grouped by a third
Lets say we have 3 columns, all integers, the first the id, the second X and the third Y, where X is 1 when an instance occurred, 0 when not, and Y is 1 when an opportunity for that instance occurred ...
0
votes
0answers
42 views
struts jquery grid not rendering after loading in sj:div
I click on a menu to load a sj:div which contains a sj:grid. The div is updated but the grid is not rendered at all. There is no call to the server to render it. Does anyone know if such scenario can ...
1
vote
3answers
69 views
c++ incorrect floating point arithmetic
For the following program:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
for (float a = 1.0; a < 10; a++)
cout << std::setprecision(30) ...
0
votes
0answers
40 views
Implement Number division by multiplication method
Given an integer array a[N], some of which are zeros. Return an new integer array b[N], while value = a[0] * a[1] * ... * a[N-1], and b[i] = value/a[i].
One way to return b[N] is firstly calculate ...
0
votes
1answer
37 views
Php Division remainders & Arrays
I have an array
$blocks
It has 4 items with constant values
A, B, C, D
$blocks["a"] = 20;
$blocks["b"] = 1000;
$blocks["c"] = 10000;
$blocks["d"] = 50000;
Another function returns a value, ...
4
votes
1answer
62 views
integer division in Ruby with negative value
Trying to do a negative value division in Ruby, e.g. -123/10, why it returns -13 instead of -12 ?
ruby -v
ruby 1.9.3p375 (2013-01-18) [x86_64-darwin12.2.1]
irb(main):001:0> -123/10
=> -13
...
2
votes
1answer
55 views
Incorrect 64-bit division
I am multiplying a 32-bit number with the same number to get their power of 2. Then I want to get certain bits and leave the rest, but the result gets out rounded and not exact.
For example, what I ...
0
votes
2answers
77 views
Division of 2 numbers using CAST function in SQL server 2008R2
I have two numbers I want to divide: 5262167 / 162333331 When verified using windows calculator (calc.exe) the result is 0.0324158136076195 but when used simple select with CAST function in SQL Server ...
6
votes
4answers
207 views
How to find the smallest number with just 0 and 1 which is divided by a given number?
Every positive integer divide some number whose representation (base 10) contains only zeroes and ones.
One can prove that:
Consider the numbers 1, 11, 111, 1111, etc. up to 111... 1, where the
...
1
vote
1answer
80 views
Algorithm: Donald Knuth division algorithm confusion
I'm trying to implement a program that divides two big precision numbers (I'm taking them as strings). Someone from other question on Stack Overflow suggested to implement the algorithm that is ...
1
vote
2answers
92 views
use div instruction to find remainder in assembly x86
mov eax, 0
mov ebx, 0
mov edx, 0
mov ax, 31
mul cx
mov bx, 12
div bx
add bp, ax
mov eax, 0
mov ebx, 0
mov bp, bp
mov al, 7
div al
can anyone tell me whats wrong with the div al instruction in this ...
2
votes
2answers
65 views
division script in Perl
I have a problem with a script in Perl.
I have a text file as input
Hello -> good 0.1 0.2 0.3
Hello -> morning 1 2 0.6
the script make the division like this : (output)
Hello |||good ||| ...
1
vote
2answers
75 views
My division statement keeps coming out to 0
I am trying to make a program to calculate mpg on a road trip. I have it all laid out but on every run I get 0.0 for my mpg. I could use some help. I had to make mpg and totalMpg floats so I could do ...
-1
votes
1answer
65 views
Python does not overwrite int with float [closed]
I got some trouble here with Python. Using Python 2.X and know it has some difficulties with division, that's why I added from __future__ import division and it works fine so far. But I noticed that ...
-2
votes
1answer
56 views
O(1) code to count multiples of a number in a range?
How do I do this in constant time (I do not want to brute for iterate from a to b)?
// return number of multiples of c in [a,b]
long count_multiples(int a, int b, int c) {
assert(b >= a ...
0
votes
4answers
48 views
Unexpected result while dividing int by int and storing result into double [duplicate]
I'm having a weird problem.
This code simply divides an int by another int, stores result in a double variable and prints it:
int a = 200;
int b = 557;
double divisionResult = a / b;
...
0
votes
1answer
55 views
Python/numpy: Splitting an index into coordinates
Context
I'm working in Python and numpy, using an array to represent a 3D terrain. The array is of shape ((0.0, 0.0, 0.0),terrainLength) where terrainLength - for this question's purposes - is ...
0
votes
2answers
45 views
Checking a number's factor
I'm not sure if this title is correct but here's basically what I am trying to do.
I am trying to check if a number is less than 100 and if it isn't I would like to know what factor of 10 I need to ...
2
votes
4answers
77 views
Mod division of two integers
I keep getting the error "The operator % is undefined for the argument type(s) Integer, Integer" I am not quite sure why this is happening. I thought that since modular division cannot return decimals ...
0
votes
3answers
57 views
Multiplying and dividing variables [closed]
I know this sounds simple and it's probably just something I am missing but here is what is happening. I have two variables that needed to be divided then multiplied by another variable. The two ...
0
votes
1answer
61 views
Division by zero in Magento Bestseller Script
I found this script for displaying magentos bestsellers but I get a ERR (3): Warning: Division by zero on line 135 and 163 (see code below). I have been trying to fix it hours and gave up on it but ...
0
votes
5answers
70 views
while loop division go below decided number
This code will divide the score until it reaches the number 5.
The $rows[score] is equal to 6600 in the database.
<?php
$i = $rows[score]; //score is 6600 in the database
while ($i >= ...
-3
votes
4answers
55 views
divide in while loop PHP [closed]
So this code will make a while loop that will subtract 1 from the score at each loop until it reaches 6500 in score.
<?php
$i = $rows[score];
while ($i != 6500) {
echo $i--;
}
?>
But ...
-2
votes
2answers
64 views
Division with float did not give expected result in C#
I am facing a problem in dividing numbers in c#.
See my code in C# for division
double openRate = 0,
long a=542;
long b=4795;
openRate =(a/b)*100
This gives 11.303.. in my calculator .
But c# ...
0
votes
2answers
33 views
SQL Division after HAVING-clausel
i have a sql problem. I got two tables:
album (asin(pk), title, artist, price, release, label, rank)
track (album(pk), dsk, posn, song)
I need to find cheap albums where the price per song is ...
0
votes
4answers
49 views
How to Get only division result between two numbers without modulas in php
$a = 100;
$b = 40;
$result = $a/$b;
echo $result;
for this the result is shown as 2.5 but i want it to be as 2
How to remove division result in this
0
votes
0answers
51 views
C/Arm4 Mult and Division performance
I am trying optimize some code that is going to be used on an ARM architecture.
The target architecture is an ARM9 architecture that doesn't support FPcalculations, and the testing configuration is ...
0
votes
2answers
46 views
Division by long being truncated - C
I'm attempting to time a function using the gettimeofday() function. I'm able to acquire the time in microseconds, but when attempting to divide it by a long to get time in seconds my value is ...
1
vote
1answer
55 views
float division error in python with variables
so I'm doing something really simple:
shared = sum*2.0/(totalCNV(CNVs1,str(chrom))+totalCNV(CNVs2,str(chrom)))
and I get this:
ZeroDivisionError: float division
So now I just want to make it a ...
3
votes
2answers
73 views
How can I print numbers that has zero inside?
I wrote a program to separate digits of a given number. It separates successfully when number is composed of non zeros but when there is a number with 0 inside, it does not recognize and it does not ...
1
vote
4answers
77 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
}
...
5
votes
2answers
181 views
Finding numbers from a to b not divisible by x to y
This is a problem I've been pondering for quite some time.
What is the fastest way to find all numbers from a to b that are not divisible by any number from x to y?
Consider this:
I want to find ...
6
votes
3answers
257 views
How to calculate a^(1/n)?
I am trying to calculate a^(1/n), where ^ denotes exponentiation.
However, the following:
Math.pow(8, 1/3)
returns 1.0 instead of returning 2.0.
Why is that?
1
vote
1answer
35 views
SQLite equal count value as condition
I'm currently working on an SQLite query that has to retrun to me all players that are capable of fulfilling every role in the game. I currently have this code:
SELECT pr.name
FROM (SELECT ...
0
votes
3answers
80 views
C# Decimal Division (Extremely strange behavior)
Can anyone explain this?
Decimal leftSide = 13.0M;
Decimal rightSide = 1.0M;
Decimal tmpDec = 39.0M;
tmpDec * (rightSide / leftSide) = 2.9999999999999999999999999991
tmpDec * rightSide / leftSide = ...







