I came across this following arithmetic problem.
But the result is different from normal maths operation, Why is it so?
double d1 = 1.000001;
double d2 = 0.000001;
Console.WriteLine((d1-d2)==1.0);
|
|
I came across this following arithmetic problem. But the result is different from normal maths operation, Why is it so?
|
|||
|
|
|
|
I presume you found the question on Jon Skeet's Brainteasers page? The answers are listed and explained here on the same website. For a matter of reference, here's the answer copied from that page. 3) Silly arithmetic Computers are meant to be good at arithmetic, aren't they? Why does this print "False"?
Answer: All the values here are stored as binary floating point. While 1.0 can be stored exactly, 1.000001 is actually stored as 1.0000009999999999177333620536956004798412322998046875, and 0.000001 is actually stored as 0.000000999999999999999954748111825886258685613938723690807819366455078125. The difference between them isn't exactly 1.0, and in fact the difference can't be stored exactly either. |
||
|
|
|
|
If you are doing such arithmetic in your application, the
|
||||
|
|
|
From the MSDN entry for Double.Equals:
If you need to do a lot of "equality" comparisons it might be a good idea to write a little helper function or extension method in .NET 3.5 for comparing:
This could be used the following way:
See this very similar question: C#.NET: Is it safe to check floating point values for equality to 0? |
||
|
|
|
This is due to the way that floating point numbers work in the CPU, it's not C# specific. See this Wikipedia entry and the paper here for more info. The short answer is that floating point numbers aren't stored as an exact representation, so doing a comparison using "==" doesn't work in the way you are trying to use it. |
|||
|
|
|
|
See what python docs has to saym the problem is the same for both: |
||
|
|
|
|
Because you are using floating point numbers. |
||
|
|
|
|
This happens because floating point types store numbers using a base two and not a base ten representation. This has the consequence that double is unable to store values like 0.1 exactly. For example 0.1 is represented by the single value 0.100000001490116119384765625. You have to use Decimal to get rid of the error. |
|||
|
|
|
|
this may be due to floating point precision problems as it could be that your outcome is not exactly 1.0 but maybe something like 1.000000000001 |
||
|
|
|
|
It is because computers do maths in base 2, and hence many decimal floating point numbers can not be represented exactly with a limited number of digits. |
||
|
|