3'2 Unconstrained Growth - PowerPoint PPT Presentation

1 / 25
About This Presentation
Title:

3'2 Unconstrained Growth

Description:

E.g., radioactive decay of carbon-14: Unconstrained Decay ... Radium-226 has a continuous decay rate of about 0.0427869% per year. ... – PowerPoint PPT presentation

Number of Views:63
Avg rating:3.0/5.0
Slides: 26
Provided by: Office20041372
Category:

less

Transcript and Presenter's Notes

Title: 3'2 Unconstrained Growth


1
3.2 Unconstrained Growth
2
Malthusian Population Model
  • The power of population is indefinitely greater
    than the power in the earth to produce
    subsistence for man
  • T. Malthus
  • Mathematically

Thomas Malthus (1766 1834)
or
Differential equation
3
Malthusian Population Model
(instantaneous, continuous) growth rate constant
of proportionality
r 0.1 Initial condition P(0) 100
4
Finite Difference Equation
  • In a system-dynamics tool like Vensim (or in a
    computer program), we simulate continuous time
    via small, discrete steps.
  • So instead of using dP/dt for growth, we have
    DP/Dt
  • Then solve for population(t) .

5
Finite Difference Equation
6
Finite Difference Equation
  • In other words
  • new_population old_population
    change_in_population
  • In general, a finite difference equation has the
    form
  • new_value old_value change_in_value
  • Such an equation is an approximation to a
    differential equation (equal in the limit as Dt
    approaches 0)

7
Quick Review Question 1
  • Consider the differential equation dQ/dt
    -0.0004Q, with Q0 200.
  • Using delta notation, give a finite difference
    equation corresponding to the differential
    equation.
  • At time t 9.0 sec, give the time at the
    previous time step, where Dt 0.5 sec.
  • If Q(t-Dt) 199.32 and Q(t) 199.28, give DQ.

8
Quick Review Question 2
  • Evaluate to six decimal places population(.045),
    the population at the next time interval after
    the end of Table 3.2.1.

Table 3.2.1 Table of Estimated Populations,
Where the Initial Population is 100, the
Continuous Growth Rate is 10 per Hour, and the
Time Step is 0.005 hr ____________________________
_______________________________________________ t
population(t) population(t-Dt) (growth)
Dt 0.000 100.000000 0.005 100.050000 100.050
000 10.000000 0.005
  • Lets do it in Excel.

9
Quick Review Question 2
10
Simulation Algorithms Background
  • An algorithm is an explicit step-by-step
    procedure for solving a problem.
  • Basic building blocks are
  • Sequencing (one instruction after another)
  • Conditionals (IF THEN ELSE)
  • Looping (For 100 steps, do the following)
  • Assignment statements use left arrows x ? x 1

Al-Khwarizmi (ca. 780-850)
11
Algorithm 1 Unconstrained Growth
initialize simulationLength initialize
population initialize growthRate initialize
length of time step Dt numIterations ?
simulationLength / Dt for i going from 1 through
numIterations do growth ? growthRate
population population ? population growth
Dt t ? i Dt display t, growth, and population
12
Removing Loop Invariants
  • If we dont need to display growth, we can
    remove the implicit, loop-invariant product
    growthRate Dt used to compute population

for i going from 1 through numIterations
do growth ? growthRate population population
? population growth Dt t ? i Dt display t,
growth, and population
population ? population growthRate Dt
population
13
Removing Loop Invariants
  • Then we save time by computing growthRate Dt
    just once, before the loop

initialize simulationLength initialize
population initialize growthRate initialize
length of time step Dt numIterations ?
simulationLength / Dt growthRatePerStep ?
growthRate Dt for i going from 1 through
numIterations do population ? population
growthRatePerStep population t ? i Dt display
t and population
14
Analytical Solutions
  • Some problems can be solved analytically,
    without simulation
  • For example, calculus tells us that the solution
    to dP/dt 0.10P with initial
    condition P0 100 is P
    100e0.10t
  • If such solutions exist, we should use them.
    But the point of modeling a system is usually
    that no analytical solution exists.

15
Analytical Solution via Indefinite Integrals
  • Separation of variables move dependent variable
    (P(t)) and independent variable (t) to opposite
    sides of equal sign
  • Then integrate both sides

16
Analytical Solution via Indefinite Integrals
  • Solve the integral, using e.g. a free online
    tool like http//integrals.wolfram.com
  • Some tools use log for ln
  • Dont forget to add constant C
  • Solve for P using algebra fact that eln(x) x

17
Completion of Analytical Solution
  • Need constant k in
  • We know P 100 at t 0, so
  • So analytical solution is

18
General Solution to Differential Equation for
Unconstrained Growth
  • In general, the solution to

with initial population P0
is
  • We can observe how e emerges from the limit as
    Dt approaches 0.

19
Deriving e
  • Consider (again) the compound interest example
    how much money from initial principle P0 after t
    years at yearly rate r ?
  • Compounded yearly P P0(1 r)t
  • Compounded monthly P P0(1 r/12)12t
  • Compounded weekly P P0(1 r/52)52t
  • So what is the limit as Dt approaches 0 of
    (1rDt)t/Dt ?
  • We can try this out in Excel.

20
Deriving e
21
Quick Review Question 3
  • Give the solution to the differential equation

where P0 57
22
Unconstrained Decay
  • For some systems r is negative
  • E.g., radioactive decay of carbon-14

23
Unconstrained Decay
half-life (time to decay to half original amount)
24
Quick Review Question 4
  • Radium-226 has a continuous decay rate of about
    0.0427869 per year. Determine its half-life in
    whole years.

25
Quick Review Question 4
  • Radium-226 has a continuous decay rate of about
    0.0427869 per year. Determine its half-life in
    whole years.
  • Answer 1620 years
Write a Comment
User Comments (0)
About PowerShow.com