Simple Day Finding

Simple Day Finding problems require determining the day of the week for a given date. You may be given a reference date with its weekday, or you may need to calculate directly using calendar formulas. These problems test your understanding of the 7-day weekly cycle and date arithmetic.

10Worksheets
200+Practice Questions
BeginnerDifficulty
1-2 hoursHours to Master

Introduction to Simple Day Finding

Simple Day Finding problems require determining the day of the week for a given date. You may be given a reference date with its weekday, or you may need to calculate directly using calendar formulas. These problems test your understanding of the 7-day weekly cycle and date arithmetic.

Prerequisites

Basic understanding of days of week Knowledge of month lengths (30/31 days) February's 28/29 days concept Basic addition and subtraction Modulo 7 arithmetic
Why This Matters: Simple Day Finding is the most fundamental calendar problem type. You can expect 2-3 questions in SSC CGL, 2-3 in Banking PO, and 2-3 in Railways RRB exams.

How to Solve Simple Day Finding Problems

1

Step 1: Identify the reference date and its known day of the week

2

Step 2: Calculate the number of days between the reference date and the target date

3

Step 3: Compute the difference modulo 7 (number of odd days)

4

Step 4: Move forward or backward from the reference day by the odd days count

5

Step 5: Account for leap years if the date range spans February 29

6

Step 6: For direct calculation (no reference), use Zeller's congruence or the odd days method

7

Step 7: Verify your answer by checking against a known calendar date

Pro Strategy: Always calculate the exact number of days between dates first, then reduce modulo 7. Use the reference day as your starting point and count forward/backward by the odd days.

Example Problem

Example: If January 1, 2024 is a Monday, what day is January 15, 2024? Solution: Step 1: Reference: Jan 1, 2024 = Monday Step 2: Days between = 15 - 1 = 14 days Step 3: Odd days = 14 mod 7 = 0 Step 4: Monday + 0 days = Monday Answer: Monday Example 2: If December 25, 2023 is a Monday, what day is January 1, 2024? Solution: Days between = (31-25) + 1 = 7 days. 7 mod 7 = 0. Monday + 0 = Monday Answer: Monday

Pro Tips & Tricks

  • Number of odd days = (Total days between dates) mod 7
  • Moving forward: add odd days to reference day number (0=Monday to 6=Sunday)
  • Moving backward: subtract odd days (add 7 if result becomes negative)
  • Remember month lengths: 31 days (Jan, Mar, May, Jul, Aug, Oct, Dec), 30 days (Apr, Jun, Sep, Nov), 28/29 days (Feb)
  • For dates in different years, calculate year-wise odd days first
  • Leap year check: year divisible by 4 but not by 100, unless also divisible by 400

Shortcut Methods to Solve Faster

Days difference mod 7 = weekday shift
Same month: (target day - reference day) mod 7
Consecutive years: 365 mod 7 = 1 odd day (2 for leap year crossing Feb 29)
Zeller's congruence: h = (q + floor((13(m+1))/5) + K + floor(K/4) + floor(J/4) - 2J) mod 7

Common Mistakes to Avoid

Forgetting to account for leap years when crossing February 29
Miscounting the number of days between dates (off by one errors)
Using 0-based vs 1-based day numbering incorrectly
Not reducing the total days modulo 7 before adding to reference day

Exam Importance

Simple Day Finding is an important topic for various competitive exams. Here's how frequently it appears:

SSC CGL
2-3 questions
BANKING PO
2-3 questions
RAILWAYS RRB
2-3 questions
CAT
1-2 questions
INSURANCE
2-3 questions

Ready to Master Simple Day Finding?

Start with Worksheet 1 and work your way up to expert level! Each worksheet includes:

20 practice questions
Detailed solutions
Step-by-step explanations
Start Practicing Now