Tagged Questions
The precision tag has no wiki summary.
66
votes
8answers
2k views
In which order should floats be added to get the most precise result?
This was a question I was asked at my recent interview and I want to know (I don't actually remember the theory of the numerical analysis, so please help me :)
If we have some function, which ...
47
votes
6answers
1k views
How many double numbers are there between 0.0 and 1.0?
This is something that's been on my mind for years, but I never took the time to ask before.
Many (pseudo) random number generators generate a random number between 0.0 and 1.0. Mathematically there ...
23
votes
8answers
21k views
How do I print a double value with full precision using cout?
So I've gotten the answer to my last question (I don't know why I didn't think of that). I was printing a double using cout that got rounded when I wasn't expecting it. How can I make cout print a ...
20
votes
5answers
2k views
How best to sum up lots of floating point numbers?
Imagine you have a large array of floating point numbers, of all kinds of sizes. What is the most correct way to calculate the sum, with the least error? For example, when the array looks like this:
...
19
votes
7answers
2k views
PHP Math Precision
$a = '35';
$b = '-34.99';
echo ($a + $b);
Results in 0.009999999999998
What is up with that? I wondered why my program kept reporting odd results.
Why doesn't PHP return the expected 0.01?
17
votes
13answers
3k views
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
double r = 11.631;
double theta = 21.4;
In the debugger, these are shown as 11.631000000000000 and 21.399999618530273.
How can I avoid this?
15
votes
7answers
6k views
Adjusting decimal precision, .net
These lines in C#
decimal a = 2m;
decimal b = 2.0m;
decimal c = 2.00000000m;
decimal d = 2.000000000000000000000000000m;
Console.WriteLine(a);
Console.WriteLine(b);
Console.WriteLine(c);
...
14
votes
4answers
211 views
gcc rounding difference between versions
I'm looking into why a test case is failing
The problematic test can be reduced to doing (4.0/9.0) ** (1.0/2.6), rounding this to 6 digits and checking against a known value (as a string):
...
14
votes
8answers
9k views
C#.NET: Is it safe to check floating point values for equality to 0?
I know you can't rely on equality between double or decimal type values normally, but I'm wondering if 0 is a special case.
While I can understand imprecisions between 0.00000000000001 and ...
13
votes
5answers
5k views
C# DateTime.Now precision
I just ran into some unexpected behavior with DateTime.UtcNow while doing some unit tests. It appears that when you call DateTime.Now/UtcNow in rapid succession, it seems to give you back the same ...
13
votes
18answers
21k views
Retain precision with Doubles in java
public class doublePrecision {
public static void main(String[] args) {
double total = 0;
total += 5.6;
total += 5.8;
System.out.println(total);
}
}
Which returns
11.399999999999
Okay ...
13
votes
11answers
1k views
2.9999999999999999 >> .5?
I heard that you could right-shift a number by .5 instead of using Math.floor(). I decided to check its limits to make sure that it was a suitable replacement, so I checked the following values and ...
12
votes
1answer
2k views
In MATLAB, are variables REALLY double-precision by default?
This question arose out of something strange that I noticed after investigating this question further...
I always understood MATLAB variables to be double-precision by default. So, if I were to do ...
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
Interview Q: find angle between hour and minute hands in an analog clock
I was given this interview question recently:
Given a 12-hour analog clock, compute in degree the smaller angle between the hour and minute hands. Be as precise as you can.
I'm wondering what's ...
10
votes
6answers
2k views
Auto-Interval precision in MS Chart
I'm currently using the charting within .NET using System.Windows.Forms.DataVisualization.Charting.Chart. Thus far it seems very powerful, and works great. However, there is a huge problem in terms of ...
9
votes
1answer
295 views
Why do bean validation Min/Max constraints not support the double type?
Could somebody please explain to me why the JPA supports the double type as a field type, but the bean validation constaints in javax.validation.constraints (i.e. @Min/@Max) do not support it?
I know ...
9
votes
3answers
482 views
Why does a C# System.Decimal remember trailing zeros?
Is there a reason that a C# System.Decimal remembers the number of trailing zeros it was entered with?
See the following example:
public void DoSomething()
{
decimal dec1 = 0.5M;
decimal dec2 ...
9
votes
3answers
722 views
Why is this bearing calculation so inacurate?
Is it even that inaccurate? I re-implented the whole thing with Apfloat arbitrary precision and it made no difference which I should have known to start with!!
public static double bearing(LatLng ...
9
votes
6answers
789 views
Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?
When I type this into the Visual Studio 2008 immediate window:
? .9 - .8999999999999995
It gives me this as the answer:
0.00000000000000055511151231257827
The documentation says that a double has ...
9
votes
4answers
440 views
next higher/lower IEEE double precision number
I am doing high precision scientific computations. In looking for the best representation of various effects, I keep coming up with reasons to want to get the next higher (or lower) double precision ...
8
votes
8answers
327 views
Is it possible to remove floating point errors without resorting to arbitrary-precision datatypes?
I was wondering whether, under specific conditions, it is possible to remove floating point errors without resorting to arbitrary-precision datatypes.
The problem is the usual one. The language is ...
8
votes
2answers
109 views
Instability in DeleteDuplicates and Tally
While preparing an answer to Count how many different values a list takes in Mathematica I came across an instability (for lack of a better term) in both DeleteDuplicates and Tally that I do not ...
8
votes
2answers
498 views
Converting a float to a double loses precision? via string doesn't?
I have the following code:
float f = 0.3f;
double d1 = System.Convert.ToDouble(f);
double d2 = System.Convert.ToDouble(f.ToString());
The results are equivalent to:
...
8
votes
9answers
4k views
How to manually parse a floating point number from a string
Of course most languages have library functions for this, but suppose I want to do it myself.
Suppose that the float is given like in a C or Java program (except for the 'f' or 'd' suffix), for ...
7
votes
7answers
280 views
C# Convert object to Decimal
I'm trying to convert an object with the value 0.39999999999999997 to a decimal variable without losing the precision.
object d = 0.39999999999999997;
I've tried the following methods.
decimal ...
7
votes
3answers
232 views
How do I see high-precision query times in mysql command line?
I'm working through some optimization work, and I've noticed that in some mysql dumps people post in articles and questions (which I cannot find again now that I'm actually looking), there are ...
7
votes
3answers
672 views
C# double precision problem
Imagine that a - b < c (a, b, c are C# doubles). Is it guaranteed that a < b + c?
Thanks!
EDIT
Let's say that the arithmetical overflow doesn't occur unlike the following example:
double a = ...
7
votes
3answers
501 views
32-bit versus 64-bit floating-point performance
I have ran into curious problem.
Algorithm I working on consist of lots of computations like this
q = x(0)*y(0)*z(0) + x(1)*y(1)*z(1) + ...
where the length of summation is between 4 and 7
The ...
7
votes
1answer
385 views
Required Working Precision for the BBP Algorithm?
I'm looking to compute the nth digit of Pi in a low-memory environment. As I don't have decimals available to me, this integer-only BBP algorithm in Python has been a great starting point. I only need ...
7
votes
1answer
401 views
How can I set the level of precision for Perl's bignum?
I'm trying to use the bignum module in Perl and want to set the precision. I know this can be done via a one liner as detailed on the module's CPAN page:
$ perl -Mbignum=p,-50 -le 'print sqrt(20)'
...
7
votes
2answers
4k views
Set the display precision of a float in Ruby
Is it possible to set the display precision of a float in Ruby?
Something like:
z = 1/3
z.to_s #=> 0.33333333333333
z.to_s(3) #=> 0.333
z.to_s(5) #=> 0.33333
Or do I have to override ...
7
votes
4answers
840 views
What is the maximum precision of the Timer in .NET?
I'm wondering what the precision of the Timer class is in System.Timers, because it's a double (which would seem to indicate that you can have fractions of milliseconds). What is it?
7
votes
8answers
465 views
Why does the order affect the rounding when adding multiple doubles in C#
Consider the following C# code:
double result1 = 1.0 + 1.1 + 1.2;
double result2 = 1.2 + 1.0 + 1.1;
if (result1 == result2)
{
...
}
result1 should always equal result2 right? The thing is, it ...
6
votes
2answers
209 views
Java Mutable BigInteger Class
I am doing calculations with BigIntegers that uses a loop that calls multiply() about 100 billion times, and the new object creation from the BigInteger is making it very slow. I was hoping somebody ...
6
votes
1answer
252 views
C# double to decimal precision loss
I've a double "138630.78380386264" and i want to convert it to a decimal however when i do so i either by casting or by using Convert.ToDecimal. I loose precision.
What's going on? Both decimal and ...
6
votes
4answers
150 views
A example in Gotw 67
There is a example in http://www.gotw.ca/gotw/067.htm
int main()
{
double x = 1e8;
//float x = 1e8;
while( x > 0 )
{
--x;
}
}
When you change the double to float, it's a infinite ...
6
votes
2answers
471 views
MATLAB precision
How can I implement quadruple precision (128 bit arithmetic) in MATLAB while solving a Matrix eigenvalue problem ?
I am trying to solve a linear stability analysis problem for incompressible plane ...
6
votes
1answer
520 views
What's the best (for speed) arbitrary-precision library for C++?
I need the fastest library that is available for C++. My platform will be x86 and x86-64 which supports floating points.
6
votes
2answers
126 views
For any finite floating point value, is it guaranteed that x - x == 0?
Floating point values are inexact, which is why we should rarely use strict numerical equality in comparisons. For example, in Java this prints false (as seen on ideone.com):
System.out.println(.1 + ...
6
votes
3answers
252 views
Issues with checking the equality of two doubles in .NET — what's wrong with this method?
So I'm just going to dive into this issue... I've got a heavily used web application that, for the first time in 2 years, failed doing an equality check on two doubles using the equality function a ...
6
votes
4answers
615 views
Firing events at microsecond resolution for midi sequencer
Is there a way to fire events in C# at a resolution of a few microseconds?
I am building a MIDI sequencer, and it requires an event to be fired every MIDI tick, which will then play any note ...
6
votes
2answers
1k views
Setting minimum number of decimal places for std::ostream precision
Is there a way to set the "minimum" number of decimal places that a std::ostream will output?
For example, say I have two unknown double variables that I want to print (values added here for the sake ...
6
votes
2answers
450 views
MS Access Rounding Precision With Group By
Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)?
Average
SELECT Avg(r.score) AS rawScore
FROM (ET INNER JOIN Employee ...
6
votes
2answers
11k views
C# Converting 20 digit precision double to string and back again
In C#. I have a double (which I've extracted from a database) that has 20 digit precision. In Visual Studio (using QuickWatch) I can see the value of the double to be = 0.00034101243963859839.
I ...
5
votes
4answers
232 views
matlab and c differ with cos function
I have a program implemented in matlab and the same program in c, and the results differ.
I am bit puzzled that the cos function does not return the exact same result.
I use the same computer, Intel ...
5
votes
1answer
147 views
Firefox and Javascript Rounding Rules
I don't know if I'm missing something obvious here but...
In IE, Opera and Chrome, I get what I expect from rounding numbers ending in a 5:
125 toPrecision(2) => 130
11.5 toPrecision(2) => 12
...
5
votes
3answers
1k views
SQL Server truncates decimal points of a newly created field in a view
I have a view in SQL server, something like this:
select 6.71/3.41 as NewNumber
The result is 1.967741 (note 6 decimal points) -> decimal (38,6)
I try the same thing in a calculator but the result ...
5
votes
4answers
733 views
Formatting numbers when writing to files in Mathematica
This is a continuation of this question regarding number formatting, and related to my earlier question about obtaining very specific Mathematica output to text files.
I frequently have to use high ...
5
votes
4answers
367 views
Determinants of huge matrices in MATLAB
from a simulation problem, I want to calculate complex square matrices on the order of 1000x1000 in MATLAB. Since the values refer to those of Bessel functions, the matrices are not at all sparse.
...