Rahul Sharma (Editor)

Doomsday rule

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Doomsday rule

The Doomsday rule or Doomsday algorithm is a way of calculating the day of the week of a given date. It provides a perpetual calendar because the Gregorian calendar moves in cycles of 400 years.

Contents

This algorithm for mental calculation was devised by John Conway in 1973 after drawing inspiration from Lewis Carroll's work on a perpetual calendar algorithm. It takes advantage of each year having a certain day of the week (the doomsday) upon which certain easy-to-remember dates fall; for example, 4/4, 6/6, 8/8, 10/10, 12/12, and the last day of February all occur on the same day of the week in any given year. Applying the Doomsday algorithm involves three steps:

  1. Determine the "anchor day" for the century.
  2. Use the anchor day for the century to calculate the doomsday for the year.
  3. Choose the closest date out of the ones that always fall on the doomsday (e.g. 4/4, 6/6), and count the number of days (modulo 7) between that date and the date in question to arrive at the day of the week.

This technique applies to both the Gregorian calendar A.D. and the Julian calendar, although their doomsdays will usually be different days of the week.

Since this algorithm involves treating days of the week like numbers modulo 7, John Conway suggests thinking of the days of the week as "Noneday"; or as "Sansday" (for Sunday), "Oneday", "Twosday", "Treblesday", "Foursday", "Fiveday", and "Six-a-day". There are some languages, like Portuguese and Galician who base some of the names of the week days in their positional order.

The algorithm is simple enough for anyone with basic arithmetic ability to do the calculations mentally. Conway can usually give the correct answer in under two seconds. To improve his speed, he practices his calendrical calculations on his computer, which is programmed to quiz him with random dates every time he logs on.

Doomsdays for some contemporary years

Doomsday for the current year in the Gregorian calendar (2017) is Tuesday.

For some other contemporary years :

Notes: Fill in the table horizontally, skipping one column for each leap year. This table cycles every 28 years, except in the Gregorian calendar on years multiple of 100 (like 1900 which is not a leap year) that are not multiple of 400 (like 2000 which is still a leap year). The full cycle is 28 years (1,461 weeks) in the Julian calendar, 400 years (20,871 weeks) in the Gregorian calendar.

Memorable dates that always land on Doomsday

One can easily find the day of the week of a given calendar date by using a nearby Doomsday as a reference point. To help with this, the following is a list of easy-to-remember dates for each month that always land on the Doomsday.

As mentioned above, the last day of February defines the doomsday. For January, January 3 is a doomsday during common years and January 4 a doomsday during leap years, which can be remembered as "the 3rd during 3 years in 4, and the 4th in the 4th year". For March, one can remember the pseudo-date "March 0", which refers to the day before March 1, i.e. the last day of February.

For the months April through December, the even numbered months are covered by the double dates 4/4, 6/6, 8/8, 10/10, and 12/12, all of which fall on the doomsday. The odd numbered months can be remembered with the mnemonic "I work from 9 to 5 at the 7-11", i.e., 9/5, 7/11, and also 5/9 and 11/7, are all doomsdays.

Since the Doomsday for a particular year is directly related to weekdays of dates in the period from March through February of the next year, common years and leap years have to be distinguished for January and February of the same year.

Examples

To find which day of the week Christmas Day of 2006 was: in the year 2006, Doomsday was Tuesday. Since December 12 is a Doomsday, December 25, being thirteen days afterwards (two weeks less a day), fell on a Monday.

It is useful to note that Christmas Day is always the day before Doomsday ("One off Doomsday"). In addition, July 4 is always on a Doomsday, as is Halloween (October 31).

To find the day of week that the September 11, 2001 attacks on the World Trade Center occurred: the century anchor was Tuesday, and Doomsday for 2001 is one day beyond, which is Wednesday. September 5 was a Doomsday, and September 11, six days later, fell on a Tuesday.

Finding a year's Doomsday

We first take the anchor day for the century. For the purposes of the Doomsday rule, a century starts with '00 and ends with '99. The following table shows the anchor day of centuries 1800–1899, 1900–1999, 2000–2099 and 2100–2199.

Next, we find the year's Doomsday. To accomplish that according to Conway:

  1. Divide the year's last two digits (call this y) by 12 and let a be the floor of the quotient.
  2. Let b be the remainder of the same quotient.
  3. Divide that remainder by 4 and let c be the floor of the quotient.
  4. Let d be the sum of the three numbers (d = a + b + c). (It is again possible here to divide by seven and take the remainder. This number is equivalent, as it must be, to the sum of the last two digits of the year taken collectively plus the floor of those collective digits divided by four.)
  5. Count forward the specified number of days (d or the remainder of d/7) from the anchor day to get the year's Doomsday.
( y 12 + y mod 1 2 + y mod 1 2 4 ) mod 7 + a n c h o r = D o o m s d a y

For the twentieth-century year 1966, for example:

( 66 12 + 66 mod 1 2 + 66 mod 1 2 4 ) mod 7 + W e d n e s d a y = ( 5 + 6 + 1 ) mod 7 + W e d n e s d a y   = M o n d a y

As described in bullet 4, above, this is equivalent to:

( 66 + 66 4 ) mod 7 + W e d n e s d a y = ( 66 + 16 ) mod 7 + W e d n e s d a y   = M o n d a y

So Doomsday in 1966 fell on Monday.

Similarly, Doomsday in 2005 is on a Monday:

( 5 12 + 5 mod 1 2 + 5 mod 1 2 4 ) mod 7 + T u e s d a y = M o n d a y

Why it works

The doomsday calculation is effectively calculating the number of days between any given date in the base year and the same date in the current year, then taking the remainder modulo 7. When both dates come after the leap day (if any), the difference is just 365y + y/4 (rounded down). But 365 equals 52 × 7 + 1, so after taking the remainder we get just

( y + y 4 ) mod 7 .

This gives a simpler formula if one is comfortable dividing large values of y by both 4 and 7. For example, we can compute

( 66 + 66 4 ) mod 7 = ( 66 + 16 ) mod 7 = 82 mod 7 = 5

which gives the same answer as in the example above.

Where 12 comes in is that the pattern of (y + ⌊y/4⌋) mod 7 almost repeats every 12 years. After 12 years, we get (12 + 12/4) mod 7 = 15 mod 7 = 1. If we replace y by y mod 12, we are throwing this extra day away; but adding back in y/12 compensates for this error, giving the final formula.

The "odd + 11" method

A simpler method for finding the year's doomsday was discovered in 2010 by Chamberlain Fong and Michael K. Walters, and described in their paper submitted to the 7th International Congress on Industrial and Applied Mathematics (2011). Called the "odd + 11" method, it is equivalent to computing

( y + y 4 ) mod 7 .

It is well suited to mental calculation, because it requires no division by 4 (or 12), and the procedure is easy to remember because of its repeated use of the "odd + 11" rule.

Extending this to get the Doomsday, the procedure is often described as accumulating a running total T in six steps, as follows:

  1. Let T be the year's last two digits.
  2. If T is odd, add 11.
  3. Now let T = T/2.
  4. If T is odd, add 11.
  5. Now let T = 7 − (T mod 7).
  6. Count forward T days from the century's anchor day to get the year's Doomsday.

Applying this method to the year 2005, for example, the steps as outlined would be:

  1. T = 5
  2. T = 5 + 11 = 16 (adding 11 because T is odd)
  3. T = 16/2 = 8
  4. T = 8 (do nothing since T is even)
  5. T = 7 − (8 mod 7) = 7 − 1 = 6
  6. Doomsday for 2005 = 6 + Tuesday = Monday

The explicit formula for the odd+11 method is:

7 [ y + 11 ( y mod 2 ) 2 + 11 ( y + 11 ( y mod 2 ) 2 mod 2 ) ] mod 7 .

Although this expression looks daunting and complicated, it is actually simple because of a common subexpression y + 11(y mod 2)/2 that only needs to be calculated once.

Dominical letter method

A year's doomsday (DD) can also be determined from a year's dominical letter (DL).

DD = (3 − DL) mod 7

Note: A = 1 = Monday, B = 2 = Tuesday, ..., G = 0 = Sunday.

For the year 1966 the dominical letter is B, so the doomsday DD = 3 – 2 = 1 = Monday.

Look up the table below for the Dominical letter.

All the C days are doomsdays (Jan and Feb in bold for leap years).

Finding a century's anchor day

For the Gregorian calendar:

Mathematical formula 5 × (c mod 4) mod 7 + Tuesday = anchor. Algorithmic Let r = c mod 4 if r = 0 then anchor = Tuesday if r = 1 then anchor = Sunday if r = 2 then anchor = Friday if r = 3 then anchor = Wednesday

For the Julian calendar:

6 × (c mod 7) mod 7 + Sunday = anchor.

Note: c = ⌊year/100.

Overview of all Doomsdays

* In leap years the nth Doomsday is in ISO week n. In common years the day after the nth Doomsday is in week n. Thus in a common year the week number on the Doomsday itself is one less if it is a Sunday, i.e. in a common year starting on Friday.

Computer formula for the Doomsday of a year

For computer use, the following formulas for the Doomsday of a year are convenient.

For the Gregorian calendar:

Doomsday = Tuesday + y + y 4 y 100 + y 400 = Tuesday + 5 × ( y mod 4 ) + 4 × ( y mod 1 00 ) + 6 × ( y mod 4 00 )

For example, the year 2009 has a doomsday of Saturday under the Gregorian calendar (the currently accepted calendar), since

Saturday (6) mod 7 = Tuesday (2) + 2009 + 2009 4 2009 100 + 2009 400

As another example, the year 1946 has a doomsday of Thursday, since

Thursday (4) mod 7 = Tuesday (2) + 1946 + 1946 4 1946 100 + 1946 400

For the Julian calendar:

Doomsday = Sunday + y + y 4 = Sunday + 5 × ( y mod 4 ) + 3 × ( y mod 7 )

The formulas apply also for the proleptic Gregorian calendar and the proleptic Julian calendar. They use the floor function and astronomical year numbering for years BC.

For comparison, see the calculation of a Julian day number.

400-year cycle of Doomsdays

Since in the Gregorian calendar there are 146097 days, or exactly 20871 seven-day weeks, in 400 years, the anchor day repeats every four centuries. For example, the anchor day of 1700–1799 is the same as the anchor day of 2100–2199, i.e. Sunday.

The full 400-year cycle of Doomsdays is given in the adjacent table. The centuries are for the Gregorian and proleptic Gregorian calendar, unless marked with a J for Julian. The Gregorian leap years are highlighted.

Negative years use astronomical year numbering. Year 25BC is −24, shown in the column of −100J (proleptic Julian) or −100 (proleptic Gregorian), at the row 76.

A leap year with Monday as Doomsday means that Sunday is one of 97 days skipped in the 497-day sequence. Thus the total number of years with Sunday as Doomsday is 71 minus the number of leap years with Monday as Doomsday, etc. Since Monday as Doomsday is skipped across 29 February 2000 and the pattern of leap days is symmetric about that leap day, the frequencies of Doomsdays per weekday (adding common and leap years) are symmetric about Monday. The frequencies of Doomsdays of leap years per weekday are symmetric about the Doomsday of 2000, Tuesday.

The frequency of a particular date being on a particular weekday can easily be derived from the above (for a date from 1 January – 28 February, relate it to the Doomsday of the previous year).

For example, 28 February is one day after Doomsday of the previous year, so it is 58 times each on Tuesday, Thursday and Sunday, etc. 29 February is Doomsday of a leap year, so it is 15 times each on Monday and Wednesday, etc.

28-year cycle

Regarding the frequency of Doomsdays in a Julian 28-year cycle, there are 1 leap year and 3 common years for every weekday, the latter 6, 17 and 23 years after the former (so with intervals of 6, 11, 6, and 5 years; not evenly distributed because after 12 years the day is skipped in the sequence of Doomsdays). The same cycle applies for any given date from 1 March falling on a particular weekday.

For any given date up to 28 February falling on a particular weekday, the 3 common years are 5, 11, and 22 years after the leap year, so with intervals of 5, 6, 11, and 6 years. Thus the cycle is the same, but with the 5-year interval after instead of before the leap year.

Thus, for any date except 29 February, the intervals between common years falling on a particular weekday are 6, 11, 11. See e.g. at the bottom of the page Common year starting on Monday the years in the range 1906–2091.

For 29 February falling on a particular weekday, there is just one in every 28 years, and it is of course a leap year.

Julian calendar

The Gregorian calendar accurately lines up with astronomical events such as solstices. In 1582 this modification of the Julian calendar was first instituted. In order to correct for calendar drift, 10 days were skipped, so Doomsday moved back 10 days (i.e. 3 days): Thursday 4 October (Julian, Doomsday is Wednesday) was followed by Friday 15 October (Gregorian, Doomsday is Sunday). The table includes Julian calendar years, but the algorithm is for the Gregorian and proleptic Gregorian calendar only.

Note that the Gregorian calendar was not adopted simultaneously in all countries, so for many centuries, different regions used different dates for the same day.

Example 1 (1985)

Suppose you want to know the day of the week of September 18, 1985. You begin with the century's anchor day, Wednesday. To this, we'll add three things, called a, b, and c above:

  • a is the floor of 85/12, which is 7.
  • b is 85 mod 12, which is 1.
  • c is the floor of b/4, which is 0.
  • This yields a + b + c = 8. Counting 8 days from Wednesday, we reach Thursday, which is the Doomsday in 1985. (Using numbers: In modulo 7 arithmetic, 8 is congruent to 1. Because the century's anchor day is Wednesday (index 3), and 3 + 1 = 4, Doomsday in 1985 was Thursday (index 4).) We now compare September 18 to a nearby Doomsday, September 5. We see that the 18th is 13 past a Doomsday, i.e. one day less than two weeks. Hence, the 18th was a Wednesday (the day preceding Thursday). (Using numbers: In modulo 7 arithmetic, 13 is congruent to 6 or, more succinctly, −1. Thus, we take one away from the Doomsday, Thursday, to find that September 18, 1985 was a Wednesday.)

    Example 2 (other centuries)

    Suppose that you want to find the day of week that the American Civil War broke out at Fort Sumter, which was April 12, 1861. The anchor day for the century was 99 days after Thursday, or, in other words, Friday (calculated as (18 + 1) × 5 + ⌊18/4; or just look at the chart, above, which lists the century's anchor days). The digits 61 gave a displacement of six days so Doomsday was Thursday. Therefore, April 4 was Thursday so April 12, eight days later, was a Friday.

    References

    Doomsday rule Wikipedia