
One way might be to write 115137=1137+1137+...+1137 and try to find lots of different ways to write 1137 as a sum of unit fractions...
I wonder if there's a more efficient way?
One possibility is to try a so-called Greedy Algorithm:
At each stage, write down the largest possible unit fraction that is smaller than the fraction you're working on.
For example, let's start with 1112.
The largest possible unit fraction that is smaller than 1112 is 12.
1112−12=512
So 1112=12+512
The largest possible unit fraction that is smaller than 512 is 13
512−13=112
So 1112=12+13+112
Choose some fractions of your own and apply the Greedy Algorithm until you are left with a sum of unit fractions.
Can you find any fractions where the Greedy Algorithm only takes a small number of steps?
Can you find any fractions where the Greedy Algorithm takes a very large number of steps?
Are there any fractions where the Greedy Algorithm doesn't terminate? How do you know?