Mudassir Lodi Homework for Lecture 22 of Dr. Z.’s Dynamical Models in Biology class Email the answers (either as .pdf file and/or .txt file) to ShaloshBEkhad@gmail.com by 8:00pm Monday, Nov. 22,, 2021. Subject: hw22 with an attachment hw22FirstLast.pdf and/or hw22FirstLast.txt Also please indicate (EITHER way) whether it is OK to post 1. Carefully read, and understand, the posted solution to the attendance quiz for Lecture 22 https://sites.math.rutgers.edu/~zeilberg/Bio21/att22S.pdf . For each of the problems that you got wrong, explain what you did wrong, or what you were confused about. For example, if you tried to set-up a difference equation, write ’I did not realize that it is was continuous time’ OR: ‘I have trouble with ‘word problems’ and had no clue how to translate from verbal English to mathematics’. Then for each of the problems that you got wrong, make up two similar ones and solve them. On att22, I did #2 incorrectly because I did not realize it was a continuous time equation. The population of a certain bacteria increases at a rate double that of the current value. If at time t = 1 its value is 1, what is the value at t = 8? x'(t) = 2x, x(1) = 1 dx/dt = 2x 1/2x dx = dt (ln x)/2 = t + C 0 = 1 + C C = -1 (ln x)/2 = t - 1 (ln x)/2 + 1 = t x(t) = e^(2t - 2) x(8) = e^14 2. Set up a system of difference or differential equation (whatever is appropriate) for the following problems. Then use either Orb (or matrix algebra) or dsolve, respectively, to answer the question. a There are two species of animals hares and lynxes. It turns out that • The number of lynxes at the start of each year equals twice the number of lynxes at the start of last year plus three times the number of hares at the start of last year. • The number of hares at the start of each year equals three times the number of lynxes at the start of last year plus the number of hares at the start of last year. At the start of the first year there were 10 hares and 20 lynxes. How many hares and how many lynxes were there at the start of the tenth year? x(t) = 2x(t-1) + 3y(t-1) y(t) = 3x(t-1) + y(t-1) (x,y) = (2x+3y, 3x+y) x = 2x + 3y y = 3x + y F:=diff(x(t),t) = 2*x(t) - y(t), diff(y(t),t) = 3*x(t) + y(t) dsolve([F,x(0) = 20, y(0) = 10]) b There are two species of animals hares and lynxes. It turns out that • The rate of change (where the unit of time is a year) of the number of lynxes at any time equals twice the number of lynxes plus three times the number of hares at that very same time. • The rate of change of the number of hares at any time equals three times the number of lynxes plus the number of hares at that very same time. At the very start (t = 0) there were 10 hares and 20 lynxes. How many hares and how many lynxes are there after ten years? x'(t) = 2x(t) + 3y(t) y'(t) = 3x(t) + y(t) 3. Carefully read http://sites.math.rutgers.edu/~zeilberg/Bio21/LadasSri.pdf and confirm the claims for some randomly chosen values of the parameters for Conjecture 1. 4. Carefully read http://sites.math.rutgers.edu/~zeilberg/Bio21/LadasSri.pdf and confirm the claims for some randomly chosen values of the parameters for Conjecture 2. 5. Find the fixed points and stable fixed points of the first-order difference equation. x(n) = x(n-1)/(10+x(n-1)) . Where x(0) can be anything except −10. f(x) = x/(10+x) x = x/(10+x) x = 0 f'(x) = 10/(x+10)^2 f'(0) = 10/100 = 0.1 x = 0 is a stable fixed point 6. (Optional, 30 brownie points). Prove (rigorously) that the stable fixed point that you found is a global attractor, i.e. wherever you start (except of course at x(0) = −10, you will, in the long-run wind-up in that stable fixed point.