Get the day name of...

Enter a date below and it will tell you the name of the day that date was on:


How can I solve it myself?

It really is very simple. Let's assume the year is 2021. Follow the steps below:

  1. Take the date and find the remainder when dividing by seven. For example, 25 divided by 7 is 3 with the remainder of 4. Remember this number for now.

  2. Find the number associated with the month:
    1. January: 1
    2. February: 4
    3. March: 4
    4. April: 0
    5. May: 2
    6. June: 5
    7. July: 0
    8. August: 3
    9. September: 6
    10. October: 1
    11. November: 4
    12. December: 6

    Although it may look hard, when you think up of ways to remember them, it becomes very easy. For example, since January is the first month, it has 1, and since December sounds sort of like dice, and a dice has six sides, then December is 6.

    Now remember the number associated with the month, for example 6

  3. Now this part you need to be careful about.
    We are doing the century now. Because it is 2021, then we subtract 1. Here is the list:
    1. 17xx: 4
    2. 18xx: 2
    3. 19xx: 0
    4. 20xx: -1

    This is a repeating pattern, so 16xx is -1, and 15xx is 0, and so on.

  4. Now for the year part.
    This part requires a bit more calculating. Since it is 2021, the year is 21. Now listen carefully.
    1. First, add the number itself (21)
    2. Next, add the quotient of that number divided by 4 (21/4 = 5 remainder 1, so we add 5 to make 21+5 = 26)
    3. After that, get the remainder when divided by 7 (26/7 = 3 remainder 5, so our result is 5)
    4. Finally, we have the result: 5!


  5. Now add up all of your numbers. For us we have 4 + 6 - 1 + 5 = 14. But it is not finished yet.

  6. Find the remainder when you divide by 7, in this case 14 divided by 7 is 2 remainder 0.

  7. Match that with the corresponding day:
    1. Sunday: 1
    2. Monday: 2
    3. Tuesday: 3
    4. Wednesday: 4
    5. Thursday: 5
    6. Friday: 6
    7. Saturday: 0

  8. And that's it! Your answer! It just requires a bit of practice before you can do it without looking.

You can use this to figure out when your birthday will be or was this year, or any day actually.


Made by Lakshya Raj