17.5 Predator prey with logistic growth
Let’s take a look at another model developed from the lynx-hare system. We assumed that the hare grow exponentially (notice the term rH in their equation.) However we can modify their growth rate to be a logistic growth function with carrying capacity K:
dHdt=rH(1−HK)−bHLdLdt=ebHL−dL
Through a rescaling of Equation (17.4) with the variables x=HK, y=Lr/b and T=rt we can rewrite Equation (17.4) as:
dxdT=x(1−x)−xydydT=ebKrxy−dry
In order to analyze the Jacobian matrix for Equation (17.5) we will need to compute several partial derivatives:
∂∂x(f(x,y))=∂∂x(x(1−x)−xy)=1−2x−y∂∂y(f(x,y))=∂∂y(x(1−x)−xy)=−x∂∂x(g(x,y))=∂∂x(ebKrxy−dry)=ebKry∂∂y(g(x,y))=∂∂y(ebKrxy−dry)=ebKrx−dr
So now we can construct the Jacobian matrix:
J(x,y)=(1−2x−y−xebKryebKrx−dr)
The notation J(x,y) signifies the Jacobian matrix evaluated at the equilibrium solution (x,y). Sometimes computing the Jacobian matrix is a good first step so then you are ready to compute the equilibrium solutions. In the exercises you will determine equilibrium solutions and visualize the Jacobian matrix.