Possible Duplicate:
Why can't decimal numbers be represented exactly in binary?

I have a problem,am solving a simplex problem,while several iterations,in 1 iteration the value turned out to be .400000,now i am multiplying this value with 100 to obtain 40.000000.Now am subtracting this value with 40,but the solution is coming out to be .000001.Please help me out with this,am not able to figure out how this value is turning out to .000001?? As this .000001 is giving problems while checking value,i.e i am comparing with 0,but compiler is treating this as value greater than 0,and am getting wrong answer.How can i correct this error?

link|improve this question
sigh Floating point precision (en.wikipedia.org/wiki/Floating_point#Accuracy_problems) - if there'd be some SO FAQ, this would be one of the top 10. – schnaader Apr 30 '11 at 20:52
so is there any solution to this problem? – Nimesh Apr 30 '11 at 20:57
@Nimesh: don't use float variables; use double instead – pmg Apr 30 '11 at 21:05
@pmg Nice, now I also know! So the concept is - the more space in memory the more precisely you can represent the number? – rzetterberg Apr 30 '11 at 21:07
1  
@Ancide: I implemented Madhava's method for calculatin pi in float, double, and (C99) long double and tested it on ideone. Apparently float has 8 digits precision; double has 16; and long double has 19 digits of precision. – pmg Apr 30 '11 at 22:09
show 2 more comments
feedback

closed as exact duplicate by Michael Petrotta, schnaader, Hans Passant, Bo Persson, Rubens Farias May 1 '11 at 11:08

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

It has to do with the machine precision in Floating points. Have a read about it here: http://en.wikipedia.org/wiki/Floating_point#Machine_precision

link|improve this answer
so is there any solution to this problem? – Nimesh Apr 30 '11 at 21:01
I'm afraid that is above my knowledge. But have a read en.wikipedia.org/wiki/… and see if you get any viser :) – rzetterberg Apr 30 '11 at 21:05
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.