Fractional Part — Definition, Formula & Examples
The fractional part of a number is the portion that remains after you remove the whole-number part. For example, the fractional part of 7.83 is 0.83.
For any real number , the fractional part, denoted , is defined as , where is the greatest integer less than or equal to (the floor function). The fractional part always satisfies .
Key Formula
Where:
- = The fractional part of x
- = Any real number
- = The floor of x (greatest integer ≤ x)
How It Works
To find the fractional part, subtract the integer part from the original number. For positive numbers, this is straightforward: just drop everything before the decimal point. For negative numbers, be careful — the floor of is , not , so the fractional part is . The result is always a value from 0 (inclusive) up to but not including 1.
Worked Example
Problem: Find the fractional part of 5.72.
Step 1: Identify the floor (integer part) of the number.
Step 2: Subtract the floor from the original number.
Answer: The fractional part of 5.72 is 0.72.
Why It Matters
The fractional part appears when you convert improper fractions to mixed numbers — the remainder over the denominator gives you the fractional part. It also shows up in programming and computer science when you need to separate a number into its whole and decimal components.
Common Mistakes
Mistake: Assuming the fractional part of a negative number like is or by simply reading the digits after the decimal point.
Correction: Use the floor function: , so . The fractional part is always between 0 and 1.
