ArtsAutosBooksBusinessEducationEntertainmentFamilyFashionFoodGamesGenderHealthHolidaysHomeHubPagesPersonal FinancePetsPoliticsReligionSportsTechnologyTravel

mental Calendar

Updated on May 1, 2015

Introduction

We all need a calendar, we have to depend on the printed calendar to find the weekday of a particular date, which is sometimes unavailable. So it would be great if we can calculate it mentally. We can use the Zeller's congruence if we have a calculator in our hand, otherwise I found the Doomsday rule to calculate the week day of a particular date very convenient and it is so easy that we can calculate it mentally very quickly. I shall discuss the doomsday rule to find the weekday of any calendar date mentally in this hub

Doomsday algorithm

This algorithm takes advantage of the fact that each year has a certain weekday (the doomsday) upon which certain easy-to-remember dates fall. The algorithm is simple enough for anyone with basic arithmetic ability to perform the calculations mentally.
First, we need to remember certain days of a month, the memorable dates in the calendar year are :

the last day of February (28th or 29th day whichever is applicable considering the leap year)
4th day of April or the 4th Month;
6th day of June or the 6th Month;
8th day of August or the 8th Month;
10th day of October or the 10th Month;
12th day of December or the 12th Month;
Remembering the above dates for even months is pretty easy, the odd months we need to remember (5, 9) and (7, 11), that is:
5th day of September or the 9th Month;
9th day of May or the 5th Month;
7th day of November or the 11th Month;
11th day of July or the 7th Month;
Remains the 3rd month which is the 7th day of March;
and for January is the 3rd day in normal years or the 4th day in leap years.

  • I have arranged the 12 months of the year in groups such that it can be memorized easily. Leap year calculation is required for January and February months only.


As said, all the above easy-to-remember dates fall in the same weekday in every calendar year. for example in the year 2012 all the above memorable dates was Wednesday, in the year 2013 is Thursday, in the year 2014 is Friday and in the year 2015 is Saturday.

Now, the method is to choose the closest date that always fall on the doomsday and count the number of days (MOD 7) between that date and the date in question to compute at the day of the week. We can however further extend this calculation beyond centuries, for simplicity I'll discuss that later.

Illustrating with an example

I wish to find the weekday of 25-Dec-2012, I knew that 12th December 2012 (the doomsday) was Wednesday, so is (doomsday±7n; n=1,2,3,4,..) 26th of December, thus Christmas Day in 2012 was a day before Wednesday, which is Tuesday. Fortunately, Christmas Day is always the day before the Doomsday.

So, if we can calculate the difference of days with the doomsday and perform a simple division by 7, we can easily find the weekday for any date of the calendar year. Practice the same keeping a printed calendar, to test your progress and hope to become fluent in no time.

Doomsday rule

Beyond centuries

The Doomsday algorithm for mental calculation was devised by John Conway to quickly calculate the weekday of any given date without the help of calculators or calendars. Conway's algorithm bases on the fact that some certain easy to remember dates always fall on the same weekday within any given year. We know that these dates are called doomsdays.

Now, its time to find the doomsday of a year in question, so that we are not just limited in calculating for the current year only.

Each weekday is represented by a number.
Sunday → 0; Monday → 1; Tuesday → 2; Wednesday → 3; Thursday → 4; Friday → 5; Saturday → 6.

Next, we have to remember the anchor day for centuries, as the Gregorian calendar cycles every 400 years, it is sufficient to remember the anchor days for 4 centuries.
18xx → 5; 19xx → 3; 20xx → 2; 21xx → 0.

The steps for finding the doomsday of any given year. [yy is the last two dizits of the year in question].
1. Let P = yy \ 12; //taking the floor of the quotient
divide the last two dizits of the year by 12 and take the result discarding the remainder.
2. Let Q = yy MOD 12; // modulo operation.
divide the last two dizits of the year by 12 and take the remainder part.
3. Let R = Q \ 4; // floor(q ÷ 4).
divide the result obtained in Step 2 by 4, discarding the remainder.
4. weekday of the century anchor day (W), eg. 19xx→3.
20xx → 2; 21xx → 0; 22xx → 5; and the cycle continues (anchor day for centuries)
5. Let S = P + Q + R + W; // sum up of above 4 steps.
6. doomsday of the year = S MOD 7 = weekday represented by the number.

taking an example, we wish to find the doomsday of the year 2013
Here, Century cc=20xx and Year yy=13.
1. P = 13 divided by 12 discarding the remainder is 1
2. Q = 13 divided by 12 considering the remainder is 1
3. R = 1 divided by 4 discarding the remainder, quotient is 0
4. W = 20xx → 2 (anchor day for centuries, given in the chart)
5. S = 1+1+0+2 = 4
6. doomsday of the year 2013 = 4 % 7 = 4 is Thursday (weekday is represented by the number).

After finding the doomsday of the year, we choose the closest date that always fall on the doomsday (±7n) and count the number of days (MOD 7) between that date and the date in question to find the day of the week.

Informal Calendar

I shall also discuss another method here to find the weekday of a month of any year between 1900 to 2099. I personally feel this range is sufficient when considering the mental calculations, you may however like to extend this further by altering the century code given, that is also pretty simple.

The formula :

Let dd/mm/yy be the date in question for which we need to compute the week day.

1. Month-Code for the twelve months is 033 614 625 035 (January to December respectively);
2. Century=6; // 20xx→6 and 19xx→0, I'm taking 6 for the present century.
3. leapCode:=floor(yy÷4); // integer part of the quotient.
4. If (LEAP_YEAR AND (MONTH is Jan OR MONTH is Feb)) then leapCode:=leapCode-1;
5. DAY:=(Century + dd + Month-Code + yy + leapCode) MOD 7;
6. The Day computed in step 5 is in range 0-6 which is from Sunday to Saturday respectively.

Examples

Example 1: Date 14 08 1947
Century = 0, 19xx=0
Month Code = 2, August=2
Leap Code = 11, floor of quotient when 47 divided by 4
Day = (0 + 14 + 2 + 47 + 11) MOD 7 = 4 which is Thursday.

Example 2: Date 01 01 2015
Century = 6, 20xx=6
Month Code = 0, January=0
Leap Code = 3, floor of quotient when 15 divided by 4
Day = (6 + 1 + 0 + 15 + 3) MOD 7 = 4 which is Thursday.

© 2012 Dipankar Basu

working

This website uses cookies

As a user in the EEA, your approval is needed on a few things. To provide a better website experience, hubpages.com uses cookies (and other similar technologies) and may collect, process, and share personal data. Please choose which areas of our service you consent to our doing so.

For more information on managing or withdrawing consents and how we handle data, visit our Privacy Policy at: https://corp.maven.io/privacy-policy

Show Details
Necessary
HubPages Device IDThis is used to identify particular browsers or devices when the access the service, and is used for security reasons.
LoginThis is necessary to sign in to the HubPages Service.
Google RecaptchaThis is used to prevent bots and spam. (Privacy Policy)
AkismetThis is used to detect comment spam. (Privacy Policy)
HubPages Google AnalyticsThis is used to provide data on traffic to our website, all personally identifyable data is anonymized. (Privacy Policy)
HubPages Traffic PixelThis is used to collect data on traffic to articles and other pages on our site. Unless you are signed in to a HubPages account, all personally identifiable information is anonymized.
Amazon Web ServicesThis is a cloud services platform that we used to host our service. (Privacy Policy)
CloudflareThis is a cloud CDN service that we use to efficiently deliver files required for our service to operate such as javascript, cascading style sheets, images, and videos. (Privacy Policy)
Google Hosted LibrariesJavascript software libraries such as jQuery are loaded at endpoints on the googleapis.com or gstatic.com domains, for performance and efficiency reasons. (Privacy Policy)
Features
Google Custom SearchThis is feature allows you to search the site. (Privacy Policy)
Google MapsSome articles have Google Maps embedded in them. (Privacy Policy)
Google ChartsThis is used to display charts and graphs on articles and the author center. (Privacy Policy)
Google AdSense Host APIThis service allows you to sign up for or associate a Google AdSense account with HubPages, so that you can earn money from ads on your articles. No data is shared unless you engage with this feature. (Privacy Policy)
Google YouTubeSome articles have YouTube videos embedded in them. (Privacy Policy)
VimeoSome articles have Vimeo videos embedded in them. (Privacy Policy)
PaypalThis is used for a registered author who enrolls in the HubPages Earnings program and requests to be paid via PayPal. No data is shared with Paypal unless you engage with this feature. (Privacy Policy)
Facebook LoginYou can use this to streamline signing up for, or signing in to your Hubpages account. No data is shared with Facebook unless you engage with this feature. (Privacy Policy)
MavenThis supports the Maven widget and search functionality. (Privacy Policy)
Marketing
Google AdSenseThis is an ad network. (Privacy Policy)
Google DoubleClickGoogle provides ad serving technology and runs an ad network. (Privacy Policy)
Index ExchangeThis is an ad network. (Privacy Policy)
SovrnThis is an ad network. (Privacy Policy)
Facebook AdsThis is an ad network. (Privacy Policy)
Amazon Unified Ad MarketplaceThis is an ad network. (Privacy Policy)
AppNexusThis is an ad network. (Privacy Policy)
OpenxThis is an ad network. (Privacy Policy)
Rubicon ProjectThis is an ad network. (Privacy Policy)
TripleLiftThis is an ad network. (Privacy Policy)
Say MediaWe partner with Say Media to deliver ad campaigns on our sites. (Privacy Policy)
Remarketing PixelsWe may use remarketing pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to advertise the HubPages Service to people that have visited our sites.
Conversion Tracking PixelsWe may use conversion tracking pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to identify when an advertisement has successfully resulted in the desired action, such as signing up for the HubPages Service or publishing an article on the HubPages Service.
Statistics
Author Google AnalyticsThis is used to provide traffic data and reports to the authors of articles on the HubPages Service. (Privacy Policy)
ComscoreComScore is a media measurement and analytics company providing marketing data and analytics to enterprises, media and advertising agencies, and publishers. Non-consent will result in ComScore only processing obfuscated personal data. (Privacy Policy)
Amazon Tracking PixelSome articles display amazon products as part of the Amazon Affiliate program, this pixel provides traffic statistics for those products (Privacy Policy)
ClickscoThis is a data management platform studying reader behavior (Privacy Policy)