For the following code (Java):
double d = (double) m / n; //m and n are integers, n>0
int i = (int) (d * n);
i == m
Is the last expression always true? If it's not is this always true?:
i = (int) Math.round(d * n);
i == m
|
For the following code (Java):
Is the last expression always true? If it's not is this always true?:
|
|||||||
|
|
The second question you ask concerns how large an ulp is in Java. If the ulp exceeds The following program tests all the positive integer values of
The output is:
Rounding that using Math.round, then casting to int should recover the original int. |
|||
|
|
This is false for m=1, n=49.
My intuition tells me it should be true, but it may be hard to prove rigorously. |
|||||||||
|
|
Mathematically it should be true. However you're likely going to get floating point rounding errors that will make it false. You should almost never compare floating point precision numbers using You're much better off comparing them using a threshold like this:
Note that the two statements should be equivalent
However for example, if |
|||||
|
|
The first on is definitely not always true. The second one I would say yes it's true, but only because I can't think of a counterexample. If n is very large, it could possibly be false, I'm not sure really. I know it will be true at least 99% of the time though. |
|||
|
|