Egyptian Fractions Calculator
Express a fraction as a sum of distinct unit fractions.
Ancient Egyptians wrote every fraction as a sum of distinct unit fractions (1/n).
The math behind it
Fibonacci's greedy algorithm repeatedly subtracts the largest unit fraction not exceeding the remaining value, guaranteeing a finite expansion.
Worked example
5/6 = 1/2 + 1/3.
FAQ
Is the expansion unique?
No — a fraction can have several Egyptian representations; the greedy method gives one of them.