show/hide this revision's text 3 added 305 characters in body

I would have expected e1+e2 to equal e3+e4.

That's not entirely unlike expecting

 floor( 5/3 ) + floor( 2/3 + 1 )

to equal

 floor( 5/3 + 2/3 ) + floor( 1 )

except you're multiplying by 2^53 before taking the floor.

Using 12 bit precision floating point and truncation with your values:

1.0            =  1.00000000000
1.1            =  1.00011001100
1.2            =  1.00110011001

1.0 + 1.1      = 10.00011001100 // extended during sum
r1 = 1.0 + 1.1 = 10.0001100110  // truncated to 12 bit
r1  + 1.2      = 11.01001100101 // extended during sum
r2 = r1  + 1.2 = 11.0100110010  // truncated to 12 bit

1.1 + 1.2      = 10.01001100110 // extended during sum
r3 = 1.1 + 1.2 = 10.0100110011  // truncated to 12 bit
r3 + 1.0       = 11.01001100110 // extended during sum
r4 = r3  + 1.0 = 11.0100110011  // truncated to 12 bit

So changing the order of operations/truncations causes the the error to change, and r4 != r2. If you add 1.1 and 1.2 in this system, the last bit carries, so in not lost on truncation. If you add 1.0 to 1.1, the last bit of 1.1 is lost and so the result is not the same.

IIRC

In one ordering, C# uses the rounding rather than (by truncation) removes a trailing 1.

In the other ordering, and doubles the rounding removes a trailing 0 both times.

One does not equal zero; so the errors are not the same.

Doubles have many more bits of precision, and C# probably uses rounding rather than truncation, but hopefully this simple model shows you how it different errors can happen with different orderings of the same values.

The difference between fp and maths is that + is shorthand for 'add then round' rather than just add.

show/hide this revision's text 2 found a non-trival but understandable example

(I'm trying to work out a smaller mantissa

Using 12 bit precision floating point and rounding mode that shows it truncation with your numbersvalues:

1.0 = 1.000000000001.1 = 1.000110011001.2 = 1.001100110011.0 + 1.1 = 10.00011001100 // extended during sumr1 = 1.0 + 1.1 = 10.0001100110 // truncated to 12 bitr1 + 1.2 = 11.01001100101 // extended during sumr2 = r1 + 1.2 = 11.0100110010 // truncated to 12 bit1.1 + 1.2 = 10.01001100110 // extended during sumr3 = 1.1 + 1.2 = 10.0100110011 // truncated to 12 bitr3 + 1.0 = 11.01001100110 // extended during sumr4 = r3 + 1.0 = 11.0100110011 // truncated to 12 bit

So changing the order of operations/truncations causes the the error to change, but I've tried a couple and r4 != r2. If you add 1.1 and 1.2 in this system, the last bit carries, so in not lost on truncation. If you add 1.0 to 1.1, the last bit of times doing it by hand 1.1 is lost and so the result is not found one) the same.

IIRC, C# uses rounding rather than truncation, and doubles have many more bits precision, but hopefully this simple model shows you how it can happen.

The difference between fp and maths is that + is shorthand for 'add then round' rather than just add.

show/hide this revision's text 1

I would have expected e1+e2 to equal e3+e4.

That's not entirely unlike expecting

 floor( 5/3 ) + floor( 2/3 + 1 )

to equal

 floor( 5/3 + 2/3 ) + floor( 1 )

except you're multiplying by 2^53 before taking the floor.

(I'm trying to work out a smaller mantissa and rounding mode that shows it with your numbers, but I've tried a couple of times doing it by hand and not found one)