User:Carl Boettiger/Notebook/Stochastic Population Dynamics/2010/05/06

From OpenWetWare
Jump to navigationJump to search
Stochastic Population Dynamics <html><img src="/images/9/94/Report.png" border="0" /></html> Main project page
<html><img src="/images/c/c3/Resultset_previous.png" border="0" /></html>Previous entry<html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</html>Next entry<html><img src="/images/5/5c/Resultset_next.png" border="0" /></html>

Goals

  • Model choice exercise with sdes
  • general likelihood calculation from simulation

Test Case

[math]\displaystyle{ dX_t = \alpha_t (\theta - X_t) dt + \sigma dt }[/math]

[math]\displaystyle{ d \alpha_t = -\beta }[/math]


Approach

  • The linear approximation to the warning signals dynamics can be captured by the OU process, look for changing [math]\displaystyle{ \alpha }[/math]
  • SDE models will also provide some of the coarser approximations for the structured population dynamics. Formulations of these still to do.

Conditional probability

Solution to the time dependent OU process, see Gardiner 4th ed. pg 111, eq. (4.5.109).

Solve using [math]\displaystyle{ f(X_t) = X_t \exp\left( - \int_0^t \alpha(s) ds \right) }[/math] and apply Ito formula, giving

[math]\displaystyle{ X_t = X_0 \exp\left( - \int_0^t \alpha(s) ds \right) +\theta\left( 1- \exp\left( - \int_0^t \alpha(s) ds \right) \right) + \int_0^t \sigma \exp\left( - \int_0^t \alpha(s) ds \right) dW_t }[/math]

And the moments are:


[math]\displaystyle{ \begin{align} E(X_T) &= X_0 \exp\left( - \int_0^T \alpha(s) ds \right) +\theta\left( 1- \exp\left( - \int_0^T \alpha(s) ds \right) \right) \\ \operatorname{Var}(X_T) &= \sigma^2 \int_0^T \exp\left( -2 \int_0^t \alpha(s) ds \right) d t \end{align} }[/math]
  • Using the exact solution I can write down the conditional density function. We can evaluate both integrals for this linear increase model:
[math]\displaystyle{ \int_0^t (\beta t +\alpha_0 ) dt = \beta t^2/2 + \alpha_0 t }[/math]
[math]\displaystyle{ \int_0^t e^{ - \beta s^2 - 2\alpha_0 s} ds = \frac{\sqrt{\pi}e^{\alpha_0^2/\beta} }{2\sqrt{\beta}} \left( \operatorname{erf} \left( \frac{ \alpha_0+\beta t }{ \sqrt{\beta} } \right) - \operatorname{erf} \left( \frac{ \alpha_0 }{ \sqrt{\beta} } \right) \right) }[/math]


  • Next, implement the conditional probability density in R:

<syntaxhighlight lang="rsplus">

numeric_V <- function(Dt, pars){ vint <- function(x){ exp(-pars$beta*x^2 -2* pars$alpha_0*x) } int <- integrate(vint, 0, Dt) int$value*pars$sigma^2 }

analytic_V <- function(Dt, pars){ if( erf(pars$alpha/sqrt(pars$beta) ) != 1){

Log_Vx <- log(pars$sigma^2 * sqrt(pi) ) + pars$alpha_0^2/(pars$beta) + log( ( erf( (pars$alpha_0+pars$beta*Dt)/(sqrt(pars$beta) ) ) - erf(pars$alpha_0/(sqrt(pars$beta) ) ))/(2*sqrt(pars$beta) )) class(Log_Vx) = "numeric" Vx <- exp(Log_Vx) } else { warning("beta near zero, using approximation") Vx <- pars$sigma^2*(1-exp(-2*pars$alpha*Dt))/(2*pars$alpha)

} Vx }

  1. Parametrization dXt = alpha(theta - Xt)dt + sigma*dWt, alpha(t) = beta*t+alpha_0

warning_model <- function(Dt, Xo, pars){ int <- pars$beta*Dt^2/2 + pars$alpha_0*Dt Ex <- Xo * exp(-int) + pars$theta * (1 - exp(-int) ) Vx <- analytic_V(Dt, pars)

   return(list(Ex=Ex,Vx=Vx))

}

dcWarning <- function(x, Dt, x0, pars, log = FALSE){

 P <- warning_model(Dt, x0, pars)
 dnorm(x, mean=P$Ex, sd=sqrt(P$Vx), log=log)

}


warning.lik <- function(alpha_0, theta, sigma, beta){

 n <- length(X)
 dt <- deltat(X)
 pars = list(alpha_0=alpha_0, theta=theta, sigma=sigma, beta=beta)
 -sum( dcWarning(X[2:n], dt, X[1:(n-1)], pars, log=TRUE) )

}


require(stats4) require(sde) require(NORMT3)

set.seed(123) theta <- 3 alpha <- 1 sigma <- 2 alpha_0 <- 1 beta <- .01 pars = list(alpha_0=alpha, theta=theta, sigma=sigma, beta=beta)

warning_model(1, 1, pars) setOU(1, 1, theta=c(theta*alpha, alpha, sigma) )

numeric_V(Dt, pars) analytic_V(Dt, pars)


</syntaxhighlight>


Note on Numerics

  • Unfortunately the analytic solution does not have nice numerical properties for small β, which is the interesting limiting case (no/very slow change in stability). The error functions both approach unity, making the difference tiny, while the exponential term diverges. The result is that variances for too small beta suddenly become zero, instead of the appropriate limit. The numerical integration is more robust to this. Analytic implementation is modified to just provide the limit case when erf functions both evaluate at exactly 1.
  • This linear test case model is quite restrictive. If the eigenvalue is decreasing, doing so in a linear way need not out perform a model in which it is not decreasing at all. It would be interesting to test if this is more sensitive than change point estimation. Iacus (2008) implements a least-squares based change point estimation in the R sde package.


Misc Notes

  • Upgraded to Ubuntu 10.04. Went fine on the experimental partition with a reformat to extension 4 and a fresh install. Fast boot times, spiffy system. Full upgrade on main (ext3) partition failed miserably though, can't even boot up successfully following the upgrade.
  • Adding additional packages when fine, mostly copied configuration files over. A couple extra steps to get dual monitors working again, as the resolution wasn't properly detected. Solution here, essentially:

<syntaxhighlight lang="bash">

#!/bin/bash         
xrandr --newmode "1920x1200_60.00" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync
xrandr --newmode "1280x1040_60.00"  110.63  1280 1360 1496 1712  1040 1041 1044 1077  -HSync +Vsync
xrandr --addmode VGA1 1920x1200_60.00
xrandr --addmode VGA1 1280x1040_60.00 

</syntaxhighlight>


  • vim-full is deprecated, vim-latexsuite needs additional installation, read: /usr/share/doc/vim-latexsuite/README.Debian after installing. Also vim's "+y copy to clipboard doesn't work with pure vim, so installing xclip vim-common and vim-gnome to fixed this.