Skip to main content
Advertisement
Browse Subject Areas
?

Click through the PLOS taxonomy to find articles in your field.

For more information about PLOS Subject Areas, click here.

  • Loading metrics

Stochastic model of Alzheimer’s disease progression using two-state Markov chains

Abstract

In 2016, Hao and Friedman developed a deterministic model of Alzheimer’s disease progression using a system of partial differential equations. This model describes the general behavior of the disease, however, it does not incorporate the molecular and cellular stochasticity intrinsic to the underlying disease processes. Here we extend the Hao and Friedman model by modeling each event in disease progression as a stochastic Markov process. This model identifies stochasticity in disease progression, as well as changes to the mean dynamics of key agents. We find that the pace of neuron death increases whereas the production of the two key measures of progression, Tau and Amyloid beta proteins, decelerates when stochasticity is incorporated into the model. These results suggest that the non-constant reactions and time-steps have a significant effect on the overall progression of the disease.

Introduction

Alzheimer’s disease (AD) affects approximately 5.8 million people in the United States and is the most common cause of dementia [1]. The CDC further predicts 14 million instances of the disease in the US by 2060 [1]. Despite years of research into the disease, its progression is poorly understood and ineffectively treated.

Nevertheless, we know that the malfunction of certain proteins results in inflammation and neuron death. Two proteins in particular are suspected to drive disease progression: Amyloid Beta and Tau [2]. Build up of Amyloid Beta forms plaques in the brain, which interfere with communication between cells and are toxic to neurons [3]. Healthy tau proteins aid in neuronal transport and support neuron structure; however, in Alzheimer’s disease, collections of misfolded Tau proteins create toxic Neurofibrillary tangles [2].

Existing mathematical models of Alzheimer’s disease are either entirely deterministic, such as Hao & Friedman’s model (which uses Ordinary Differential Equations, ODEs [2]), or incorporate stochastic noise in an ad hoc manner, e.g. as a separate variable as proposed by Zhang & Wang [4]. Here, we propose a stochastic model that represents every state variable in disease progress probabilistically, as a random variate in a Markov process. We leverage the same mechanistic model as proposed by Hao & Friedman (after consolidating a few parameters) [2]. Because there are many interacting molecules in the model, we hypothesize that variability will compound and alter mean behavior–as typically seen in complex systems with non-linear interactions between agents, e.g. cell proliferation or gene transcription [5, 6]. Furthermore, we predict that compounds that interact with more other molecules will have the highest variability, namely Amyloid Beta outside the neurons.

Methods

Overview

The model detailed in this paper is based upon the deterministic model proposed by Hao and Freidman [2], with a few simplifying changes that do not appreciably alter dynamics in the deterministic case. To increase the interpretability of the stochastic model, the number of parameters was reduced from 77 to 29, and the number of state variables was reduced from 11 to 9. These changes leave only parameters/variables thought to be most important to the disease’s progression (discussed below). For direct comparison between the deterministic and stochastic models, we implemented a deterministic version of the model with the same reduction in parameters and state variables.

Variables & parameters

The nine variables on which the model relies are shown in Table 1, the table also displays the initial values used for both models, these values are those used by Hao and Friedman [2]. The variables used in the model were chosen based on the prevailing theory that the driving force behind Alzheimer’s Disease is the formation of Amyloid plaques and Neurofibrillary tangles.

The equations and parameters used in both the deterministic and stochastic models were taken directly from Hao and Friedman’s work or a modified version of these values [2]. The parameterization of Hao and Friedman’s deterministic model using biological data was done in exemplary detail in the Appendix of the original manuscript and references 28 publications dating back to 1975 [2]. A litany of methods were utilized, including biophysical and biochemical measurements, histopathology on normal and diseased human cadavers, ImmunoHistoChemistry (IHC), NMR spectroscopy, transgenic mouse constructs, and pulse-chase labeling, to find this data [2]. Despite the variety of methods and effort committed to estimating these parameters, there is still error when estimating these parameters. This inaccuracy does limit the applicability of models such as these.

In Table 2 values marked with asterisks are the same as those used by Hao and Friedman [2]. Those without asterisks were modified by us. Only four parameters were modified in the newly proposed model as described here. The parameter λNd represents the rate of normal neuronal loss with age; after the age of forty, neurons begin to die at ~5% each year. The parameter λMA is a combination of two separate parameters used by Hao & Friedman: the production of TNF-alpha inflammatory microglia and the production of astrocytes by TNF alpha. Because we omitted TNF-alpha in the model, we multiplied the two values to bridge the gap between the astrocytes and inflammatory microglia, both of which are elements of our model. βM1 and βM2 represent the effect of inflammation on inflammatory microglia βM1 and its effect on anti-inflammatory microglia βM2.

Deterministic model

The deterministic model we created, to which we will compare the stochastic, is represented by the compartment model in Fig 1 and modeled as a system of 10 ODEs (Table 3).

Thematically, in short:

  • Eq 1 is the change in neuron concentration; only living neurons divide.
  • Eq 2: change in the concentration of Amyloid Beta inside neurons, whereas,
  • Eq 3 is the concentration of Amyloid Beta that the neuron releases when it dies.
  • Eq 4: change in the concentration of Tau proteins;
  • Eq 5 is the change in concentration of Astrocytes.
  • Eqs 6 and 7 are analogous to Eqs 2 and 3 but for Neurofibrillary tangles rather than Amyloid Beta.
  • Eqs 8 and 9 represent the change in inflammatory and anti-inflammatory microglia concentrations, respectively.

The model was run for 10 years, corresponding to 3650 time-steps (365 days x 10 years), which is the average life expectancy for a person with Alzheimer’s disease, with the initial values shown in Table 1 and the parameters in Table 2. Because of the deterministic nature of the model, the model yields identical results every iteration.

Stochastic model

We then converted the deterministic model to a stochastic model by conceptualizing each variable as a two-state Markov process. Table 4 describes each variable, the two associated states, and the processes by which quanta enter and leave the states. The stoichiometry matrix, which contains the changes in the molecules concentration for each reaction, contains the equations from the deterministic model. Therefore, the stoichiometry matrix for the stochastic model is not constant and the amount by which the concentration of a molecule changes depends on the concentration of the other relevant molecules.

We then simulated activity using a second-order Gillespie algorithm. Functions were then created for each birth/death process. The functions determine whether or not the reactions will occur based upon the reaction rate relative to all the other reactions. For example, the function for neuron death draws a normally-distributed number n, with a mean equal to dNF over KFi divided by the sum of all the reaction rates. The normal distribution was used because the rates are averages. This number is then compared to a uniformly-distributed random variable U ~ [0, 1), determined using the runif() function, and, if U < n, the reaction will occur.

In terms of variables that have both production and degradation, either both reactions will occur, or no reaction will take place. For instance, amyloid beta inside the neuron has both production and degradation reactions. Again, a uniformly distributed random variable U, is compared with a normally distributed variable n, with a mean equal to the sum of the rate of production and rate of degradation divided by the sum of all reaction rates. In this case, if U < n, then both degradation and production reactions occur.

The time steps of the model varied in size and were determined in the Gillespie algorithm. The largest time was used to increment the count, however the time till the next reaction for each molecule was determined and used to determine the order in which the functions should be checked. In other words if the time until the next reaction for neurons was shorter than that of Amyloid Beta inside, the algorithm would first update the neuron value if necessary then Amyloid Beta.

The model is run for 10 years, the same as the deterministic model. However, because of the varying time step size in the stochastic model, different reactions may occur more or less than the deterministic model.

Results

We tracked each of the nine variables over 25 iterations, and compared the stochastic and deterministic results for each below. Finally, the variance for each variable in the stochastic model was compared to test the above hypothesis that Tau and Amyloid Beta will have the highest variability. Summarily, all variables in the stochastic model progress in the same direction as predicted from the deterministic model (e.g. if the variable monotonically increases in the deterministic model, it does so in the stochastic model as well, S1S4 Figs). However, the rate of change of many variables changed dramatically in the stochastic model, and several instances of non-monotonic behavior disappeared.

In the main text, we discuss dynamics of three key state variables: neuron concentration (Fig 2A), Amyloid beta outside the neuron (Fig 2B), and Tau (Fig 2C).

thumbnail
Fig 2.

A) Neuron concentration over ten years, deterministic and stochastic. B) Amyloid Beta outside concentration over ten years, deterministic and stochastic. C) Tau concentration over ten years, deterministic and stochastic.

https://doi.org/10.1371/journal.pone.0295578.g002

Neurons

Fig 2A shows the results from the stochastic model for neurons from the stochastic model and from the deterministic model, with the dashed black line representing the latter. Comparing the output from both models shows that neurons die slower in the deterministic model.

Amyloid beta outside

Amyloid Beta outside the neuron is the first reaction we will look at which has both production and degradation. The concentration of amyloid beta outside the neuron rises quickly before slowly decreasing. Fig 2B shows the output from stochastic and deterministic models for amyloid beta outside the neuron. The models have a similar shape, however the deterministic model, shown by the solid black line, increases faster than the stochastic model. Both models seem to begin transitioning from increasing to slowly decreasing at approximately the same time.

Tau

Tau concentration in the stochastic model increases at a rate similar to that of amyloid beta outside the neuron. A crucial difference between the two is that tau reaches an equilibrium and stabilizes, whereas amyloid beta outside the neuron does not. The behavior of tau in the stochastic model can be seen in Fig 2C, which shows 25 different runs of the model.

Fig 2C also demonstrates the different behavior of tau in the stochastic and deterministic models. Tau concentration in the deterministic model increases appreciably faster than in the stochastic model, however despite this differing behavior both models do reach the same equilibrium.

Other variables

Amyloid beta inside the neuron

Amyloid Beta inside the neurons increases quickly before rapidly reaching equilibrium (see S1 Fig). The comparison between the deterministic model and the stochastic model results for amyloid beta inside the neuron show that both models reach the same equilibrium at approximately the same time despite the fact that the reactions could be occurring more frequently in the stochastic model (see S1 Fig).

Nfts inside the neuron

The concentration of NFTs inside the neuron increases at a fast rate for approximately the first 1000 days, after which it begins to decrease (see S2 Fig).

The difference between the deterministic and stochastic models are most stark when comparing NFT inside the neuron; this can be observed in S2 Fig which shows 25 runs of the stochastic model compared with the deterministic model. In the deterministic model NFTs inside the neuron decrease sharply before increasing and leveling off, this is a significant departure from the behavior seen in the stochastic model.

NFTs outside the neuron

The concentration of NFTs outside the neuron increases over the 10 years, as shown in S3 Fig, this figure also shows that the concentration of NFTs outside the neuron increases faster in the deterministic model than in the stochastic model, despite NFTs inside the neuron increasing faster in the stochastic model.

Immune cells: Astrocytes & microglia

Astrocyte concentration in the stochastic model increases over time with the rate of increases slowing the longer the model runs, S4A Fig shows this behavior in 25 runs of the stochastic model. Astrocytes concentration in the deterministic model behaves in a similar manner however the concentration increases slightly faster than in the stochastic model, also shown in S4A Fig. The faster increase in the deterministic model is logical as astrocyte production is triggered by type 1 microglia production of which is triggered by NFTs outside the neuron, which as shown above also increases more rapidly in the deterministic model than the stochastic model.

Type 1 microglia initially increases in concentration rapidly before beginning to slow at approximately 200 days. Type 2 microglia behaves quite differently and decreases rapidly before leveling off. Panels B and C of S4 Fig respectively show type 1 and type 2 microglia concentration from 25 runs of the model. The behavior of type 1 and type 2 microglia in the deterministic model is very similar to in the stochastic model, with the only difference being that type 1 microglia increases faster in the deterministic model.

Variance

The hypothesis tested by this work was that the compound within the model that would be the most variable would be Amyloid Beta outside the neurons. The model was run 25 times with matching time jumps, forcing the times allowed for variance between runs at each time point to be found; from this, the average variance was found for each compound, and the results were used to assess the validity of the hypothesis.

Table 5 shows that amyloid beta is not the most variable between runs of the model. Instead Tau is the most variable, despite being one of the state variables that interacts with the fewest other variables, 1 compared with amyloid beta outside’s 5 variables, the number of interactions comes from the equations in Table 3. This strongly disagrees with the proposed hypothesis that state variables that interact with more other state variables will be more variable. Fig 3 shows the coefficient of variation (CV), which is the ratio of the standard deviation to the mean, at each time point, demonstrating which molecules reach equilibrium.

Discussion

Two main conclusions can be drawn from the research presented in this paper. First, the number of other compounds with which a compound interacts does not increase the variability of the compound. Second, there were apparent differences between the stochastic and deterministic models’ results. Initially we suspected that the differing behavior between the two models resulted from reactions occuring more times in the stochastic model. However, further investigation showed that increasing the number of reactions in the deterministic model has no significant effect on the variables’ behavior (see S5 Fig). This suggests another cause, instead of the number of reactions being the cause for the different behavior between models, the differences could arise from the differing number of reactions between species. In other words, the variables not occurring the same number of times as each other in the stochastic model is the cause of the differences.

Based on the research here, it is impossible to say if either model is better than the other. However, we can say that they provide different insights; thus, each likely has its own strengths and weaknesses. The reactions not occurring a set number of times in the stochastic model seemed to be central to the different results between the two models.

Supporting information

S1 Fig. Graph showing stochastic vs deterministic behavior of amyloid beta inside the neuron.

https://doi.org/10.1371/journal.pone.0295578.s001

(PNG)

S2 Fig. Graph showing stochastic vs deterministic behavior of NFTs inside the neuron.

https://doi.org/10.1371/journal.pone.0295578.s002

(PNG)

S3 Fig. Graph showing stochastic vs deterministic behavior of NFTs outside the neuron.

https://doi.org/10.1371/journal.pone.0295578.s003

(PNG)

S4 Fig. Stochastic vs deterministic behavior of immune cells.

https://doi.org/10.1371/journal.pone.0295578.s004

(PNG)

S5 Fig. Results from the deterministic model with various time steps.

https://doi.org/10.1371/journal.pone.0295578.s005

(PNG)

Acknowledgments

I would like to acknowledge the support and suggestions provided by Doctor Christopher McFarland, Doctor Peter Thomas, and Doctor Ann Harris from Case Western Reserve University along with the Functional Genomics Training program. I would also like to acknowledge Professor Christopher Leary and Professor Gregg Hartvigsen for their advice regarding the deterministic model.

References

  1. 1. Division of Population Health, National Center for Chronic Disease Prevention and Health Promotion, C. D. C. (2020, October 26). What is alzheimer’s disease? Centers for Disease Control and Prevention. Retrieved April 27, 2022, from https://www.cdc.gov/aging/aginginfo/alzheimers.htm
  2. 2. Hao W, Friedman A. (2016). Mathematical model on Alzheimer’s disease. BMC Syst Biol 2016; 10(108). pmid:27863488
  3. 3. Hu J, Zhang Q, Meyer-Baese A, Ye M. Stationary distribution of a stochastic Alzheimer’s disease model. Math Meth Appl Sci. 2020; 43:9706–9718.
  4. 4. Zhang Y, Wang W.Mathematical analysis for stochastic model of Alzheimer’s disease. Communications in Nonlinear Science and Numerical Simulation. 2020; 89.
  5. 5. Potvin-Trottier L, Lord N, Vinnicombe G. et al. Synchronous long-term oscillations in a synthetic gene circuit. Nature. 2016; 538: 514–517. pmid:27732583
  6. 6. Yates CA, Ford MJ, Mort RL. A Multi-stage Representation of Cell Proliferation as a Markov Process. Bulletin of mathematical biology. 2017; 79(12): 2905–2928. pmid:29030804