Math 636 - Mathematical Modeling Discrete Modeling 1 Discrete Modeling – Population of the United States U

Total Page:16

File Type:pdf, Size:1020Kb

Math 636 - Mathematical Modeling Discrete Modeling 1 Discrete Modeling – Population of the United States U Discrete Modeling { Population of the United States Discrete Modeling { Population of the United States Variation in Growth Rate Variation in Growth Rate Autonomous Models Autonomous Models Outline Math 636 - Mathematical Modeling Discrete Modeling 1 Discrete Modeling { Population of the United States U. S. Population Malthusian Growth Model Programming Malthusian Growth Joseph M. Mahaffy, 2 Variation in Growth Rate [email protected] General Discrete Dynamical Population Model Linear Growth Rate U. S. Population Model Nonautonomous Malthusian Growth Model Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center 3 Autonomous Models San Diego State University Logistic Growth Model San Diego, CA 92182-7720 Beverton-Holt Model http://jmahaffy.sdsu.edu Analysis of Autonomous Models Fall 2018 Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (1/34) Joseph M. Mahaffy, [email protected] (2/34) Discrete Modeling { Population of the United States Discrete Modeling { Population of the United States Malthusian Growth Model Malthusian Growth Model Variation in Growth Rate Variation in Growth Rate Programming Malthusian Growth Programming Malthusian Growth Autonomous Models Autonomous Models United States Census Census Data Census Data United States Census 1790 3,929,214 1870 39,818,449 1950 150,697,361 Constitution requires census every 10 years 1800 5,308,483 1880 50,189,209 1960 179,323,175 Census used for budgeting federal payments and representation 1810 7,239,881 1890 62,947,714 1970 203,302,031 in Congress 1820 9,638,453 1900 76,212,168 1980 226,545,805 1830 12,866,020 1910 92,228,496 1990 248,709,873 Process can be politically charged 1840 17,069,453 1920 106,021,537 2000 281,421,906 Accurately predicting demographic data are important for 1850 23,191,876 1930 122,775,046 2010 308,745,538 planning communities in the future 1860 31,443,321 1940 132,164,569 Calculations for the future populations uses sophisticated History of the Census Bureau shows that these numbers are collected mathematical models in various ways, including information only from the heads of Models are constantly improved and revised households, the Bureau depending on only 183 clerks for over 30M people, failure to count slaves, and other irregularities such as recent undercounting minorities. Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (3/34) Joseph M. Mahaffy, [email protected] (4/34) Discrete Modeling { Population of the United States Discrete Modeling { Population of the United States Malthusian Growth Model Malthusian Growth Model Variation in Growth Rate Variation in Growth Rate Programming Malthusian Growth Programming Malthusian Growth Autonomous Models Autonomous Models Growth Rate of U. S. Malthusian Growth Model Growth Rate in Early U. S. Malthusian Growth Model The growth rate for the decade of 1790-1800 Simplest growth model uses a constant rate of growth, r Population in 1800 5; 308; 483 = = 1:351 Start with the population in 1790, P0 Population in 1790 3; 292; 214 Population in the next decade is current population plus the The growth rate for the decade of 1800-1810 population times the average growth rate Population in 1810 7; 239; 881 = = 1:364 Pn+1 = Pn + rPn = (1 + r)Pn Population in 1800 5; 308; 483 Sequence of predicted populations based solely on population The growth rate for the decade of 1810-1820 from preceding population Population in 1820 9; 638; 453 = = 1:331 The Malthusian Growth Model is easily solved to give: Population in 1810 7; 239; 881 n Pn = P0(1 + r) : These growth rates are relatively constant, averaging 0.349/decade, and are typical of agrarian societies. Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (5/34) Joseph M. Mahaffy, [email protected] (6/34) Discrete Modeling { Population of the United States Discrete Modeling { Population of the United States Malthusian Growth Model Malthusian Growth Model Variation in Growth Rate Variation in Growth Rate Programming Malthusian Growth Programming Malthusian Growth Autonomous Models Autonomous Models Malthusian Growth Model Malthusian Growth Model Table for U. S. Population (early years), assuming a constant Graph of the Malthusian Growth Model and Census Data for growth rate of 0.349 the U. S. U. S. Population 45 Year Census Model P = 1:349P % Error Malthusian Model n+1 n 40 Census Data 1790 3; 929; 214 3; 929; 214 35 ) 6 30 1800 5; 308; 483 5; 300; 510 −0:15 10 × 1810 7; 239; 881 7; 150; 388 −1:24 25 20 1820 9; 638; 453 9; 645; 873 0:08 15 Population ( 1830 12; 866; 020 13; 012; 282 1:14 10 1840 17; 069; 453 17; 553; 569 2:84 5 0 1790 1800 1810 1820 1830 1840 1850 1860 1870 1850 23; 191; 876 23; 679; 765 2:10 Year 1860 31; 433; 321 31; 944; 002 1:59 Error remains small until 1870, as U. S. is primarily an Agrarian 1870 39; 818; 449 43; 092; 459 8:22 society with a constant growth rate around 35% The Malthusian Growth Model tracks early U. S. population well Civil War dramatically increased the death rate, but more until the Civil war. significantly, society moved into the industrial revolution Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (7/34) Joseph M. Mahaffy, [email protected] (8/34) Discrete Modeling { Population of the United States Discrete Modeling { Population of the United States Malthusian Growth Model Malthusian Growth Model Variation in Growth Rate Variation in Growth Rate Programming Malthusian Growth Programming Malthusian Growth Autonomous Models Autonomous Models Programming Discrete Models Malthusian Growth Model Programming Discrete Models: Discrete dynamical models are one of the easiest models to program: xn+1 = f(xn) 1 clear 2 xlab='Year'; Spreadsheet software 3 ylab='Population($ ntimes 10ˆ6$)'; Excel is designed for discrete dynamical models 4 mytitle='U.S. Population'; The pull-down or updating feature automatically uses the value in 5 pcensus = [3.929 5.308 7.240 9.638 12.866 17.069 ... the cell above to insert into the \updating function" in the new cell 23.192 31.433 39.818]; MatLab or other programming languages 6 tt = [1790]; pmal = [3.929]; Discrete dynamical models are iterated processes, which naturally 7 fori=1:8 program with for loops 8 t= tt(i) + 10; In MatLab if we want to iterate the model above N times creating a 9 mal= pmal(i) + 0.349 *pmal(i); solution vector x from a given function f(x), we write: 10 tt=[tt,t]; 11 pmal=[pmal,mal]; 12 formatSpec='Year is%d, Population is %8.3f ... 1 x=[x0]; M n'; 2 fori = 1:N n 13 fprintf(formatSpec,t,mal) 3 x0=f(x0); 14 end 4 x=[x,x0]; 5 end Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (9/34) Joseph M. Mahaffy, [email protected] (10/34) Discrete Modeling { Population of the United States Discrete Modeling { Population of the United StatesGeneral Discrete Dynamical Population Model Malthusian Growth Model Variation in Growth Rate Variation in Growth Rate Linear Growth Rate U. S. Population Model Programming Malthusian Growth Autonomous Models Autonomous Models Nonautonomous Malthusian Growth Model Malthusian Growth Model Analysis of the Growth Rate Variation in Growth Rate 15 plot(tt,pmal,'r-','LineWidth',1.5); 16 hold on Assume this Malthusian growth model were extended 17 plot(tt,pcensus,'o','MarkerSize',6); In 1920, model predicts 192,365,343 (population in 1960s), 18 grid 19 legend('Malthusian Model','Census ... which is 82% too high Data','Location','Northwest'); In 1970, model predicts 859,382,645, which is 323% too high 20 Growth rate of U. S. has generally decreased over the 21 ax = [1790 1870 0 50]; Census history 22 fontlabs='Times New Roman'; 23 xlabel(xlab,'FontSize',14,'FontName',fontlabs,'interpreter','latex'); Average growth rate over census history is 22.3% 24 ylabel(ylab,'FontSize',14,'FontName',fontlabs,'interpreter','latex'); In 1800, 1900, and 2000, the growth rates were 36.4%, 25 title(mytitle,'FontSize',16,'FontName','Times New ... 21.0%, and 9.71%, showing the general decline Roman','interpreter','latex'); The Great Depression gave lowest growth rate of 7.2% 26 set(gca,'FontSize',12); Obvious time variation in growth rate 27 print-depsc uspopmal.eps Discrete Modeling U. S. Population | Discrete Modeling U. S. Population | Joseph M. Mahaffy, [email protected] (11/34) Joseph M. Mahaffy, [email protected] (12/34) Discrete Modeling { Population of the United StatesGeneral Discrete Dynamical Population Model Discrete Modeling { Population of the United StatesGeneral Discrete Dynamical Population Model Variation in Growth Rate Linear Growth Rate U. S. Population Model Variation in Growth Rate Linear Growth Rate U. S. Population Model Autonomous Models Nonautonomous Malthusian Growth Model Autonomous Models Nonautonomous Malthusian Growth Model Modeling the Growth Rate General Discrete Dynamical Population Model Modeling the Growth Rate General Discrete Dynamical Population Models Malthusian growth model is too simplistic except early population growth with plenty of resources If the population at the next discrete time period depends only on the current population, then given initial population, P , Crowding and limited resources are usually next dominant term 0 in modeling (logistic growth) Pn+1 = f(Pn); Crowding/squalor leads to declining birth rates and increased death rates for some function f(P ) Improved health decreases death rates and significantly This first order difference equation is autonomous drops birth rates(greatest birth rate decline comes from Malthusian growth uses a linear growth with educating women) f(P ) = P + rP , while logistic growth uses a quadratic Clearly, human populations have important contributions from growth with f(P ) = P + rP (1 − P=M) time varying historical, societal, and technological changes Many different nonlinear forms of f(P ) are used with (temporal variation) different interpretations and mathematical behaviors Animal population models usually ignore these time-varying Animal populations often use these models factors (autonomous) Discrete Modeling U.
Recommended publications
  • Ecological Principles and Function of Natural Ecosystems by Professor Michel RICARD
    Intensive Programme on Education for sustainable development in Protected Areas Amfissa, Greece, July 2014 ------------------------------------------------------------------------ Ecological principles and function of natural ecosystems By Professor Michel RICARD Summary 1. Hierarchy of living world 2. What is Ecology 3. The Biosphere - Lithosphere - Hydrosphere - Atmosphere 4. What is an ecosystem - Ecozone - Biome - Ecosystem - Ecological community - Habitat/biotope - Ecotone - Niche 5. Biological classification 6. Ecosystem processes - Radiation: heat, temperature and light - Primary production - Secondary production - Food web and trophic levels - Trophic cascade and ecology flow 7. Population ecology and population dynamics 8. Disturbance and resilience - Human impacts on resilience 9. Nutrient cycle, decomposition and mineralization - Nutrient cycle - Decomposition 10. Ecological amplitude 11. Ecology, environmental influences, biological interactions 12. Biodiversity 13. Environmental degradation - Water resources degradation - Climate change - Nutrient pollution - Eutrophication - Other examples of environmental degradation M. Ricard: Summer courses, Amfissa July 2014 1 1. Hierarchy of living world The larger objective of ecology is to understand the nature of environmental influences on individual organisms, populations, communities and ultimately at the level of the biosphere. If ecologists can achieve an understanding of these relationships, they will be well placed to contribute to the development of systems by which humans
    [Show full text]
  • Modeling Population Dynamics
    Modeling Population Dynamics Gary C. White INTRODUCTION Population modeling is a tool used by wildlife managers. At its simplest, population modeling is a book keeping system to keep track of the four components of population change: births, deaths, immigration, and emigration. In mathematical symbolism, a population model can be expressed as Nt+1 = Nt + Bt - Dt + It - Et . Population size (N) at time t+1 is equal to the population size at time t plus births (B) minus deaths (D) plus immigrants (I) minus emigrants (E). The simplicity of the relationship belies its usefulness. If you were managing a business, you would be interested in knowing how much money was being paid out of the business, relative to how much money was coming in. The net difference represents your “profit”. The same is true for managing a wildlife population. By knowing the net change in the size of the wildlife population from one year to the next, you as a wildlife manager know whether the population is “profitable” (i.e., gaining in size), or headed towards bankruptcy (i.e., becoming smaller). Two examples will demonstrate typical uses of population models in big game management. In November 1995, voters in Colorado passed an amendment to the state’s constitution that outlawed hunting black bears during spring. Wildlife managers were asked if the bear population would increase because of no spring harvest. A population model can be used to answer this question. The second example of the use of a model is to determine which of two management schemes (e.g., no antlerless harvest versus significant antlerless harvest) will result in Modeling Population Dynamics – Draft May 6, 1998 2 the largest buck harvest in a mule deer population.
    [Show full text]
  • Immigration and the Stable Population Model
    IMMIGRATION AND THE STABLE POPULATION MODEL Thomas J. Espenshade The Urban Institute, 2100 M Street, N. W., Washington, D.C. 20037, USA Leon F. Bouvier Population Reference Bureau, 1337 Connecticut Avenue, N. W., Washington, D.C. 20036, USA W. Brian Arthur International Institute for Applied Systems Analysis, A-2361 Laxenburg, Austria RR-82-29 August 1982 Reprinted from Demography, volume 19(1) (1982) INTERNATIONAL INSTITUTE FOR APPLIED SYSTEMS ANALYSIS Laxenburg, Austria Research Reports, which record research conducted at IIASA, are independently reviewed before publication. However, the views and opinions they express are not necessarily those of the Institute or the National Member Organizations that support it. Reprinted with permission from Demography 19(1): 125-133, 1982. Copyright© 1982 Population Association of America. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any information storage or retrieval system, without permission in writing from the copyright holder. iii FOREWORD For some years, IIASA has had a keen interest in problems of population dynamics and migration policy. In this paper, reprinted from Demography, Thomas Espenshade, Leon Bouvier, and Brian Arthur extend the traditional methods of stable population theory to populations with below-replacement fertility and a constant annual quota of in-migrants. They show that such a situation results in a stationary population and examine how its size and ethnic structure depend on both the fertility level and the migration quota. DEMOGRAPHY© Volume 19, Number 1 Februory 1982 IMMIGRATION AND THE STABLE POPULATION MODEL Thomos J.
    [Show full text]
  • A Model for Bio-Economics of Fisheries
    International Journal of Engineering Research & Technology (IJERT) ISSN: 2278-0181 Vol. 2 Issue 2, February- 2013 A Model for Bio-Economics of Fisheries G. Shanmugam 1, K. B. Naidu 2 1Associate Professor, Dept of Mathematics, Jeppiaar Engineering College, Chennai, 2Professor, Department of Mathematics, Sathyabama University, Chennai Abstract. In this paper a model for growth of fish, a model for fishing economics and delay model for fishing are considered. The maximum sustainable yield for fishing is obtained. In the delay model the three cases of equilibrium population being equal to (or) greater then (or) less then the ratio of carrying capacity and rate of growth are considered. 1 Introduction The World population is growing at enormous rate, creating increasing demand for food. Food comes from renewable resources. Agricultural products are renewable resources, since every season new crops are produced in farms. Fisheries are a renewable resource since fish are reproduced in lakes and seas. Forests are renewable resources since they reproduce periodically. As these resources are renewable, the quality of the resources will certainly degrade, leading to shortage. Over fishing will lead to decline in fisheries. Global warming again has an impact on the growth of agriculture, fisheries and forests. It is imperative that we should manage these resources economically to prevent a catastrophic bust in our global economy. Mathematical bio-economics is the mathematical study of the management of renewable bio resources. It takes into consideration not only economic factors like revenue, cost etc., but also the impact of this demand on the resources. IJERTIJERT One of the mathematical tools used in bio economics is differential equations.
    [Show full text]
  • Critical Review of the Literature on Marine Mammal Population Modelling Edward O
    Nova Southeastern University NSUWorks Marine & Environmental Sciences Faculty Reports Department of Marine and Environmental Sciences 9-1-2008 Critical Review of the Literature on Marine Mammal Population Modelling Edward O. Keith Nova Southeastern University Oceanographic Center Find out more information about Nova Southeastern University and the Halmos College of Natural Sciences and Oceanography. Follow this and additional works at: https://nsuworks.nova.edu/occ_facreports Part of the Marine Biology Commons, and the Oceanography and Atmospheric Sciences and Meteorology Commons NSUWorks Citation Edward O. Keith. 2008. Critical Review of the Literature on Marine Mammal Population Modelling .E&P Sound & Marine Life Programme : 1 -63. https://nsuworks.nova.edu/occ_facreports/93. This Report is brought to you for free and open access by the Department of Marine and Environmental Sciences at NSUWorks. It has been accepted for inclusion in Marine & Environmental Sciences Faculty Reports by an authorized administrator of NSUWorks. For more information, please contact [email protected]. Critical Review of the Literature on Marine Mammal Population Modeling Prepared by Nova Southeastern University www.soundandmarinelife.org Revised Final Report Critical Review of the Literature on Marine Mammal Population Modeling (JIP 22-07-19) Edward O. Keith Oceanographic Center Nova Southeastern University 8000 N. Ocean Drive Dania Beach, FL 33004 [email protected] 954-262-8322 (voice) 954-262-4098 1 September 2008 1 Table of Contents A. Executive summary 3 B. Introduction 3 1. Purpose 4 2. Objectives 4 3. Scope 5 C. Types of population models 1. H0 vs. Model Selection/GLMs/GAMs 6 2. Exponential/Logistical 8 3. Multinomial 10 4.
    [Show full text]
  • Diffusive Logistic Population Growth with Immigration
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector Applied Mathematics Letters 18 (2005) 261–265 www.elsevier.com/locate/aml Diffusive logistic population growth with immigration S. Harris∗ College of Engineering and Applied Sciences and Marine Sciences Research Center, SUNY, Stony Brook, NY 11794, United States Received 1 March 2003; accepted 1 March 2003 Abstract We study diffusive logistic growth with immigration for a habitat surrounded by a hostile environment. The focus of our interest is the effect of immigration on the critical habitat length required for survival of the population. As expected, we find that this is reduced when immigration occurs. We also briefly consider the much simpler case where both immigration and emigration take place in an isolated habitat. © 2005 Elsevier Ltd. All rights reserved. Keywords: Diffusive logistic growth; Immigration; Critical length; Emigration 1. Introduction Various approaches have been taken to model the distribution of populations. These differ in several important respects, especially as regards the treatment of the dispersal process. Metapopulation models [1]provide a global description of a complex habitat whose evolution is determined by the colonization (i.e. immigration into) and extinction of its component patches. In contrast, reaction–diffusion models [2–4]provide a local description of individual isolated patches. The fusion of these two approaches would be desirable [5], and our purpose here is to consider one of the specific issues that must be resolved before such an ambitious goal can be reached. Existing results for reaction–diffusion models describing individual patches are almost exclusively limited to describing habitats in which there is no immigration.
    [Show full text]
  • Mathematical Analysis of Population Growth Subject to Environmental Change
    SCIENTIA MANU E T MENTE MATHEMATICAL ANALYSIS OF POPULATION GROWTH SUBJECT TO ENVIRONMENTAL CHANGE A thesis submitted for the degree of Doctor of Philosophy By Hamizah Mohd Safuan M.Sc.(Mathematics) Applied and Industrial Mathematics Research Group, School of Physical, Environmental and Mathematical Sciences, The University of New South Wales, Canberra, Australian Defence Force Academy. November 2014 PLEASE TYPE THE UNIVERSITY OF NEW SOUTH WALES Thesis/Dissertation Sheet Surname or Family name: Mohd Safuan First name: Hamizah Other name/s: - Abbreviation for degree as given in the University calendar: Ph.D (Mathematics) School: Faculty: UNSW Canberra School of Physical, Environmental and Mathematical Sciences Tille: Mathematical analysis of population growth subject lo environmental change Abstract 350 words maximum: (PLEASE TYPE) Many ecosystems are pressured when the environment is perturbed, such as when resources are scarce, or even when they are over-abundant. Changes in the environment impact on its ability lo support a population of a given species. However, most current models do not lake the changing environment into consideration. The standard approach in modelling a population in its environment is lo assume that the carrying capacity, which is a proxy for the state of the environment, is unchanging. In effect, the assumption also posits that the population is negligible compared lo the environment and cannot alter the carrying capacity in any way. Thus, modelling the interplay of the population with its environments is important lo describe varying factors that exist in the system. This objective can be achieved by treating the carrying capacity as lime- and space-dependent variables in the governing equations of the model.
    [Show full text]
  • Simulation of Working Population Exposures to Carbon Monoxide Using EXPOLIS-Milan Microenvironment Concentration and Time-Activity Data
    Journal of Exposure Analysis and Environmental Epidemiology (2004) 14, 154–163 r 2004 Nature Publishing GroupAll rights reserved 1053-4245/04/$25.00 www.nature.com/jea Simulation of working population exposures to carbon monoxide using EXPOLIS-Milan microenvironment concentration and time-activity data YURI BRUINEN DE BRUIN,a,b,c OTTO HA¨ NNINEN,b PAOLO CARRER,a MARCO MARONI,a STYLIANOS KEPHALOPOULOS,c GRETA SCOTTO DI MARCOc AND MATTI JANTUNENb aDepartment of Occupational Health, University of Milan, Via San Barnaba 8, 20122 Milan, Italy bKTL, Department of Environmental Health, P.O. Box 95, FIN-70701, Kuopio, Finland cEC Joint Research Centre, Institute for Health and Consumer Protection, Via E. Fermi, 21020 (VA), Ispra, Italy Current air pollution levels have been shown to affect human health. Probabilistic modeling can be used to assess exposure distributions in selected target populations. Modeling can and should be used to compare exposures in alternative future scenarios to guide society development. Such models, however, must first be validated using existing data for a past situation. This study applied probabilistic modeling to carbon monoxide (CO) exposures using EXPOLIS-Milan data. In the current work, the model performance was evaluated by comparing modeled exposure distributions to observed ones. Model performance was studied in detail in two dimensions; (i) for different averaging times (1, 8 and 24 h) and (ii) using different detail in defining the microenvironments in the model (two, five and 11 microenvironments). (iii) The number of exposure events leading to 8-h guideline exceedance was estimated. Population time activity was modeled using a fractions-of-time approach assuming that some time is spent in each microenvironment used in the model.
    [Show full text]
  • Harvesting in a Resource Dependent Age Structured Leslie Type
    1 Final version Harvesting in a resource dependent age structured Leslie type population model Rui Dilão1, Tiago Domingos1 and Elman M. Shahverdiev1,2 1) Grupo de Dinâmica Não-Linear, Instituto Superior Técnico, Av. Rovisco Pais, 1049- 001 Lisboa, Portugal. 2) Institute of Physics, 33, H. Javid Avenue, 370143 Baku, Azerbaijan. Short Title: Harvesting in a resource dependent model. Corresponding author: Rui Dilão Grupo de Dinâmica Não-Linear, Instituto Superior Técnico Av. Rovisco Pais, 1049-001 Lisbon, Portugal [email protected] Phone (351)218417617; Fax (351)218419123. 2 Abstract We analyse the effect of harvesting in a resource dependent age structured population model, deriving the conditions for the existence of a stable steady state as a function of fertility coefficients, harvesting mortality and carrying capacity of the resources. Under the effect of proportional harvest, we give a sufficient condition for a population to extinguish, and we show that the magnitude of proportional harvest depends on the resources available to the population. We show that the harvesting yield can be periodic, quasi-periodic or chaotic, depending on the dynamics of the harvested population. For populations with large fertility numbers, small harvesting mortality leads to abrupt extinction, but larger harvesting mortality leads to controlled population numbers by avoiding over consumption of resources. Harvesting can be a strategy in order to stabilise periodic or quasi-periodic oscillations in the number of individuals of a population. Key words: harvesting, age structured population models, population extinction. 3 1. Introduction In natural environments and in the laboratory the number of individuals of a population change in time in different ways.
    [Show full text]
  • Smith's Population Model in a Slowly Varying Environment
    Smith’s Population Model in a Slowly Varying Environment Rohit Kumar Supervisor: Associate Professor John Shepherd RMIT University CONTENTS 1. Introduction 2. Smith’s Model 3. Why was Smith’s Model proposed? 4. The Constant Coefficient Case 5. The Multi-Scaling Approach 6. The Multi-Scale Equation and its implicit solution using the Perturbation Approach 7. Smith’s parameter, c , varying slowly with time using Multi- Timing Approximations 8. Comparison of Multi-Timing Approximations with Numerical Solutions 9. Conclusion 1 1. Introduction Examples of the single species population models include the Malthusian model, Verhulst model and the Smith’s model, which will be the main one used in our project (Banks 1994). The Malthusian growth model named after Thomas Malthus illustrates the human population growing exponentially and deals with one positive parameter R , which is the intrinsic growth rate and one variable N (Banks 1994). The Malthusian growth model is defined by the initial-value problem dN RN, N(0) N . (1) dT 0 The Malthusian model (1) generated solutions NT()that were unbounded, which was very unrealistic and did not take into account populations that are limited in growth and hence, the Verhulst model was proposed (Bacaer 2011; Banks 1994). This model suggested that while the human population nurtured and doubled after some time, there comes a stage where it tends to steady state (Bacaer 2011). The Verhulst model is defined by the initial-value problem, dN N RN1 , N(0) N0 . (2) dT K Here, R is the intrinsic growth rate, N is the population size and K is the carrying capacity.
    [Show full text]
  • Mathematical Modeling for Population Projection and Management: a Case Study of Niger State
    IOSR Journal of Mathematics (IOSR-JM) e-ISSN: 2278-5728, p-ISSN: 2319-765X. Volume 13, Issue 5 Ver. III (Sep. - Oct. 2017), PP 51-57 www.iosrjournals.org Mathematical Modeling for Population Projection and Management: A Case Study Of Niger State. Yahaya, Ahmad Abubakar1, Philip Moses Audu2 And Hassan Sheikh Aisha3 Department Of Mathematic, Federal Polytechnic, Bida. Niger State, Nigeria. Abstract: The purpose of this research paper is to develop a mathematical model to predict population figures of Niger state for the period of 20 years using2006 census figures. The data used were collected from National Population commission and were analyzed by using MATLAB Software. The idea behind the projection is to get an estimated figure of the population of Niger state without waiting for census data. The exponential growth model, also known as Malthus Model used in this paper simply shows that for any number of year specified as the proposed year for the growth model, the corresponding value can be obtain which importantly predicts the estimated amount of population. The parameter used for the population, can be used for any given region, which helps to check unwanted population increase or decrease. It can also be exploited to access the success of the method implemented over time. ----------------------------------------------------------------------------------------------------------------------------- ---------- Date of Submission: 21-10-2017 Date of acceptance: 27-10-2017 -------------------------------------------------------------------------------------------------------------------- ------------------- I. Introduction Projection of any country‟s population plays a significant role in the planning as well as in the decision making for the socio-economic and demographic development. The population projection has become one of the most important problems in the world.
    [Show full text]
  • Introduction
    1 Introduction Many of the principles underlying the behavior of the natural world are statements and relations involving rates at which things happen. When they are expressed in mathematical terms the relations are equations and the rates are derivatives. Equations containing derivatives are differential equations. The development of differential equations is linked to the general development of mathematics. The subject of differential equations originated in the study of calculus. The fundamental ideas of the Calculus: the processes of differentiation and integration and the fundamental theorem which relates them were independently developed by Sir Isaac Newton and Gottfried Wilhelm Leibniz in the seventeenth century. In Newton’s case, a primary motivation for the development was to provide a tool for solving problems involving motion and other physical phenomena. In the first uses of differentiation and integration to solve problems, the term differential equations had not yet been formalized. Rather, the investigators used derivatives and differentials without distinction and derived particular equations for particular problems, which they attempted to solve by any method that occurred to them. About the beginning of the eighteenth century, several categories of problems dominated scientific investigations and led to the consideration of differential equations and methods for their solution. This tool since then has being used to describe, understand and predict behavior of many physical processes or system through the construction of mathematical models of the system in diverse areas of study including physics, economics, epidemiology, fluid dynamics, pharmacology, social sciences and ecology , just to mention a few. Ecology is one of the interesting areas that have been studied using mathematical models.
    [Show full text]