惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
J
Java Code Geeks
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
美团技术团队
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
Vercel News
Vercel News
V
Visual Studio Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学

The Universe of Discourse

George Orwell The road to epsilon-zero: Shortlex order also orders sequences of numbers The road to epsilon-zero: Productive programs and well-founded orders There are two kinds of theorems The road to epsilon-zero: Coin-moving games with no coins Seven books I keep close because I love them The road to epsilon-zero: Infinite Nim as a coin-moving game “Steph Curry: fluke or breakthrough” ten years later The road to epsilon-zero: Infinite Nim as a coin-moving game The road to epsilon-zero: Nim always ends, even with infinite ordinals The road to epsilon-zero: ordinals as nim-heaps Starting to understand epsilon-zero I owe my life to a 1913 road rage incident Deciphering basmala My 1992 view of the problems of computer programming in 1992 Egyptian fraction multiplication Update: Here I am at the Sagrada Família Programmers will document for Claude, but not for each other Did Ahmes find the best expansions for 2/n? How are John Waters movies like James Bond movies? Documentation is a message in a bottle Bo Diddley
Egyptian fractions for 2/105
2026-06-12 · via The Universe of Discourse

Fri, 12 Jun 2026

Egyptian fractions for 2/105

!!\def\u#1{\frac1{#1}}!!

The ancient Egyptians had a terrible notation for fractions. They had notations for !!\u n!! for each !!n!!, for !!\frac23!!, but everything else was written as a sum of these, with repeats forbidden, so that for example !!\frac25!! had to be written as !!\u3 + \u{15}!!. (Wikipedia)

In an older article about Egyptian fractions and the Rhind Mathematical Papyrus, I said:

Getting the table of good-quality representations of !!\frac2n!! is not trivial, and requires searching, number theory, and some trial and error. It's not at all clear that !!\frac2{105}=\u{90} + \u{126}!!.

I think I see now where this comes from. !!105 = 3·7·5!!, so two of the summands must have denominators divisible by !!5!! and by !!7!! respectively. The first thing you should do is consider $$\u5 + \u7 = \frac{12}{35} = \frac{36}{105}.$$

But you don't want !!\frac{36}{105}!!, you want !!\frac{2}{105}!!, so you multiply by !!\u{18}!!:

$$\u{18}\left(\u5 + \u7\right) = \u{90}+\u{126} = \frac 2{105}$$

and there it is.

Why pick !!\u5!! and !!\u7!! rather than, say, !!\u3!! and !!\u5!!? I suspect the answer is probably: Ahmes (or someone earlier) tried it both ways and picked the result they liked best. Remember Ahmes is compiling a reference table here, so he does these calculations once, writes down the best result, and throws the others away.

If you do the same trick with !!3!! and !!5!! instead you get !!\u3+\u5 = \frac8{15} = \frac{56}{105}!!. Then you multiply everything by !!\u{28}!! producing $$\u{84} + \u{140} = \frac2{105}$$ which seems a little worse than the other one. Using the !!3!! and the !!5!! produces $$\u{75} + \u{175} = \frac2{105}$$ which seems much worse.

Of course this only works when the denominator is composite.

Here's another approach, which doesn't work too well in this case but might be useful for other examples. Consider that !!\frac23 = \u2 + \u6!!. We want !!\frac2{105} = \u{35}\cdot\frac23!!. So

$$ \begin{align} \frac2{105} & = \u{35}\cdot\frac23 \\ & = \u{35}\left(\u2+\u6\right) \\ & = \u{70} + \u{210} \end{align} $$

The denominators here are a lot bigger than the first expansion, but they do at least have the advantage of being multiples of !!10!!. The Egyptians like this because they, like us, often need to multiply numbers by !!10!!, and whereas a fraction like !!\u{126}!! is hard for them to multiply by !!10!!, it's trivial to multiply !!\u{210}!! by !!10!!.

[Other articles in category /math] permanent link