I had to find a function for the population of a species that reproduces at a rate proportional to the current population and that dies at a rate proportional to the square root of the current population. Therefore, I assumed that this meant I had to solve
$$ \frac{dP}{dt}=\beta P-\delta \sqrt{P} $$
where $P$ is the population (a function of $t$, time) and $\beta$ and $\delta$ the birth and death rates repectively. Solving this differential equation gave me
$$ P(t)=\left(\frac{e^\left(\frac{\beta t}{2}+C \right)+\delta}{\beta}\right)^2 $$
which is correct, according to Wolfram. The next part of the questionis to show that for some value of $P_0$ (the initial population at $t=0$), the population will be extinct in the long run. However, it is clear that my formula for $P(t)$ is always increasing and that it is never equal to zero. Did I miss anything?Like I said, I checked with Wolfram and it is a solution to my differential equation.