Month-Day Pair
Month-Day Pair problems involve finding the weekday of a specific date in one month when the weekday of the same date in the previous or next month is known. These problems require calculating the shift caused by the number of days in the intervening month.
What You'll Learn
Introduction to Month-Day Pair
Month-Day Pair problems involve finding the weekday of a specific date in one month when the weekday of the same date in the previous or next month is known. These problems require calculating the shift caused by the number of days in the intervening month.
Prerequisites
How to Solve Month-Day Pair Problems
Step 1: Identify the reference month and date with known weekday
Step 2: Identify the target month with the same date number
Step 3: Calculate the number of days in the month(s) between them
Step 4: If target month is after reference month, add the days of intervening months to the known date's weekday
Step 5: If target month is before reference month, subtract the days of intervening months
Step 6: Apply modulo 7 to get the weekday shift
Step 7: If the date is 29th, 30th, or 31st, ensure the target month has that date
Example Problem
Example: January 15 is Monday. What day is February 15 (non-leap year)? Solution: Step 1: January has 31 days Step 2: Days from Jan 15 to Feb 15 = 31 - 15 + 15 = 31 days Step 3: 31 mod 7 = 3 Step 4: Monday + 3 days = Thursday Answer: Thursday Example 2: March 10 is Tuesday. What day is April 10? Solution: Step 1: March has 31 days Step 2: Days from Mar 10 to Apr 10 = 31 - 10 + 10 = 31 days Step 3: 31 mod 7 = 3 Step 4: Tuesday + 3 = Friday Answer: Friday
Pro Tips & Tricks
- January (31) → February: shift +3 days
- February (28/29) → March: shift 0 (28) or +1 (29)
- March (31) → April: shift +3
- April (30) → May: shift +2
- May (31) → June: shift +3
- June (30) → July: shift +2
Shortcut Methods to Solve Faster
Common Mistakes to Avoid
Practice Worksheets
Practice makes perfect! Work through these worksheets to master Month-Day Pair. Each worksheet contains 20 questions with detailed explanations. Start from Worksheet 1 and progress through increasing difficulty levels.
Exam Importance
Month-Day Pair is an important topic for various competitive exams. Here's how frequently it appears:
Ready to Master Month-Day Pair?
Start with Worksheet 1 and work your way up to expert level! Each worksheet includes: