Which day of the week is the 13 th day of a month most likely to fall on?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Interesting!
Every 400 years is indeed a leap year..like 1600,2000 I suppose.
Using a computer and Zeller's Congruence , we can directly count the number of times the 13th falls on the days of the week. Since the Gregorian calendar cycles every 4 0 0 years, let parameter n be the number of the month from Year 1 to Year 4 0 0 , or 4 8 0 0 months in all. Then
m = Mod [ n + 9 , 1 2 ] + 3
y = ⌈ 1 2 n ⌉
k = Mod [ y , 1 0 0 ]
j = ⌊ 1 0 0 y ⌋
q = 1 3 for 13th day off the month
h = Mod [ ( q + ⌊ 5 1 3 ( m + 1 ) ⌋ + k + ⌊ 4 k ⌋ + ⌊ 4 j ⌋ + 5 j ) , 7 ]
where h is the day of the week, ( 2 , 3 , 4 , 5 , 6 , 0 , 1 ) for (Sun, Mon, Tues, Wed, Thurs, Fri, Sat). When tabulated, the results are
( 6 8 7 , 6 8 5 , 6 8 5 , 6 8 7 , 6 8 4 , 6 8 8 , 6 8 4 )
and so the 13th falls on a Friday more than any other day of the week.
Edit: If you're curious about any of the other days of the month, particularly the 29th, 30th, and the 31st, it turns out that the distribution is always the same, except for rotation. For example, the dates 6th, 13th, 20th, 27th have the same distribution
( 6 8 7 , 6 8 5 , 6 8 5 , 6 8 7 , 6 8 4 , 6 8 8 , 6 8 4 )
while dates 3rd, 10th, 17th, 24th, 31st have the following distribution, the most frequent day of the week being Tuesday
( 6 8 7 , 6 8 4 , 6 8 8 , 6 8 4 , 6 8 7 , 6 8 5 , 6 8 5 )
Formatting note- to write a floor function in latex, you do \left\lfloor\dfrac{?}{?}\rfloor\right
To write a ceiling function, you do \left\lceil\dfrac{?}{?}\rceil\right
Log in to reply
Most often, users who are not used to L A T E X commands often leave out the \ . However, I don't mind mathematicians who intentionally leave out the command.
By the way, the correct way to present the size-relative command is \left\lfloor and then, \right\rfloor. \left and \right are used to match the size of the equation. If you place \right after \rfloor, then there is an error in L A T E X -parsing. This is because there is no element included after \right. For instance, \left\lfloor \dfrac{}{} \rfloor\right presents.. \left\lfloor \dfrac{}{} \rfloor\right whereas \left\lfloor \dfrac{}{} \right\rfloor presents... ⌊ ⌋ Be very careful of how you type the commands.
Note: Users often typed In-lne equation commands (such as x + y in the same line with the text) instead of including indented center equation. If we type x + y, then we have x + y . Otherwise, with brackets, x + y .
See here for complete guide.
Or, you could just guess Friday by the common thing - Friday the 13th.
@Vishruth Bharath Yeah!!! The title gave it away!!!
Problem Loading...
Note Loading...
Set Loading...
For a non-leap year, since 3 6 5 = 7 × 5 2 + 1 , so the calendar moves forward 1 day. If the 1st of January is a Sunday this year, then it would be a Monday next year.
For a leap year, since 3 6 6 = 7 × 5 2 + 2 , so the calendar moves forward 2 days (after Feb 28th). Since we simply cycle through the days, it seems very equally likely that the 13th day of the month is any of the days of the week.
Let's investigate further to see why this intuition works. Recall that every 4 years, we get a leap year. This suggests that after 2 8 = 4 × 7 years, we would have done a complete cycle and are back to the original day of the week. For example, if we record down when the first of January for each year from 2001 to 2028 (inclusive), we obtain:
However, because every 100 years is not a leap year, as such this would mess up the pattern. In particular, from 2001 to 2028, 2056 or 2084, each weekday is equally likely. However, from 2000 to 2112, since 2100 is not a leap year, the pattern no longer holds . Our intuition is thrown off because we forgot to account for the other edge cases.
Further complicating this, is that every 400 years is not a leap year! Let's consider the number of days in these 400 years. There are 97 leap years in this period, or a total of 4 0 0 × 3 6 5 + 9 7 = 1 4 6 0 9 7 days. Since this is a multiple of 7, if there is any discrepancy during this period, it would persist throughout time, instead of being evened out in 2800 years. It remains to check what happens to the 13th of the month over a period of 400 years.
As it turns out, the frequency of the 13th day of the month is:
As such, Friday is the most likely day of the week!