In: Advanced Math
Problem #1: On a certain island, there is a population of snakes, foxes, hawks and mice. Their populations at time t are given by s(t), f (t), h(t), and m(t) respectively. The populations grow at rates given by the differential equations
s′ = 21/8 s − f − 7/8 h − 1/8 m
f ′ = 5/8 s + f − 7/8 h − 1/8 m
h′ = 5/8 s + 0 f + 1/8 h − 1/8 m
m′ = 65/4 s − 5 f − 31/4 h − 5/4 m
Putting the four populations into a vector y(t) = [s(t) f (t) h(t) m(t)]T, this system can be written as y′ = Ay. Find the eigenvectors and eigenvalues of A. Label the eigenvectors x1 through x4 in order from largest eigenvalue to smallest (the smallest being negative). Scale each eigenvector so that its first component is 1. When you have done so, identify the eigenvector whose fourth component is the largest. What is that largest fourth component? Problem #1: 14 Problem #1 Attempt #1 Attempt #2 Attempt #3 Your Answer: 14 Your Mark: 0/3✘ 3/3 ✔
Problem #2: Continuing from the system of differential equations from Problem 1, each eigenvector represents a grouping of animals that changes with simple exponential growth or decay. The exponential rate of growth or decay is given by the corresponding eigenvalue. Because the matrix A is invertible and diagonalizable, any initial values for the animal population can be written as a combination of these four special groupings that each grow exponentially by their eigenvalue. Consider the initial population y(0) = [18 11 4 102]T. Solve for constants c1 through c4 in order to write y(0) = c1 x1 + c2 x2 + c3 x3 + c4 x4 where x1 through x4 are the eigenvectors as detailed in Problem 1 (i.e., the eigenvectors in order, and scaled so that the first component is 1). Enter the values of c1, c2, c3, and c4, separated with commas.
Problem #2: Problem #2 Attempt #1 Attempt #2 Attempt #3 Your Answer:
Problem #3: Based on the system of differential equations from Problem 1, with the initial population from problem 2, find the function for the population of hawks, h(t).
Pls, give thumbs up. Comment if any issue.
1) Answer: 14
Matlab Code:
A=[21/8 -1 -7/8 -1/8; 5/8 1 -7/8 -1/8; 5/8 0 1/8 -1/8; 65/4 -5 -31/4 -5/4]
eig(A)
[V,D]=eig(A)
EV1=V(:,1)/V(1,1)
EV2=V(:,2)/V(1,2)
EV3=V(:,3)/V(1,3)
EV4=V(:,4)/V(1,4)
Output:
The largest fourth component is 14 of eigenvector EV1.