- Loss of significance
Loss of significance is an undesirable effect in calculations using floating-point arithmetic. It occurs when an operation on two numbers increases
relative error substantially more than it increasesabsolute error , for example in subtracting two large and nearly equal numbers. The effect is that the number of accurate (significant) digits in the result is reduced unacceptably. Ways to avoid this effect are studied innumerical analysis .In floating-point arithmetic, only a limited number of digits of the number are maintained; floating-point numbers can only approximate most real numbers.
Consider the
real number :
A floating-point representation of this number on a machinethat keeps 10 floating-point digits would be
:
which is fairly close — the difference is very small incomparison with either of the two numbers.
Now perform the calculation
:
The real answer, accurate to 10 digits, is
:
However, on the 10-digit floating-point machine, the calculation yields
:
Whereas the original numbers are accurate in all of the first(most significant) 10 digits, their floating-point differenceis only accurate in its first digit. This amounts to lossof information.
It is possible to do computations using an exact representation of
rational number s and keep all significant digits, but this is often prohibitively slower than floating-point arithmetic. Furthermore, it usually only postponesthe problem: What if the data is accurate to only 10 digits?The same effect will occur.One of the most important parts of numerical analysis is to avoidor minimize loss of significance in calculations. If the underlyingproblem is well-posed, there should be a
stable algorithm for solving it. The art is in finding a stable algorithm.Loss of significant bits
Let "x" and "y" be positive normalized floating point numbers.
In the subtraction "x" − "y", "r" significant bits are lost where
:
:
for some positive integers "p" and "q".
Instability of the quadratic equation
For example, consider the venerable
quadratic equation :
The quadratic equation gives the two solutions as
:
The case , , will serve to illustrate the problem:
:
We have
:
In real arithmetic, the roots are
::
In 10-digit floating-point arithmetic,
::
Notice that the solution of greater magnitude is accurate to ten digits, but the first nonzero digit of the solution of lesser magnitude is wrong.
Because of the subtraction that occurs in the quadratic equation,it does not constitute a stable algorithm to calculate thetwo roots.
A better algorithm
A better algorithm for solving quadratic equations is based on two observations: that one solution is always accurate when the other is not, and that given one solution of the quadratic, the other is easy to find.
If:
and:
then we have the identity
:.
The algorithm is as follows. Use the quadratic formula to find the solution of greater magnitude, which "does not" suffer from loss of precision.Then use this identity to calculate the other root. Since nosubtraction is involved, no loss of precision occurs.
Applying this algorithm to our problem, and using 10-digit floating-pointarithmetic, the solution of greater magnitude, as before, is The other solution is then
:
which is accurate.
Wikimedia Foundation. 2010.