Cleve Moler is the author of the first MATLAB, one of the founders of MathWorks, and is currently Chief Mathematician at the company. He is the author of two books about MATLAB that are available online. He writes here about MATLAB, scientific computing and interesting mathematics.
Easter Day is one of the most important events in the Christian calendar. It is also one of the most mathematically elusive. In fact, regularization of the observance of Easter was one of the primary motivations for calendar reform centuries ago.
Easter is linked to the Jewish Passover. The informal rule is that Easter Day is the first Sunday after the first full moon after the vernal equinox. But the ecclesiastical full moon and equinox involved in this rule are not always the same as the corresponding astronomical events, which, after all, depend upon the location of the observer on the earth. The date varies between March 22 and April 25.
There is an easter program in Experiments with MATLAB. Let's check this year.
datestr(easter(2013))
ans =
31-Mar-2013
How about next year?
datestr(easter(2014))
ans =
20-Apr-2014
Don Knuth
The EXM program is based on the algorithm presented in the first volume of the classic series by Donald Knuth, The Art of Computer Programming. Knuth has used it in several publications to illustrate different programming languages. The task has often been the topic of an exercise in computer programming courses.
Knuth says that the algorithm is due to the Neapolitan astronomer Aloysius Lilius and the German Jesuit mathematician Christopher Clavious in the late 16th century and that it is used by most Western churches to determine the date of Easter Sunday for any year after 1582.
Metonic cycle
The earth's orbit around the sun and the moon's orbit around the earth are not in sync. It takes the earth about 365.2425 days to orbit the sun. This is known as a tropical year. The moon's orbit around the earth is complicated, but an average orbit takes about 29.53 days. This is known as a synodic month. The fraction
year = 365.2425;
month = 29.53;
format rat
ratio = year/month
ratio =
6444/521
is not the ratio of small integers. However, in the 5th century BC, an astronomer from Athens named Meton observed that the ratio is very close to 235/19.
format short
ratio
meton = 235/19
ratio =
12.3685
meton =
12.3684
In other words, 19 tropical years is close to 235 synodic months. This Metonic cycle was the basis for the Greek calendar and is the key to the algorithm for determining Easter.
MATLAB program
Here is the complete MATLAB program.
% addpath ../../exm
type easter
function dn = easter(y)
% EASTER Date of Easter.
% EASTER(y) is the datenum of Easter in year y.
% Ref: Donald Knuth, The Art of Computer Programming,
% Fundamental Algorithms, pp. 155-156.
% Golden number in 19-year Metonic cycle.
g = mod(y,19) + 1;
% Century number.
c = floor(y/100) + 1;
% Corrections for leap years and moon's orbit.
x = floor(3*c/4) - 12;
z = floor((8*c+5)/25) - 5;
% Epact.
e = mod(11*g+20+z-x,30);
if (e==25 && g>11 || e==24), e = e + 1; end
% Full moon.
n = 44 - e;
if n < 21, n = n + 30; end
% Find a Sunday.
d = floor(5*y/4) - x - 10;
% Easter is a Sunday in March or April.
d = n + 7 - mod(d+n,7);
dn = datenum(y,3,d);
评论
要发表评论,请点击 此处 登录到您的 MathWorks 帐户或创建一个新帐户。