show/hide this revision's text 2 added 193 characters in body

Order of floating point operations is important. Doesn't directly answer your question, but you should always be careful comparing floating point numbers. It's usual to include a tolerance:

double epsilon = 0.0000001;
if (abs(result1 - result2) <= epsilon)
{
    ...
}

This may be of interest: What Every Computer Scientist Should Know About Floating-Point Arithmetic

show/hide this revision's text 1

Order of floating point operations is important. Doesn't directly answer your question, but you should always be careful comparing floating point numbers. It's usual to include a tolerance:

double epsilon = 0.0000001;
if (abs(result1 - result2) <= epsilon)
{
    ...
}