Puneet Varma (Editor)

Fractional part

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The fractional part of a non‐negative real number x is the excess beyond that number's integer part. If the latter is defined as the largest integer not greater than x, called floor of x or x , its fractional part can be written as:

Contents

frac ( x ) = x x , x > 0 .

For a positive number written in a conventional positional numeral system (such as binary or decimal), its fractional part hence equals the digits appearing after the radix point.

For negative numbers

However, in case of negative numbers, there are various conflicting ways to extend the fractional part function to them: It is either defined in the same way as for positive numbers, i.e. by frac ( x ) = x x (Graham, Knuth & Patashnik 1992), or as the part of the number to the right of the radix point, frac ( x ) = | x | | x | (Daintith 2004), finally, by the odd function

frac ( x ) = { x x x 0 x x x < 0

with x as the smallest integer not less than x, also called the ceiling of x. By consequence, we may get, for example, three different values for the fractional part of just one x: let it be −1.3, its fractional part will be 0.7 according to the first definition, 0.3 according to the second definition, and −0.3 according to the third definition, whose result can also be obtained in a straightforward way by

frac ( x ) = x | x | sgn ( x ) .

Unique decomposition into integer and fractional parts

Under the first definition all real numbers can be written in the form n + r , where n is the number to the left of the radix point, and the remaining fractional part r is a nonnegative real number less than one. If x is a positive rational number, then the fractional part of x can be expressed in the form p / q , where p and q are integers and 0 p < q . For example, if x = 1.05, then the fractional part of x is 0.05 and can be expressed as 5 / 100 = 1 / 20.

Relation to continued fractions

Every real number can be essentially uniquely represented as a continued fraction, namely as the sum of its integer part and the reciprocal of its fractional part which is written as the sum of its integer part and the reciprocal of its fractional part, and so on.

References

Fractional part Wikipedia


Similar Topics