Welcome to the World of Data Estimation!

Hi there, future actuary! So far in your studies, you’ve likely worked with transition intensities (\(\mu_{x}^{ij}\)) and probabilities (\(p_{x}^{ij}\)) as if they were given to you on a silver platter. But where do those numbers actually come from? In the real world, we have to look at historical data and estimate them.

In this chapter, we are going to learn how to use the Maximum Likelihood Estimation (MLE) method to find the best possible values for these intensities. Don't worry if "Maximum Likelihood" sounds like a scary stats term—it’s actually a very logical way of saying, "Let's pick the values that make our observed data most likely to have happened."

1. The Big Picture: Transition Intensities

Before we dive into the math, let’s get our bearings. In a Multi-State Model (like Healthy-Sick-Dead), we want to know the "force" or "intensity" of moving from one state to another. This is our \(\mu_{ij}\).

The core concept of this chapter relies on two pieces of information we collect from our data:
1. \(n_{ij}\): The total number of observed transitions (jumps) from State \(i\) to State \(j\).
2. \(T_{i}\): The total "waiting time" or "occupancy time" that all individuals spent in State \(i\).

An Everyday Analogy

Imagine you are watching a revolving door at a gym.
- \(n_{ij}\) is like counting how many people walk from the lobby into the weight room.
- \(T_{i}\) is like adding up the total minutes every person spent hanging out in the lobby.
If 10 people moved to the weight room and the total time spent in the lobby by everyone was 100 minutes, the "intensity" of moving is 10/100 = 0.1 per minute.

2. The Maximum Likelihood Estimator (MLE) Formula

If we assume that the transition intensities are constant over a specific period of time, the math becomes surprisingly simple. For a transition from State \(i\) to State \(j\), the MLE is:

\(\hat{\mu}_{ij} = \frac{n_{ij}}{T_i}\)

Where:
- \(\hat{\mu}_{ij}\) is the estimate of the intensity (the "hat" means it's an estimate).
- \(n_{ij}\) is the number of times we saw someone jump from \(i\) to \(j\).
- \(T_i\) is the total time all individuals were "at risk" of jumping out of state \(i\).

Important Note: This formula works for all possible transitions. If you have a model with three states (0, 1, and 2), you would calculate \(\hat{\mu}_{01}\), \(\hat{\mu}_{02}\), \(\hat{\mu}_{12}\), etc., each using their respective jump counts and occupancy times.

Key Takeaway

The MLE of a transition intensity is just Events divided by Exposure. It’s a rate!

3. Understanding the Likelihood Function

For the exam, you might need to understand why the formula works. The "Likelihood Function" \(L\) represents the probability of seeing our specific data set given a certain \(\mu\).

For a single person in a state who stays for time \(t\) and then jumps to another state, the contribution to the likelihood is:
\(L = (\text{Probability of staying until } t) \times (\text{Intensity of jumping at } t)\)
\(L = e^{-\mu_i \cdot t} \times \mu_{ij}\)

When we multiply this for everyone in the study and do some calculus (taking the log and setting the derivative to zero), we arrive at our beautiful \(\hat{\mu} = n/T\) formula.

Did you know?
The total intensity out of state \(i\), often written as \(\mu_i\), is simply the sum of all intensities leaving that state: \(\mu_i = \sum_{j \neq i} \mu_{ij}\). The MLE for the total exit intensity is \(\hat{\mu}_i = \frac{n_i}{T_i}\), where \(n_i\) is the total number of exits from state \(i\).

4. Estimating Transition Probabilities

Once we have our intensity estimates (\(\hat{\mu}_{ij}\)), we can use them to estimate transition probabilities (\(p_{ij}(t)\)).

In a simple two-state model (like the "Constant Force of Mortality" model), the probability of staying in State \(i\) for time \(t\) is:
\(\hat{p}_{ii}(t) = e^{-\hat{\mu}_{i} \cdot t}\)

If you are in a more complex model (like the Healthy-Sick-Dead model) and you assume intensities are constant, you plug your \(\hat{\mu}\) values into the standard probability formulas you learned in earlier chapters (like the Kolmogorov Forward Equations).

Step-by-Step: From Data to Probability

1. Count the jumps between states (\(n_{ij}\)).
2. Sum the total time everyone spent in the starting state (\(T_i\)).
3. Divide to get the intensity: \(\hat{\mu}_{ij} = n_{ij} / T_i\).
4. Plug that intensity into the probability formula (e.g., \(e^{-\hat{\mu}t}\)).

5. Common Pitfalls and Mistakes

Even the best students can get tripped up on these details. Keep an eye out for these:

  • The "Total Time" Trap: Ensure \(T_i\) includes everyone who spent time in state \(i\), even those who never jumped to another state! Their "waiting time" still counts as exposure.
  • Censoring: If someone leaves the study for a reason other than a transition (like the study ends), we count their time up until they left, but we do not count them in \(n_{ij}\).
  • Units of Time: Make sure your time \(T_i\) and the \(t\) in your probability \(p(t)\) are in the same units (e.g., both in years or both in months).

6. Quick Review Box

The Goal: Estimate how fast people move between states.
The Data: How many moved (\(n\)) and for how long was the group "at risk" (\(T\)).
The Formula: \(\hat{\mu} = \frac{\text{Jumps}}{\text{Total Time}}\).
The Assumption: We usually assume the intensity is constant over the interval we are looking at.

Summary

Estimating transition intensities is the bridge between raw data and the complex actuarial models you've been building. By using the Maximum Likelihood approach, we find that the most likely intensity is simply the ratio of observed events to the total time spent in the state. Once you have these intensities, you can calculate probabilities, expected values, and premiums just like you normally would!

Don't worry if this seems tricky at first! The math usually boils down to simple division once you identify the correct number of jumps and the correct total time. Practice a few problems identifying \(n\) and \(T\), and you'll be an MLE pro in no time!