Consider a number $(x)_\beta$ : $$x = \pm 0.d_1d_2 \ldots d_pd_{p+1}d_{p+2} \ldots \times \beta^E$$ The function $chop(x)$ considers only the first $p$ digits ignoring digits from $(p+1)$th to infinite. So the machine number $\tilde{x}$ is the number obtained from the above function: $$\tilde{x} = chop(x) = \pm0.d_1d_2 \ldots d_p \times \beta^E$$
For the Absolute Error $e_A$ we have : \begin{split} e_A(chop(x)) & = |x - chop(x)| \\ & = 0.\underbrace{00 \ldots 0}_{p \text{ zeros} }d_{p+1}d_{p+2} \ldots \times \beta^E \\ & = 0.d_{p+1}d_{p+2}\ldots \times \beta^{E-p} < \beta^{E-p} \end{split}
For the Relative Error $e_R$ we have that:
\begin{split} |x| & \ge 0.d_1 \times \beta^{E} \\ & = d_1 \times \beta^{E-1} \ge \beta^{E-1} \end{split}
since $d_1 \ne 0$ we have that: $$ \begin{array}{lcl} e_R(chop(x)) & = & \left | \frac{x - chop(x)}{x} \right | & < & \frac{\beta^{E-p}}{\beta^{E-1}} & = & \beta^{1-p} \end{array} $$
We can see that the Relative Error, (conversely from the Absolute Error), doesn't depend from the size of the number, but only from he number of digits of the mantissa. Therefore, if we have many digits in the mantissa, the Relative Error will be smaller.
This is what I want to ask:
In the last part, I don't understand how to obtain that inequality:
$$\begin{align}{} \ldots = \left | \frac{x - chop(x)}{x} \right | < \frac{\beta^{E-p}}{\beta^{E-1}} = \ldots \end{align}$$
I know that:
- $|x-chop(x)| < \beta^{E-p}$
- $|x| \ge \beta^{E-1}$
it seems that we have an implication like this, (using a not fully suitable notation) : $$$$\begin{align}{} \frac{\left | x - chop(x) \right | < \beta^{E-p}}{|x| \ge \beta^{E-1}} \Longrightarrow \left | \frac{x - chop(x)}{x} \right | < \frac{\beta^{E-p}}{\beta^{E-1}} \end{align}$$$$
Is there any algebraic-property applied here?
Please, Can you give me any suggestions? Many thanks!