Recall the grade school rational approximation to the number π.
p = 22/7
p =
3.1429e+00
Note that not all of the digits displayed for p are the same as for π. As an approximation, its absolute and relative accuracy are
abs_accuracy = abs(p-pi)
abs_accuracy =
1.2645e-03
rel_accuracy = abs(p-pi)/pi
rel_accuracy =
4.0250e-04
accurate_digits = -log10(rel_accuracy)
accurate_digits =
3.3952e+00