What is the probability that any given year is a leap year?
Note : The criteria for an year to be leap year is :
(i) - The year should be divisible by 4.
(ii) - If the year is divisible by 100, it's not a leap year (eg. 1900).
(ii) - If the year is divisible by 400, it's a leap year (eg. 2000).
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.
Note condition (iii) shows the cycle repeats every 400 years. Thus in 400 years we can find that there are 400/4=100 usual leap years (of set A) minus 400/100=4 skipped leap years (of set B) plus 400/400=1 of the third condition (of set C)
Note for any two sets if B ⊆ A then B ⋂ A = B and B ⋃ A = A
We add and subract because we counted the centuries (100) already when we checked divisibility by 4, and we had to re-include the one divisible by 400.
This leads to (100-4+1)/400 = 97/400
Relevant wiki