HP5 Kepler SLaws
HP5 Kepler SLaws
HP5 Kepler SLaws
Prior to Johannes Kepler’s (1571-1630) statement of his three Laws of Planetary Motion:
1. A planet revolves around the Sun in an elliptical orbit with the Sun at one focus.
2. The line joining the Sun to a planet sweeps out equal areas in equal times.
3. The square of the period of revolution of a planet is proportional to the cube of the length of the major
axis of its orbit.
it was thought that the orbits of the planets were circles with the Sun at the center of each.
Kepler assumed that the orbit of the earth was At an easterly elongation.
a circle with the Sun at its center. He asscoiated
to each point of the circle a date of the year (see
Figure 2). He then used Tycho Brahe’s observa-
October 1 April 1
tions of the easterly and westerly elongations of
the planet Mercury — measured as angles as seen
from the earth, from the Sun to Mercury — to
draw a set of lines to which he concluded the orbit At a westerly elongation.
of Mercury must be tangent.
July 1
Figure 2
Obtain data from the Observers’ Handbook, and repeat Kepler’s construction for yourself (using as much
data as possible). Can you inscribe a circle in the resulting set of lines in such a manner that the circle is
tangent to each line? If not, what kind of curve can you inscribe? This should give you some insight into
why Kepler concluded his first law; can you see how he might have arrived at the other two?
The following Maple code may help: it generates a circle with 12 equally spaced tic-marks:
> # CircleWithPoints
> restart: with(plots):
> Circle := implicitplot(x^2+y^2=1,x=-1..1,y=-1..1,scaling=constrained,axes=none):
> P := [0,0];
> N := 12;
> for i from 1 to N do P := P,[cos(2*Pi*i/N),sin(2*Pi*i/N)]: od:
> Points := pointplot([P],color=blue,symbol=circle):
> display(Circle,[Points]);