Relative Error in the FLX Format #
The unbounded-exponent flxExp prec format has a uniform relative-error bound. For a nonzero
input, its ULP is β^(magnitude x - prec), while the magnitude lower bound gives
β^(magnitude x - 1) ≤ |x|. Their ratio is therefore at most β^(1 - prec).
Combining the ULP ratio with nearest rounding gives the unit-roundoff bound
u = β^(1 - prec) / 2. The same bound holds for FLT inputs in the normal range. The sharper
classical bound u / (1 + u) for nearest rounding is not proved here.
Nearest FLX rounding has relative error at most the unit roundoff u = β^(1 - prec) / 2.
Nearest FLX rounding admits the usual multiplicative model
round x = x * (1 + δ) with |δ| ≤ u, where u = β^(1 - prec) / 2 is the unit roundoff.
Nearest FLT rounding has relative error at most u = β^(1 - prec) / 2 in the normal range.