An Egyptian fraction is a sum of
distinct unit fractions, but it's easy to convert sums of non-distinct fractions into Egyptian fractions, by repeatedly finding pairs of equal fractions 1/
k + 1/
k and replacing them either by 2/
k (if
k is even) or 2/(
k+1) + 2/
k(
k+1) as I described
here. For example,
5/18 => 1/18 + 1/18 + 1/18 + 1/18 + 1/18 => 1/18 + 1/9 + 1/9 => 1/18 + 1/5 + 1/45.
It also works to replace 1/
k + 1/
k by 1/
k + 1/(
k+1) + 1/
k(
k+1), as Graham and Jewett proved:
3/7 => 1/7 + 1/7 + 1/7 => 1/7 + 1/8 + 1/8 + 1/56 + 1/56 => 1/7 + 1/8 + 1/9 + 1/72 + 1/56 + 1/57 + 1/3192.
Both of these methods produce fractions that may have significantly larger denominators than the starting one, because the replacement formulas involve quadratic polynomials. But maybe that quadratic blowup is unnecessary? What if we try a much simpler replacement: 1/
k + 1/
k => 1/
k + 1/2
k + 1/3
k + 1/6
k?
3/4 => 1/4 + 1/4 + 1/4 => 1/4 + 1/8 + 1/8 + 1/12 + 1/12 + 1/24 + 1/24 = 1/4 + 1/8 + 1/12 + 1/12 + 1/16 + 1/24 + 1/24 + 1/24 + 1/48
and now we have a problem: the three copies of 1/4 led to three copies of 1/24, which will lead to three copies of 1/144, which...won't ever terminate.
Can we fix this by a more complicated replacement rule? What about, say, 1/
k + 1/
k => 1/2
k + 1/3
k + 1/7
k + 1/42
k? No such expansion rule, in which all the denominators of the expansion are linear in the duplicated input denominator, can work! For, in a rule with
s terms in the expansion, starting with
a copies of the same fraction and expanding one of these copies once, one copy twice, etc., results in an expansion with ≥
sa-1 terms, all of which belong to a set of O(
as) different multiples of the starting denominator. So for any sufficiently large
a, we can find after these forced expansions a larger denominator
d with at least
a copies of the fraction 1/
d, setting off the same kind of infinite loop we saw for the 1/2 + 1/3 + 1/6 expansion.