{
  "title": "Life Path number distribution over the 1900-2099 civil calendar",
  "method": "Life Path = reduce(day) + reduce(month) + reduce(digit-sum of year), then reduce the total; master numbers 11/22/33 are preserved (Pythagorean reduction).",
  "source_code": "app/services/numerology/calculator.py :: life_path_number",
  "calendar_start": "1900-01-01",
  "calendar_end": "2099-12-31",
  "total_dates": 73049,
  "license": "https://creativecommons.org/licenses/by/4.0/",
  "distribution": [
    {
      "life_path": 1,
      "dates": 8114,
      "share_pct": 11.1076
    },
    {
      "life_path": 2,
      "dates": 3650,
      "share_pct": 4.9966
    },
    {
      "life_path": 3,
      "dates": 8116,
      "share_pct": 11.1104
    },
    {
      "life_path": 4,
      "dates": 5656,
      "share_pct": 7.7427
    },
    {
      "life_path": 5,
      "dates": 8118,
      "share_pct": 11.1131
    },
    {
      "life_path": 6,
      "dates": 7725,
      "share_pct": 10.5751
    },
    {
      "life_path": 7,
      "dates": 8117,
      "share_pct": 11.1117
    },
    {
      "life_path": 8,
      "dates": 8117,
      "share_pct": 11.1117
    },
    {
      "life_path": 9,
      "dates": 8116,
      "share_pct": 11.1104
    },
    {
      "life_path": 11,
      "dates": 4464,
      "share_pct": 6.111
    },
    {
      "life_path": 22,
      "dates": 2463,
      "share_pct": 3.3717
    },
    {
      "life_path": 33,
      "dates": 393,
      "share_pct": 0.538
    }
  ],
  "master_numbers_group_pct": 10.02,
  "siphon": [
    {
      "reduced_digit": 2,
      "master": 11,
      "reduced_digit_dates": 3650,
      "master_dates": 4464,
      "sum": 8114,
      "sum_pct": 11.1076
    },
    {
      "reduced_digit": 4,
      "master": 22,
      "reduced_digit_dates": 5656,
      "master_dates": 2463,
      "sum": 8119,
      "sum_pct": 11.1145
    },
    {
      "reduced_digit": 6,
      "master": 33,
      "reduced_digit_dates": 7725,
      "master_dates": 393,
      "sum": 8118,
      "sum_pct": 11.1131
    }
  ],
  "rarest": {
    "life_path": 33,
    "dates": 393,
    "share_pct": 0.538,
    "families": {
      "day_of_month_22": 180,
      "year_digit_surge": 189,
      "month_november": 24,
      "union": 393,
      "surge_years": [
        1939,
        1948,
        1957,
        1966,
        1975,
        1984,
        1993
      ]
    }
  },
  "reduction_order_sensitivity": {
    "note": "The Life Path depends on WHEN you reduce, not only on the school. Both orders below preserve the master numbers 11/22/33; they differ only in whether day, month and year are reduced separately before being added, or all eight digits of the date are summed at once. Any claim about how rare a number is must name the order.",
    "orders": {
      "component_wise": {
        "description": "reduce(day) + reduce(month) + reduce(digit-sum of year), then reduce. This is what the product computes and what `distribution` above holds.",
        "counts": {
          "1": 8114,
          "2": 3650,
          "3": 8116,
          "4": 5656,
          "5": 8118,
          "6": 7725,
          "7": 8117,
          "8": 8117,
          "9": 8116,
          "11": 4464,
          "22": 2463,
          "33": 393
        }
      },
      "all_digits_at_once": {
        "description": "Sum all eight digits of YYYYMMDD, then reduce.",
        "counts": {
          "1": 8114,
          "2": 3302,
          "3": 8116,
          "4": 4337,
          "5": 8118,
          "6": 5932,
          "7": 8117,
          "8": 8117,
          "9": 8116,
          "11": 4812,
          "22": 3782,
          "33": 2186
        }
      }
    },
    "rarest_33_component_wise_pct": 0.538,
    "rarest_33_all_digits_pct": 2.9925,
    "rarest_33_ratio": 5.56
  }
}