Loss of significance Guide, Meaning , Facts, Information and Description
Loss of significance is an undesirable effect in calculations using floating-point arithmetic. It occurs when two nearly equal numbers are subtracted to produce a result much smaller than either of the original numbers. The effect is that the number of accurate (significant) digits in the result is reduced unacceptably. Ways to avoid this effect are studied in numerical 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
0.1234567891234567890 .
A floating-point representation of this number on a machine that keeps 10 floating-point digits would be
0.1234567891,
which is fairly close--the difference is very small in comparison with either of the two numbers.
Now perform the calculation
0.1234567891234567890 - 0.1234567890 .
The real answer, accurate to 10 digits, is
0.0000000001234567890 .
However, on the 10-digit floating-point machine, the calculation yields
0.1234567891 - 0.1234567890 = 0.0000000001 .
Whereas the original numbers are accurate in all of the first (most significant) 10 digits, their floating-point difference is only accurate in its first digit. This amounts to loss of information.
It is possible to do computations using an exact representation of rational numbers and keep all significant digits, but this is often prohibitively slower than floating-point arithmetic. Furthermore, it usually only postpones the 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 avoid or minimize loss of significance in calculations. If the underlying problem is well-posed, there should be a stable algorithm for solving it. The art is in finding a stable algorithm.
| Table of contents |
|
2 Instability of the quadratic equation 3 A better algorithm |
Let x and y be positive normalized floating point numbers.
In the subtraction x - y, r significant bits are lost where
For example, consider the venerable quadratic equation
.
The quadratic equation gives the two solutions as
.
We have
In real arithmetic, the roots are
,
In 10-digit floating-point arithmetic,
,
Notice that the solution of greater magnitude (absolute value) 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 the
two roots.Loss of significant bits
for some positive integers p and q.Instability of the quadratic equation
The case , , will serve to illustrate the problem:
.
.
