What is the equilibrium population density

Assignment Help Other Subject
Reference no: EM132365523

Module: Introduction to Modelling Population Dynamics

This lab is about modelling ecological population dynamics, which means the way that populations change over time. You are encouraged to collaborate with others in working through this lab, but do make sure that you fully understand what is going on. The assessment for this lab will be through entering answers into an online LMS ‘quiz'. As you go through this lab sheet, write down notes in the space provided for the questions marked with a *, either in pen or in the word document. These will help you check your understanding as you go, and form the basis of your answers for the quiz. You will not be able to access the quiz itself during the lab - it will open at the end of the lab.Pasting plots into this word doc can also be very useful, so you can look back at them to help with the quiz later. When you start writing your R script, make sure it is neat and structured, as you will have to submit that too. But you do not have to submit this document or any hard copy document.

Population Dynamics and Competition

Get the excel spreadsheet ‘intro to ecology modelling lab.xls' from LMS, save it on your home drive and/or your own thumb drive, and open it up. You should see two columns of numbers, headed ‘time' and ‘population density'.

While the ideas of modelling population dynamics will be very similar for many different species and situations, for this exercise we can assume that we are modelling the density of a species of mouse, that the time step is in months, and the density is the number of individuals per square kilometre. For other species we might use different spatial and temporal scales.

The number in cell B6 is the initial population density. Create a plot of time against density, so you can see how density is changing over time.
*What do you notice?

*What happens when you increase the reproduction rate?
* What happens if you reduce the reproduction rate? (Change it back to 0.1 when you're done.)
*Why is this not a realistic model of population growth?
*Why is this model of population growth more realistic?
*About how long does it take for the population to get close to its equilibrium population density?
*What happens if the initial population density is higher than the equilibrium population density?
*What happens if the initial population density is equal to the equilibrium population density?
*What happens now if you increase the ‘reproduction rate' parameter?
*What happens now if you decrease the ‘reproduction rate' parameter?
*What happens if you change the ‘death rate' to be 0.0002 times the population density instead of 0.0001 (ie change the ‘density dependence death rate parameter' to be equal to 0.0002)?
*How does the equilibrium population density depend on the ‘reproduction rate' parameter and the ‘density dependence death rate parameter'?? Can you write down an equation or give an explanation in wordsthat actually gives the equilibrium population density as a function of the ‘reproduction rate' parameter and the ‘density dependence death rate parameter'??
* If the population was twice as big on a given day, and the amount of food was the same, what would happen to the amount of food eaten, according to this equation (note that this question is just checking to see if you understand the equation above - you don't actually need to run or plot anything) ?
* If the population was twice as big, and the amount of food was also twice as big, what would happen to the amount of food eaten, according to this equation?
* What is happening on this island after the first mice arrive. What happens to the mice and what happens to the food?
* For mice to survive and reproduce, they need to find mates and companions. This means there is an ‘Allee Effect' - at small population densities, populations are no longer viable. We can represent this in a simple way by adding the following line of code at the end of the block:
if (pop[time]<3) pop[time]=0
* What is the minimum viable population density for this mouse?
* How long does it take for mice to die out completely? (You might need to extend the simulation.)
* If each mouse needs a little more food each day, does that make them die out earlier or later?
* If each mouse is a little better at finding food each day, does that make them die out earlier or later?
* If the growth rate is a little smaller, does that make them die out earlier or later?
* If the amount of food initially available is a little less than 100kg, does that make them die out earlier or later?
* What makes more difference to how long they last - halving the amount of food initially available, or doubling the initial population?
* Make sure you set all your parameter values back after changing them - have you done that?
Of course the grass on the island actually keeps on growing and producing seed. Each day the grass produces half a kilogram of edible seed. Make this change to the model.
* What is happening on this island after the first mice arrive now? What happens to the mice and what happens to the food?
* What happens to the population of the new mouse after colonisation?
* What happens to the population of the first mouse after colonisation by the new mouse?
* What happens to the amount of food available after colonisation by the new mouse?
* What happens to the population of the new mouse after colonisation?
* What happens to the population of the first mouse after colonisation by the new mouse?
* What happens to the amount of food available after colonisation by the new mouse?

QUESTION 1

Part 1: Population Dynamics and Competition
Get the excel spreadsheet 'intro to ecology modelling lab.xls' from LMS, save it on your home drive and/or your own thumb drive, and open it up. You should see two columns of numbers, headed 'time' and 'population density.

While the ideas of modelling population dynamics will be very similar for many different species and situations, for this exercise we can assume that we are modelling the density of a species of mouse, that the time step is in months, and the density is the number of individuals per square kilometre. For other species we might use different spatial and temporal scales.

The number in cell 86 is the initial population density. Create a plot of time against density, so you can see how density is changing over time.

'What do you notice?

Population density is

increasing linearly
decreasing linearly
staying constant
increasing exponentially
decreasing exponential

QUESTION 2
Look at the formula in cell B7 i.e. "-B6+136*$C$1". This means that the new density is the old one plus a certain proportion of the old one. This proportion (the value in cell CI) is the reproduction rate; a value of 0.1 means that, on average, each mouse in the population produces 0.1 babies per month. Try changing this rate and see what happens in the graph.
*What happens when you increase the reproduction rate?

Population density changes than before
faster
slower
at the same rate

QUESTION 3

*why is this not a realistic model of population growth?
the population is increasing too slowly
real populations would be expected to increase linearly
the population keeps increasing without bound
population fluctuates
the population becomes negative

QUESTION 4
One thing we haven't accounted for is the fact that animals die as well as reproduce. Add a death rate parameter equal to 0.05 to the
spreadsheet. Adapt the equationin B7 to account for this death rate as well as the reproduction (birth) rate, and then copy it down the column.

*What happens?

Population density changes ___ than before
faster
slower
at the same rate

QUESTION 5
Then the population density ____ begin to stabilise.
does
does not

QUESTION 6
At the moment we are assuming that death rate is constant, but in reality it is likely to increase as the population gets large and resources
become limiting. Instead of a constant death rate, add an extra column for a death rate that changes with population size. Assume that
death rate will be equal to 0.0001 times the population density. Let's call the parameter 0.0001 the 'density dependence death rate parameter'. Adapt the formulas in other columns as required.

*What happens?

Population density starts increasing
linerly
exponentially

QUESTION 7

Then the population density begin to stabilise.
does
does not

QUESTION 8
*Why is this model of population growth more realistic?
Because

the values don't go negative
populations can't keep growing forever
real populations can't grow exponentially

QUESTION 9
Note that the population tends towards a certain density that we can call the equilibrium population density.

What is the equilibrium population density?

QUESTION 10
*About how long (how many months) does it take for the population to get close to its equilibrium population density?

QUESTION 11
*What happens if the initial population density is higher than the equilibrium population density?

The population

increases continuously from its initial value
increases from its initial value and then stabilises
decreases from its initial value and then stabilises decreases continuously from its initial value

QUESTION 12

If the initial population is less than the equilibrium population then changing from 0.0001 to 0.0002 makes the population initially
increase faster
increase slower
increase at the same rate

QUESTION 13

Then
Stabilise at a lower equilibrium population
Stabilise at a higher equilibrium population
stabilise at the same equilibrium population
not stabilise at an equilibrium population

QUESTION 14
*How does the equilibrium population density depend on the 'reproduction rate parameter' (RRP) and the 'density dependence death rate parameter' (DDDRP)?? Can you write down an equation or give an explanation in words that actually gives the equilibrium population density as a function of the 'reproduction rate' parameter and the 'density dependence death rate parameter'??

The equilibrium population density is equal to

QUESTION 15
Now we want to do something similar, but taking resource levels and consumption into account more explicitly, so we can start to think about competition. (For the mouse - the main limiting resource is food, edible seeds produced by plants in its environment).

We'll create a new model, representing a situation where a small population of the mouse species colonises a new environment (an island perhaps). It is probably easiest to start by copying and pasting the code you wrote already (your model) and add a comment for yourself so you know this is the mouse competition model when you look back later. We are changing the time step for this new model - the time step is now days.

Add a new variable called 'food' - this is the biomass of edible seeds available (kg per square kilometre). Set the initial value for this variable to be 100.

This mouse needs at least 10g of food per day to just stay healthy. Within the loop, we can represent this by adding the following line of R code at the start of the ( ) block:
foodneeded = pop(time-1) • 0.01
The amount of food eaten on any day will depend on how much food the mouse finds - more mice will find more food, and if there is more food then more will be found. We can represent this with the following line of code:
foodeaten = food(time-1) • pop(time-1) • 0.001

*If the population was twice as big on a given day, and the amount of food was the same, what would happen to the amount of food eaten, according to this equation (note that this question is just checking to see if you understand the equation above - you don't actually need to run or plot anything) ?

The amount of food would be
a quarter as much
the same
twice as much
half as much
four times as much

QUESTION 16
* What is happening on this island after the first mice arrive? What happens to the mice and what happens to the food?

The mouse population at first, at a(n) ______ rate, while the amount of food available at first, at a(n) rate.

increases
decreases
increasing
decreasing

QUESTION 17
Then the rate of change of the mouse population and the rate of change in the amount of food available

speeds up
slows down

QUESTION 18
The amount of mice reaches a after around days, and then starts to .

maximum
minimum
20
40
60
80
100
increases
decreases

QUESTION 19

365 days after the start, the amount of food is than it was at the start, and than it was after 50 days, while the amount of mice is than it was at the start, and than it was after 50 days.

QUESTION 20

* For mice to survive and reproduce, they need to find mates and companions. This means there is an Allee Effect' - at small population
densities, populations are no longer viable. We can represent this in a simple way by adding the following line of code at the end of the block:

if (pop(time)<3) pop(time)=0
What is the minimum viable population density for this mouse.

QUESTION 21
How many days does it take for mice to die out completely? (You might need to extend the simulation.)

QUESTION 22
* If each mouse needs a little more food each day, does that make them die out earlier or later?
If each mouse is a little better at finding food each day, does that make them die out earlier or later?
* If the growth rate is a little smaller, does that make them die out earlier or later?
* If the amount of food initially available is a lithe less than 100kg, does that make them die out earlier or later?

QUESTION 23
What makes more difference to how long they last - halving the amount of food initially available, or doubling the initial population?
Changing the initial population makes a difference in absolute terms.

larger
smaller

QUESTION 24

" Make sure you set all your parameter values back after changing them - have you done that?

Of course the grass on the island actually keeps on growing and producing seed. Each day the grass produces half a kilogram of edible seed. Make this change to the model.

What is happening on this island after the first mice arrive now? What happens to the mice and what happens to the food?

QUESTION 25
Now we want to model what happens if a second species of mouse colonises the island a year after the first one arrives. To do this we need a new population variable (call it `pop2'). The initial population of the second species is zero, but at the end of day 365, some mice arrive. Let's say 60 arrive, and the area of grassland on our island is 10 square kilometres, so on day 365 the population density of the new species jumps to 6. Include this in your model using an 'if' command.
At this point, run the model, and add another line to the output plot showing the density of the second species over time. You see it jump to 6 on day 365, then remain constant.
This second species eats the same seeds as the first one. It needs the same amount of seeds per day to just remain healthy. It is exactly as good at finding food, has the same growth rate, and this growth rate depends on the food it finds and eats in the same way.
Adapt the model as required - you will need to copy and paste and modify most of the lines of code - be careful that you change all relevant variable names in each line.

When you've done that, run the model and check it is working correctly.
What happens to the population of the new mouse after colonisation?

it eventually dies out
it persists

QUESTION 26
*What happens to the amount of food available after colonisation by the new mouse?
it decreases.
it increases
it stays the same
it first decreases, then returns to the same level
it first increases, then returns to the same level

QUESTION 27

Now change the model so that the new mouse is bigger than the old one and thus needs more feed each day ie 15g instead of 10g. When you've done that, run the model and check it is working correctly.

What happens to the population of the new mouse after colonisation?

it eventually dies out
it persists

QUESTION 28
* What happens to the amount of food available after colonisation by the new mouse?
it decreases
it increases
it stays the same
it first decreases, then returns to the same level
it first increases, then returns to the same level

QUESTION 29
Set the two species to be equal sizes again. Now change the model so that the new mouse is better at finding food than the old one ie increase the relevant parameter by 50%.
When you've done that, run the model and check it is working correctly.
* What happens to the population of the new mouse after colonisation?

it eventually dies out
it persists

QUESTION 30
What happens to the amount of food available after colonisation by the mouse?

QUESTION 31
Keep the parameter value you just changed at the same value ie second mouse 50% better at finding food than the first. Can you now change the amount of food needed by the first species to a value where the two species can co-exist in the long-term?

* Does such a value exist? If so, what is the value? (Enter 0 if no value exists, if it exists, enter to 4 decimal places)
(Don't waste too much time on this one; come back to it later if you get stuck.)

QUESTION 32
Now set the values for the mice back to the way they were at the start le exactly the same.

Seed production by plants is likely to vary over the year, according to the seasons (rainfall, temperature etc). Model this by setting the amount of food produced in a day to be:
1+sin(time/365*pi*2)
When you've done that, run the model over six years and check it is working correctly.
What day of the simulation within the first year is the day of maximum food production?

QUESTION 33
* After things stabilise after colonisation by the new mouse, what happens to the amount of food available over each year?
The amount of food available peaks the mouse population peaks.

before
after

QUESTION 34
From then until the next annual peak it changes its direction (increasing to decreasing or vice versa)____ times, not including the maximum annual peaks.

QUESTION 35

* After things stabilise after colonisation by the new mouse, what happens to the first mouse over each year?
It increases quickly, peaks, then decreases a little, then increases again, peaks again, then decreases... the second peak is than

higher
lower

QUESTION 36
In the long run, over a few hundred years, what happens to the population of the new mouse? Is this a different result than when the food
doesn't vary? Why do you think this is the case?

The population

dies out
persists at a much lower level than the old mouse
persists at a much higher level than the old mouse
persists at a similar level as the old mouse

QUESTION 37

The result ___ diffrent

is
is not

QUESTION 38
Part 2: Population Dynamics and Chaos

Ok, now let's make things really simple again. We are now considering the population density of a kind of fly. Our time step will be a month. The fly is living in an environment where food is supplied at a constant rate. This means that if the population density of the fly is low, then its population will increase. At higher densities, the growth rate slows, and if it gets too high, then it will run out of food, and crash. The higher it is, the lower it will crash.
We can represent this simply with the following equation: nt+1= g nt (1- nt/1000)
which looks like this when r3.
The parameter g represents the maximum growth rate at low densities, and also how hard the population crashes. The height of the top of the peak (750 in this case) is the maximum sustainable population density.
How does the maximum sustainable population density depend on the value of g?
The maximum sustainable population density is equal to

QUESTION 39
Write some R code that simulates how the density of this population will change over 100 months, using a loop. Set the initial population density to 7 and the growth rate to 2. Run the simulation and plot the population density changing over time. You should find that the population increases exponentially at first, then levels out towards an equilibrium population density of 500.
Change the growth rate to 0.2 and run the simulation. What happens now?

The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density increases, reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates. with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 40

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 41
* Change the growth rate to 0.99 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 42

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 43
* Change the growth rate to 1.5 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 44

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 45
* Change the growth rate to 2.9 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 46

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 47
* Change the growth rate to 3 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 48

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 49
* Change the growth rate to 3.1 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 50

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 51
* Change the growth rate to 3.5 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 52

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 53
* Change the growth rate to 3.55 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 54

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 55
* Change the growth rate to 3.6 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 56

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 57
* Change the growth rate to 3.8 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 58

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 59
* Change the growth rate to 4 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 60

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 61
* Change the growth rate at 4 and change the initial population density to 750 and run the simulation. What happens now?
The population
increases smoothly to an equilibrium population density
decreases to an equilibrium density
decreases towards zero
stays constant at its initial density
increases, reaches a maximum, then decreases to an equilibrium population density
increases reaches a maximum, then fluctuates without tending towards an equilibrium
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density very slowly
increases, reaches a maximum, then fluctuates, with fluctuations of decreasing size, tending towards an equilibrium population density relatively quickly

QUESTION 62
Keep the growth rate at 4 and change the initial population density to 750.0000001 and run the simulation. What happens now?

The long-term behaviour is _____

tending towards zero
tending towards a non-zero equilibrium
periodic fluctuations with a period of 2 months
periodic fluctuations with a period of 3 months
periodic fluctuations with a period of 4 months
periodic fluctuations with a period of 8 months
chaotic behaviour, not settling to an equilibrium or periodic fluctuations

QUESTION 63

For many values of g (such as g=4) this system is chaotic, meaning that very small differences in starting conditions quickly become magnified over time (the old butterfly effect). In real systems initial conditions are impossible to measure with perfect accuracy, and the system is subject to external influences that change the system. This means that real chaotic systems are impossible to predict, even if we understand the system very well, know the initial conditions with a high degree of accuracy, and the external influences have very minor effects. Nonetheless, chaotic systems, such as naturally varying populations, can be managed and controlled in clever ways.


* If g=4, there is an initial population density near 350 from which the population will alternate periodically, returning to its initial population every second month. What is this population density (to 3 decimal places of accuracy). You could work this out using algebra or just by
experimenting with different values of density. But since it might take quite a while, you should probably leave it for now and come back to it later if you have time.

QUESTION 64

For Part 3, you only have to answer the last third (ie. from where we add the third species.) But you have to DO the rest to make sure you understand what is going on of course.

Now we add a third species, species Z. This species eats the second one (the old heterotroph, species Y), and has no interaction with the first one (the autotroph, species X). It has the same growth rate of 2% as the other species, and its growth rate slows to zero when the biomass of its food is lkg, just like the old heterotroph. Add lines of code to represent the new species. The growth rate of species Y will also be affected since it is getting eaten now; the modifier x(i)-1 should be changed to x(i)-1-z(i). Set the initial population of all three species to be equal to 2.
Run the simulation, check the new code works and that you understand the output.
What happens?

The first autotroph species X ___ fluctuate

does

does not

QUESTION 65

The first autotroph species X ___ over time

persits
tends towards zero

QUESTION 66
The second species Y ___ fluctuate.

QUESTION 67
The third species z _ over time.

persits
tends towards zero


QUESTION 68
The third species Z ___ fluctuate.

does
does not

QUESTION 69
The third species Z _ over time.

persits
tends towards zero

QUESTION 70
* Plot the population of the autotroph against the population of the old heterotroph and make sure you understand the plot you get. It might help to set the size of the points to represent the biomass of the third species, like this:

plot(x,y,cex=z/max(z))

* Again at the moment the populations are changing continuously, but again there are equilibrium populations that will remain constant. Once again, one boring answer is that all three populations will remain constant if all three are equal to zero. What is a more interesting answer? (Maybe leave for later if you get stuck here.)

The system is in equilibrium when the biomass of X is

QUESTION 71
The biomass of Y is

QUESTION 72
The biomass of Z is

QUESTION 73
Now suppose that the new heterotroph (species Z) doesn't need as much food as our old heterotroph, so its growth rate reaches zero only when the population of species Y is 0.5, instead of 1. Change the relevant number in the model.

Run the simulation, check the new code works and that you understand the output.
What happens?

The first autotroph species X fluctuate.

does
does not


QUESTION 74
The first autotroph species X Over time.
persits
tends towards zero

QUESTION 75
The second species Y fluctuate.

does
does not

QUESTION 76
The second species Y over time.

persits
tends towards zero


QUESTION 77
The third species Z fluctuate

does
does not

QUESTION 78
The third species Z Over time.

persits
tends towards zero

QUESTION 79
* Again at the moment the populations are changing continuously, but again there are equilibrium populations that will remain constant. -trite again, one boring answer is that all three populations will remain constant if all three are equal to zero. What is a more interesting answer? (Maybe leave for later if you get stuck here.) -
The system is in equilibrium when the biomass of X is

QUESTION 80
The biomass of Y is:

QUESTION 81
The biomass of Z is:

QUESTION 82
For Part 4 you need to do the whole thing to understand how it all works, but you only need to answer the very last part...
"Assume we have one of the bio-control examples from above and write a few sentences explaining what is happening in general terms to population densities of the two species over time and space. Try to explain why this behaviour is occurring. How do you think this model might be used to help with the bio-control program?"
Enter your answer in here - it will be marked manually...
Make sure that you explain by using a specific bio-control example, and also that you address each bit of the question clearly.

Attachment:- Scientific Modelling.rar

Reference no: EM132365523

Questions Cloud

Explain denial codes and ways to correct errors : General Appeals Process - Explain denial codes and ways to correct errors. Are there times the claims should be discussed with the provider
Write research paper on key themes in American Studies : Write an original four-to-six-page research paper that focuses on key themes in American Studies. Choose a cultural artifact
Write a console application in the java programming : Take advantage of object-oriented concepts such as composition, inheritance, method overriding, abstract classes, interfaces wherever appropriate.
What is the difference between an RA and an EOB : What is the difference between an RA and an EOB? Describe the purpose of the general appeals process, and identify the basic steps within the process
What is the equilibrium population density : SCIE5500 - Modelling Natural Systems - The University of Western Australia - Introduction to Modelling Population Dynamics
Value sensitive design of complex product systems : Value Sensitive Design (VSD) describes theoretically grounded approaches to design technologies.VSD provides detailed and principled explanation of human value
How does knowledge of the groups shape or bias your view : Students are typically consumers in the school community. To what extent, if at all, is it reasonable to expect students to go beyond being consumers to being.
With what type of objectives reading for meaning work best : A common mistake of many teachers is to start with an activity and then write an objective and assessment to fit the activity. Why is this not considered solid.
How can you approach diversity in development in reading : How can you approach diversity in development in reading, fluency, and comprehension development from a place of compassion and empathy? Provide specific.

Reviews

Write a Review

Other Subject Questions & Answers

  Cross-cultural opportunities and conflicts in canada

Short Paper on Cross-cultural Opportunities and Conflicts in Canada.

  Sociology theory questions

Sociology are very fundamental in nature. Role strain and role constraint speak about the duties and responsibilities of the roles of people in society or in a group. A short theory about Darwin and Moths is also answered.

  A book review on unfaithful angels

This review will help the reader understand the social work profession through different concepts giving the glimpse of why the social work profession might have drifted away from its original purpose of serving the poor.

  Disorder paper: schizophrenia

Schizophrenia does not really have just one single cause. It is a possibility that this disorder could be inherited but not all doctors are sure.

  Individual assignment: two models handout and rubric

Individual Assignment : Two Models Handout and Rubric,    This paper will allow you to understand and evaluate two vastly different organizational models and to effectively communicate their differences.

  Developing strategic intent for toyota

The following report includes the description about the organization, its strategies, industry analysis in which it operates and its position in the industry.

  Gasoline powered passenger vehicles

In this study, we examine how gasoline price volatility and income of the consumers impacts consumer's demand for gasoline.

  An aspect of poverty in canada

Economics thesis undergrad 4th year paper to write. it should be about 22 pages in length, literature review, economic analysis and then data or cost benefit analysis.

  Ngn customer satisfaction qos indicator for 3g services

The paper aims to highlight the global trends in countries and regions where 3G has already been introduced and propose an implementation plan to the telecom operators of developing countries.

  Prepare a power point presentation

Prepare the power point presentation for the case: Santa Fe Independent School District

  Information literacy is important in this environment

Information literacy is critically important in this contemporary environment

  Associative property of multiplication

Write a definition for associative property of multiplication.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd