Error from taking a finite sum of an infinite series
In numerical analysis and scientific computing, truncation error is an error caused by approximating a mathematical process.[1][2]
Examples
Infinite series
A summation series for
is given by an infinite series such as

In reality, we can only use a finite number of these terms as it would take an infinite amount of computational time to make use of all of them. So let's suppose we use only three terms of the series, then

In this case, the truncation error is
Example A:
Given the following infinite series, find the truncation error for x = 0.75 if only the first three terms of the series are used.

Solution
Using only first three terms of the series gives

The sum of an infinite geometrical series

is given by

For our series, a = 1 and r = 0.75, to give

The truncation error hence is

Differentiation
The definition of the exact first derivative of the function is given by

However, if we are calculating the derivative numerically,
has to be finite. The error caused by choosing
to be finite is a truncation error in the mathematical process of differentiation.
Example A:
Find the truncation in calculating the first derivative of
at
using a step size of
Solution:
The first derivative of
is

and at
,

The approximate value is given by

The truncation error hence is

Integration
The definition of the exact integral of a function
from
to
is given as follows.
Let
be a function defined on a closed interval
of the real numbers,
, and
![{\displaystyle P=\left\{[x_{0},x_{1}],[x_{1},x_{2}],\dots ,[x_{n-1},x_{n}]\right\},}](https://wikimedia.org/api/rest_v1/media/math/render/svg/e154f451e776e58ef356670f49b866ea897bda1b)
be a partition of I, where


where
and
.
This implies that we are finding the area under the curve using infinite rectangles. However, if we are calculating the integral numerically, we can only use a finite number of rectangles. The error caused by choosing a finite number of rectangles as opposed to an infinite number of them is a truncation error in the mathematical process of integration.
Example A.
For the integral

find the truncation error if a two-segment left-hand Riemann sum is used with equal width of segments.
Solution
We have the exact value as
![{\displaystyle {\begin{aligned}\int _{3}^{9}{x^{2}{dx))&=\left[{\frac {x^{3)){3))\right]_{3}^{9}\\&=\left[{\frac {9^{3}-3^{3)){3))\right]\\&=234\end{aligned))}](https://wikimedia.org/api/rest_v1/media/math/render/svg/a5709298d239080a0090b20171fa298364ac5e16)
Using two rectangles of equal width to approximate the area (see Figure 2) under the curve, the approximate value of the integral


Occasionally, by mistake, round-off error (the consequence of using finite precision floating point numbers on computers), is also called truncation error, especially if the number is rounded by chopping. That is not the correct use of "truncation error"; however calling it truncating a number may be acceptable.
Addition
Truncation error can cause
within a computer when
because
(like it should), while
. Here,
has a truncation error equal to 1. This truncation error occurs because computers do not store the least significant digits of an extremely large integer.