chuy52506 said:
Anyone have an idea on how to start this?
If by survival rate you mean probability of survival, then you could model the problem as a Markov chain on the state space {0,1,2,...,150}. At any integer time point the current state is the number of birds still alive at that time. We start at time t = 0 in state 150. Whenever the state is i (i >= 1) the number of birds that will die during the next time step is a binomial random variable with parameters i and 0.5, so P{k birds die by time t+1|i alive at time t} = C(i,k)/2^i, for k = 0,1,2, ..., i, where C(a,b) is the binomial coefficient C(a,b) = a!/[b! (a-b)!]. If k birds die there will be i-k left alive at time t+1.
You can work out the 150x150 one-step transition probability matrix; its entries are binomial probabilities. You want the probability of being in state 0 at time 5. Since state 0 is "absorbing" (meaning that once you reach 0 you stay in state 0 forever), that means that you reach state 0 for the first time at t <= 5. The answer will just be the (0,150) element of the matrix P^5, the fifth power of P in the sense of matrix multiplication.
I would not call this a simple problem.
RGV