Correct Answer: Friday
Explanation:
To find the day of the week for any given date, we can use a formula called Zeller's Congruence. Here are the steps:
h = (q + floor(13(m + 1) / 5) + K + floor(K / 4) + floor(J / 4) - 2J) mod 7
h = (15 + floor(13(8 + 1) / 5) + 47 + floor(47 / 4) + floor(19 / 4) - 2(19)) mod 7
h = (15 + 23 + 47 + 11 + 4 - 38) mod 7
h = 62 mod 7 = 6
h = 6
, which corresponds to Friday (where 0 = Saturday, 1 = Sunday, ..., 6 = Friday).Thus, 15th August 1947 was a Friday.
Discussion & Comments