|
| 1 | +# Rational Prime Calendar |
| 2 | + |
| 3 | +*A rational basis for a calendar based on 61 day periods* |
| 4 | + |
| 5 | +The Gregorian calendar is a 400-year-old hack job. |
| 6 | +February's weird. |
| 7 | +July-August breaks the pattern, |
| 8 | +and no one can remember which months have 31 days. |
| 9 | +But there's a better way, hidden in prime factorization. |
| 10 | + |
| 11 | +## Considerations |
| 12 | + |
| 13 | +* Solar day (roughly 24 hours for the earth to rotate) |
| 14 | +* Solar year (365.2425 solar days for the earth to orbit the sun) |
| 15 | +* Lunar cycle (29.53 days for 8 distinct moon phases, roughly 12x annually) |
| 16 | + |
| 17 | +It's impossible to coordinate or synchronize these 3 cycles perfectly. |
| 18 | +But we can devise a system to accommodate them and minimize tradeoffs. |
| 19 | +We also want to consider historical calendars, particularly the current |
| 20 | +Gregorian calendar and less so the prior Julian calendar. |
| 21 | + |
| 22 | +## Approach |
| 23 | + |
| 24 | +If a solar year is considered to be 366 days, this factors to 61 * 3 * 2, |
| 25 | +which naturally suggests (6) 61-day periods, or alternately (61) 6-day periods. |
| 26 | +Perhaps we should have 6 day weeks, but that will be for another proposal. |
| 27 | + |
| 28 | +We can split each 61-day period into alternating months of 30 and 31 days, |
| 29 | +in either order. This provides some alignment with the lunar cycle as well |
| 30 | +as traditional calendars. |
| 31 | + |
| 32 | +### The Prime Insight |
| 33 | + |
| 34 | +* **61 is prime**; indivisible, mathematically fundamental |
| 35 | +* Each of 6 periods of 61 days can be split into **pairs of months, 30 + 31** |
| 36 | +* 12 months matches the **lunar cycle** of roughly 30 days |
| 37 | +* 12 months allows clean **divisibility by 4** (seasons, business quarters) |
| 38 | +* 12 months matches **tradition** |
| 39 | +* **Resist entropy**: a regular pattern of pairs in a predictable order |
| 40 | + |
| 41 | +### Leap Year |
| 42 | + |
| 43 | +We can retain the Gregorian approach to leap years, which solves the problem |
| 44 | +of accounting for the remaining 0.2425 days in a solar year as years go by. |
| 45 | +We'll pick one month out of twelve that will have an extra day roughly every |
| 46 | +4 years. If 366 days is our starting basis, then the leap month will have |
| 47 | +a one-day deficit in most years. |
| 48 | + |
| 49 | +## Specifics |
| 50 | + |
| 51 | +For explication, a leap year is considered the base case, and a "normal year" |
| 52 | +is handled specially, in some sense, even though leap years are less frequent. |
| 53 | + |
| 54 | +### Base Case (Leap Year) |
| 55 | + |
| 56 | +* Always alternate 30-31 |
| 57 | + |
| 58 | +Thus: |
| 59 | + |
| 60 | +1. 30 (January) |
| 61 | +2. 31 (February) |
| 62 | +3. 30 (March) |
| 63 | +4. 31 (April) |
| 64 | +5. 30 (May) |
| 65 | +6. 31 (June) |
| 66 | +7. 30 (July) |
| 67 | +8. 31 (August) |
| 68 | +9. 30 (September) |
| 69 | +10. 31 (October) |
| 70 | +11. 30 (November) |
| 71 | +12. 31 (December) |
| 72 | + |
| 73 | +* August through September retain their traditional lengths |
| 74 | +* Halloween, Oct 31 |
| 75 | +* New Year's Eve, Dec 31 |
| 76 | + |
| 77 | +### Normal Year |
| 78 | + |
| 79 | +* February has a day removed |
| 80 | + |
| 81 | +Thus: |
| 82 | + |
| 83 | +1. 30 (January) |
| 84 | +2. 30 (February) |
| 85 | +3. 30 (March) |
| 86 | +4. 31 (April) |
| 87 | +5. 30 (May) |
| 88 | +6. 31 (June) |
| 89 | +7. 30 (July) |
| 90 | +8. 31 (August) |
| 91 | +9. 30 (September) |
| 92 | +10. 31 (October) |
| 93 | +11. 30 (November) |
| 94 | +12. 31 (December) |
| 95 | + |
| 96 | +* Retain all base case benefits |
| 97 | +* February continues as the traditional leap month |
| 98 | +* Start the year with 30-30-30 and alternate after that |
| 99 | + |
| 100 | +### Compared to Gregorian |
| 101 | + |
| 102 | +* Most February weirdness is gone |
| 103 | +* Gregorian July-August flip |
| 104 | + - Gregorian starts big-small, pairwise |
| 105 | + - August is due to be small but is big |
| 106 | + - Pattern is small-big after that |
| 107 | + - Pairwise: big-small, big-big, small-big |
| 108 | +* Rational Prime maintains 30-31 throughout |
| 109 | +* August through December are identical to Gregorian month lengths |
| 110 | +* January through July mismatch the Gregorian pattern |
| 111 | + |
| 112 | +| Feature | Gregorian | Rational Prime |
| 113 | +| -------- | --------- | -------------- |
| 114 | +| February | 28/29 | 30/31 |
| 115 | +| Jul-Aug | 31-31 | 30-31 |
| 116 | +| Pattern | Irregular | Cleanly alternating |
| 117 | + |
| 118 | +### Why This Matters |
| 119 | + |
| 120 | +* Predictable patterns (no more "30 days hath September" mnemonics) |
| 121 | +* Business quarters are equalized |
| 122 | +* Cultural continuity (Halloween, New Year's Eve preserved) |
| 123 | +* Mathematical elegance |
| 124 | + |
| 125 | +### What Changes, What Stays |
| 126 | + |
| 127 | +Preserved from Gregorian calendar: |
| 128 | + |
| 129 | +* 12 month structure |
| 130 | +* Months of alternating 30 and 31 lengths |
| 131 | +* August-December lengths (dates like Halloween and New Year's Eve) |
| 132 | +* Leap year frequency and concept |
| 133 | +* February as the leap month |
| 134 | + |
| 135 | +Fixed from Gregorian calendar: |
| 136 | + |
| 137 | +* February: awkward 28/29 becomes rational 30/31 |
| 138 | +* July-August 31-31 pattern reversal becomes logical 30-31 within pattern |
| 139 | +* Unpredictable patterns become clean alternation |
| 140 | + |
| 141 | +### Cultural Considerations |
| 142 | + |
| 143 | +This proposal is deliberately intended as a replacement for the Gregorian |
| 144 | +calendar, primarily within the Western cultural tradition. |
| 145 | +Other cultural traditions or calendars are welcomed yet will probably be |
| 146 | +considered out of scope. |
| 147 | + |
| 148 | +### Implementation and Adoption Challenges |
| 149 | + |
| 150 | +This proposal is not intended to address local or global adoption. |
| 151 | +It is merely to lay out a more desirable scheme than the status quo. |
| 152 | +Adoption will have both costs and benefits. |
| 153 | + |
| 154 | + |
| 155 | + |
| 156 | + |
| 157 | + |
| 158 | + |
| 159 | + |
| 160 | + |
| 161 | + |
| 162 | + |
| 163 | + |
| 164 | + |
| 165 | + |
| 166 | + |
| 167 | + |
| 168 | + |
| 169 | + |
| 170 | + |
| 171 | + |
| 172 | + |
| 173 | + |
| 174 | + |
| 175 | + |
| 176 | +# Rational allocation of 365 (+1) days into 12 months |
| 177 | +# 366 / 6 = 61, so every 2 months add up to 61 in a leap year |
| 178 | +# Alternate 30 and 31 days, in either order, in a leap year |
| 179 | +# Pick a 31 month to have a day removed in most years |
| 180 | +# Most years will have a 30-30-30 sequence and otherwise alternate |
| 181 | +# February is the traditional leap month, so start January at 30 days |
| 182 | +# This retains the traditional month lengths from Aug-Dec |
| 183 | +# This removes most of the weirdness of February in Gregorian calendar |
| 184 | +# This removes the weird 31-31 sequence for Jul-Aug in Gregorian calendar |
| 185 | + |
| 186 | +1: 30 |
| 187 | +2: 30 (+1 LY) |
| 188 | +3: 30 |
| 189 | +4: 31 |
| 190 | +5: 30 |
| 191 | +6: 31 |
| 192 | +7: 30 |
| 193 | +8: 31 |
| 194 | +9: 30 |
| 195 | +10: 31 |
| 196 | +11: 30 |
| 197 | +12: 31 |
0 commit comments