Question about errors in Numerical Analysis

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
evinda
Gold Member
MHB
Messages
3,741
Reaction score
0
Hey! I am looking at an exercise in Numerical Analysis and I got stuck.
Why do we have a huge error when we substact two almost equal numbers?
 
Physics news on Phys.org
evinda said:
Hey! I am looking at an exercise in Numerical Analysis and I got stuck.
Why do we have a huge error when we substact two almost equal numbers?

Hey evinda!

Suppose we calculate $1.000001 - 1$.
In a "float" you can only keep 7 significant digits, so the first number cannot have more reliable digits than it already has.
The accuracy of both numbers is $\pm 0.0000005$.
Or as a percentage: $$\frac{0.0000005}{1} \times 100\% = 0.00005 \%$$, which is a pretty small error.The result of the subtraction is $0.000001$, but its accuracy is still about $0.0000005$.
Or as a percentage $$\frac{0.0000005}{0.000001} \times 100\% = 50 \%$$I'd say that is quite a large error relatively speaking. Don't you?
 
Great...I got it...Thank you very much! :o