4  Generating Random Processes

Q4.1

Suppose that A and B each start with a stake of $10, and bet $1 on consecutive coin flips. The game ends when either one of the players has all of the money. Let Sn be the fortune of player A at time n. Then {Sn,n0} is a symmetric random walk with absorbing barriers at 0 and 20. Simulate a realization of this process and plot Sn vs. the time index from time 0 until a barrier is reached.

Q4.2

A compound Poisson process is a stochastic process {X(t),t0} that can be represented as the random sum X(t)=i=1N(t)Yi,t0, where {N(t),t0} is a Poisson process and Y1,Y2, are iid and independent of {N(t),t0}. Write a program to simulate a compound Poisson(λ)-Gamma process (Y has a Gamma distribution). Estimate the mean and the variance of X(10) for several choices of the parameters and compare with the theoretical values. Hint: Show that E[X(t)]=λtE[Y1] and Var(X(t))=λtE[Y12].

Q4.3

A nonhomogeneous Poisson process has mean value function

m(t)=t2+2t,t0

Determine the intensity function λ(t) of the process, and write a program to simulate the process on the interval [4,5]. Compute the probability distribution of N(5)N(4), and compare it to the empirical estimate obtained by replicating the simulation.