Problem 48
Question
Two different species of organisms may compete for the same limited resource, for example, hyenas and lions may compete for territory and prey. A large lion population will reduce the growth rate of the hyena population, and vice versa. Let the number of lions be \(x\) and the number of hyenas be \(y .\) The growth rates of the lion and hyena populations may be modeled using Lotka- Volterra equations (see Chapter 11). Suppose the growth rates are given by functions: $$ \begin{array}{l} f(x, y)=0.5 x-\frac{x^{2}}{10}-\frac{x y}{20} \\ g(x, y)=2 y-\frac{y^{2}}{20}-\frac{x y}{5} \end{array} $$ (a) Show that \(f(x, y)=0\) and \(g(x, y)=0\) when \(x=0\) and \(y=40\). The two populations are said to be in equilibrium when at this size. (b) Linearize the vector valued function $$ \mathbf{h}:(x, y) \mapsto\left[\begin{array}{l} f(x, y) \\ g(x, y) \end{array}\right] $$ when \(x\) is approximately 0, and \(y\) is approximately 40 .
Step-by-Step Solution
VerifiedKey Concepts
Equilibrium
In simpler terms, it's when the growth rates of both species become zero as they reach a stable state.
In our given problem, the equations for the growth rates of lions and hyenas are represented by functions:
- For lions: \( f(x, y) = 0.5x - \frac{x^2}{10} - \frac{xy}{20} \)
- For hyenas: \( g(x, y) = 2y - \frac{y^2}{20} - \frac{xy}{5} \)
- The population growth of lions, \( f(x, y) = 0 \).
- The population growth of hyenas, \( g(x, y) = 0 \).
Jacobian matrix
In our case, it is used to linearize the Lotka-Volterra equations at the equilibrium.To construct the Jacobian matrix, partial derivatives of the functions are taken:
- Partial derivatives of \( f(x, y) \):
- with respect to \( x \): \( f_x = 0.5 - \frac{2x}{10} - \frac{y}{20} \)
- with respect to \( y \): \( f_y = -\frac{x}{20} \)
- Partial derivatives of \( g(x, y) \):
- with respect to \( x \): \( g_x = -\frac{y}{5} \)
- with respect to \( y \): \( g_y = 2 - \frac{2y}{20} - \frac{x}{5} \)
- \( f_x(0, 40) = -1.5 \)
- \( f_y(0, 40) = 0 \)
- \( g_x(0, 40) = -8 \)
- \( g_y(0, 40) = -2 \)
Linearization
It's a way to approximate the system's behavior using the Jacobian matrix derived at the equilibrium.In our context, starting from the equilibrium \((0, 40)\), we look at small deviations using the linearized system. This is useful when exact solutions are difficult to compute or when we need an approximation around a known stable state.The linearized version of the original Lotka-Volterra based system is represented as:\[\mathbf{J}(x, y)^T = \begin{bmatrix} -1.5 & 0 \ -8 & -2 \end{bmatrix}(x, y)^T\]This linear system approximates how small disturbances in the lion or hyena populations would dynamically evolve around the point \((0, 40)\).
It means if the population sizes slightly shift from the equilibrium, the Jacobian matrix predicts how these gaps evolve or stabilize.By using linearization, one can better understand local stability and predict responses to initial changes within the system.