Post Reply 
HHC 2014 Programming Contest
09-24-2014, 09:31 AM
Post: #2
RE: HHC 2014 Programming Contest
As for the three challenge questions at the end.



Spoilers here.


  1. The first one is straightforward: a prime triple would require three odd numbered days in a row. Clearly not possible in normal years.

    I haven't checked all the myriad of Julian to Gregorian calendar changeovers over the years to see if any of these produced three odd days in a row or not and, if there are some, checked them for primality.

    This is obviously possible and should be checked. However, I rather doubt the contest was meant to involve such nastinesses.
  2. The second is more interesting. We're going to assume that births are a uniform random process.

    To never have a prime birthday, your birthday must either be even or divisible by five. That leaves odd days but not multiples of five.
    • Thirty one day months have 13 possible prime days, so 18 never prime ones.
    • Thirty day months have 12 possible prime days, so 18 never prime ones.
    • Twenty nine day months also have 12 possible prime days, but 17 never prime ones.
    • Twenty eight day months have 11 possible prime days and 17 never prime ones.

    That the latter two are equal means we don't need to take as much case over leap years. There are 7 * 18 + 4 * 18 + 1 * 17 = 11 * 18 + 17 = 215 never prime days in a year.

    So, ignoring leap years the percentage is 215 / 365 * 100 = 58.9%.
    Leap years are 58.7%.

    Rather than fiddling around with the four, one hundred and four hundred year cycles, I'll round it up to 59% Smile

    Baring some arithmetic errors on my part.
  3. I've an idea on how to approach this -- look at deltas between dates and prove that either December 31st or January 1st must be divisible by three. The four years would hint that leap years are involved and 366 is divisible by three.

Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HHC 2014 Programming Contest - Paul Dale - 09-24-2014, 09:13 AM
RE: HHC 2014 Programming Contest - Paul Dale - 09-24-2014 09:31 AM
RE: HHC 2014 Programming Contest - BruceH - 10-02-2014, 09:35 PM
RE: HHC 2014 Programming Contest - Jeff O. - 09-29-2014, 01:41 PM
RE: HHC 2014 Programming Contest - Jeff O. - 09-30-2014, 04:39 PM
RE: HHC 2014 Programming Contest - Jeff O. - 10-06-2014, 05:01 PM
RE: HHC 2014 Programming Contest - Jeff O. - 10-07-2014, 12:26 PM
RE: HHC 2014 Programming Contest - Werner - 10-03-2014, 07:35 AM
RE: HHC 2014 Programming Contest - C.Ret - 10-05-2014, 10:02 AM
RE: HHC 2014 Programming Contest - Werner - 10-05-2014, 08:02 PM



User(s) browsing this thread: 1 Guest(s)