Egyptian approximation of the area of a circle.

We know that the Egyptians had practical interest in geometrical problems such as finding the area of a circle. Here is a problem from the Rhind Papyrus.

Problem: A round field has a diameter of 9 khet. What is its area?

Solution: Use the formula [Maple Math] to compute an area of 64 square khets or setats.

How did this formula arise? One possible derivation comes from approximating the circle with a (nonregular) octogon like so:

[Maple Plot]

>

There are 5 subsequares and 4 half subsquares making up the octogon, which nearly covers the circle. Each subsquare has an area of [Maple Math] , so the total covered by the octogon is [Maple Math] . The octogon does not cover 4 little pieces of the circle, but that is nearly made up for by the eight little triangular pieces of the octogon that slop outside the circle. Possibly the scribe that arrived at the approximate expression [Maple Math] for the area thought that quantity 7/9*d^2 was too small, rewrote it as [Maple Math] and threw in an extra 1/81*d^2 to get [Maple Math] . We can compare these approxmations with the formula we know for the area of a circle of diameter d.

> A1 := d -> 7/9.*d^2;
A2 := d -> (d-d/9.)^2;
A3 := d -> evalf(Pi)*(d/2)^2;

[Maple Math]

[Maple Math]

[Maple Math]

> A := d -> [A1(d),A2(d),A3(d)];

[Maple Math]

To get an approximation for [Maple Math] , compute the area of the circle of diameter 2 by the formulas.

> A(2);

[Maple Math]

The first approximation is [Maple Math] and the second is [Maple Math] , which is better but not as good as the approximations obtained later by Archimedes. There is no evidence that the Egyptian scribes had mastered the concept of similar figures and so the notion of [Maple Math] did not occur to them.

Problems.

1. Note that the fractional approximations of [Maple Math] obtained above bracket it, so their average might be a closer approximation to [Maple Math] . Is it?

2. Circumscribe a square around a circle and subdivide the square into a 4 by 4 grid of 16 subsquares. Is it possible to choose a polygon approximating the circle whose area is easy to compute and gives a better approximation to [Maple Math] than the octogon above?

3. What group of Egyptians might the scribes have spoken to in order to learn about the idea of similar figures?

4. Archimedes obtained [Maple Math] and [Maple Math] as bracketing approximations of [Maple Math] . Find out how he did this.

> (22/7.+223./71)/2;evalf(Pi);

[Maple Math]

[Maple Math]

table of contents