Introduction
Knowing how to identify leap years is fundamental for calendar calculations and many date-based aptitude problems. Leap years affect February’s length (29 days) and change odd-day counts when calculating weekdays across years.
Pattern: Leap Year Identification
Pattern
The rule: A year is a leap year if it is divisible by 4; if it is a century year (divisible by 100) it must also be divisible by 400 to be a leap year.
Step-by-Step Example
Question
Is the year 1900 a leap year? What about 2000?
Solution
Step 1: Check divisibility by 4
1900 ÷ 4 = 475 → divisible by 4. 2000 ÷ 4 = 500 → divisible by 4. So both pass the first test.Step 2: If century year, check divisibility by 100
1900 is divisible by 100 (1900 ÷ 100 = 19). 2000 is divisible by 100 (2000 ÷ 100 = 20). Since both are century years, proceed to the next check.Step 3: For century years, check divisibility by 400
1900 ÷ 400 = 4.75 → not divisible by 400. 2000 ÷ 400 = 5 → divisible by 400.Final Answer:
1900 → Not a leap year; 2000 → Leap yearQuick Check:
1900 fails the century rule (not divisible by 400) → not leap. 2000 passes all tests → leap ✅
Quick Variations
1. Non-century years: Only divisibility by 4 matters (e.g., 2016, 2020 are leap years).
2. Century exceptions: 1800 and 1900 are not leap years; 1600 and 2000 are leap years.
3. Use the rule to quickly decide Feb length (28 or 29 days) for any given year.
Trick to Always Use
- Step 1 → If year % 400 == 0 → Leap year.
- Step 2 → Else if year % 100 == 0 → Not a leap year.
- Step 3 → Else if year % 4 == 0 → Leap year; otherwise not.
Summary
Summary
- Check divisibility by 4 first for ordinary years.
- If the year is a century (÷100), it must also be divisible by 400 to be leap.
- Century years like 1900 are NOT leap years; 2000 is a leap year.
- Use this rule to decide whether February has 28 or 29 days and to adjust odd-day counts in calendar problems.
Example to remember:
1900 → divisible by 100 but not by 400 → Not leap. 2000 → divisible by 400 → Leap year (Feb has 29 days).
