Truncation

From Wikipedia, the free encyclopedia
(Redirected from Trunc (command))
Jump to navigation Jump to search

In mathematics and computer science, truncation is limiting the number of digits right of the decimal point.

Truncation and floor function

[edit | edit source]

Truncation of positive real numbers can be done using the floor function. Given a number x+ to be truncated and n0, the number of elements to be kept behind the decimal point, the truncated value of x is

trunc(x,n)=10nx10n.

However, for negative numbers truncation does not round in the same direction as the floor function: truncation always rounds toward zero, the floor function rounds towards negative infinity. For a given number x, the function ceil is used instead

trunc(x,n)=10nx10n.

Causes of truncation

[edit | edit source]

With computers, truncation can occur when a decimal number is typecast as an integer; it is truncated to zero decimal digits because integers cannot store non-integer real numbers.

In algebra

[edit | edit source]

An analogue of truncation can be applied to polynomials. In this case, the truncation of a polynomial P to degree n can be defined as the sum of all terms of P of degree n or less. Polynomial truncations arise in the study of Taylor polynomials, for example.[1]

See also

[edit | edit source]

References

[edit | edit source]
  1. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
[edit | edit source]

ja:端数処理