Markov Model Exercise

Consider a hypothetical Markov model for a group of patients with controlled diabetes.

Building the model

To build a markov model, we must specify a set of states, probabilities that a patient will move from one state to another, and the utilities of living in each state.

States

For simplicity, we will assume three states:
  1. Controlled diabetes
  2. End-stage renal disease (ESRD)
  3. Death

Transition probabilities

Let's imagine that, each year, patients with controlled diabetes have an 85% chance of staying in that state, a 10% chance of moving to the ESRD state, and a 5% chance of dying. This is obviously a simplification, and it's possible to build Markov models that allow (for example) a chance of death that increases over time (background mortality).

Let's further imagine that, each year, patients with ESRD have a 70% chance of continuing in the ESRD state and a 30% chance of dying.

Patients who have died have a 100% chance of staying dead. Death is thus an "absorbing state" -- a state which, once entered, can not be left.

Utilities

Imagine that the utility for living with controlled diabetes is 0.95, the utility for ESRD is 0.30, and the utility of death is, by definition, 0.

Thinking about the model

Here are some questions to try to answer in your group about the model. Don't spend a lot of time on calculations -- just estimate.
  1. Imagine that we begin with 10,000 patients with controlled diabetes. In one year, how many patients will still have controlled diabetes? How many will have ESRD? How many will have died?
  2. How much utility per patient will have been experienced during that year? Remember that each diabetes patient experiences a utility of 0.95 for the year, each ESRD patient experiences a utility of 0.30 for the year, and dead people experience no utility.
  3. In 10 years, how many patients do you estimate will be in each state?
  4. Future health is often considered to be less valuable than immediate health. This is handled in some models by discounting future utility by some constant rate. For example, if we use a 3% discount rate, the utility of being in any particular state for a year is worth only 97% next year of what it was worth this year, and 94% (= 97% * 97%) in the second year of what it was worth this year. Imagine that after 20 years, without discounting, our patients have experienced an average of 6.3 utility units per patient during those 10 years. How much would you guess they would have experienced if we were discounting the utilities by 3% per year?
  5. How many years will it take before all of the patients are dead?

Running the model

Now go back and try to answer those questions using an actual simulation of this Markov model with 10,000 patients, which you'll find at this link.

You can use the "Next Cycle" button to step year-by-year through the simulation and see how the patients move from state to state and watch the total experienced utility increase. You can use the "Run to End" button to run the complete simulation until the cycle at which all of the patients would be dead. If you check the "discount utilities" checkbox, the simulation will use a 3% utility discount rate.

Compare your estimates above with what you can learn from running the model. How close were you? What did you find surprising?

Note: For subtle technical reasons, the model will produce a different answer to question 2 than you computed. Don't worry about this, but ask in class about why.