from sympy import Matrix, Rational
# Set up the matrix A in symbolic form
= Matrix([[1, Rational(6, 100), Rational(12, 100)], [1, 0, 0], [0, 1, 0]]) A
Homework 5
1
By hand, find eigensystems for each of these matrices. Then specify the algebraic and geometric multiplicity of each eigenvalue.
2
Compute the eigensystems of these matrices, and identify any defective matrices. (You can do this by hand or on the computer.)
3
By hand, find a matrix
4
Compute
5
By hand, find the spectral radius and dominant eigenvalue, if any, for each of these matrices:
6
If the matrices of the previous exercise are transition matrices, for which do all
7
The three-stage insect model of Example 2.21 yields a transition matrix
Use a technology tool to calculate the eigenvalues of this matrix. Deduce that
8
The financial model of Example 2.27 gives rise to a discrete dynamical system
Use a technology tool to calculate the eigenvalues of this matrix. Deduce that
Find a starting vector
(If you do this using Sympy, and you set up the matrix A using rational numbers, you can get exact results and find a starting vector which will never reach your approximate growth rage. You can see how this result changes if you use floating point numbers at some point in the calculation, e.g. x = N(x)
.)
9
On this problem,you may use a computer to find eigensystems etc, but don’t solve it using simulations and trial and error.
A species of bird can be divided into three age groups: age less than 2 years for group 1, age between 2 and 4 years for group 2, and age between 4 and 6 years for the third group. Assume that these birds have at most a 6-year life span. It is estimated that the survival rates for birds in groups 1 and 2 are
Model this bird population as a discrete dynamical system and analyze the long-term change in the population – give a percentage by which the population of group 1 changes from year to year.
Now suppose that the survival rates for group 1 and 2 are not known (so are no longer assumed to be 50% and 75%), but are assumed to be equal to one another. What value for this survival rate would make the population stable in the long run?