The Programmer's Guide to Chaos
Written by Mike James   
Thursday, 14 May 2020
Article Index
The Programmer's Guide to Chaos
Attractors
Population Dynamics

Population Dynamics

If you think that such iterations are the stuff of pure mathematics then consider this simple model. If you assume that the birth rate and death rate of a population of animals is constant then the result is that the population just grows and grows or declines in the same way.

A more realistic assumption is that the growth rate, g, depends on the population size declining as the population grows and uses up the resources:

 g=k(1-N)

where N is the size of the population scaled into the range 0 to 1. Notice that when N is 0 the population grows at g=k and when N is 1 the growth rate is zero.

If the population at time t is N(t) then at time t+1 it is going to be:

 N(t+1)=N(t)+gN(t)

That is the original population plus the growth in the population.

Using g=k(1-N(t)) we have

 N(t+1)=N(t)+k(1-N(t))N(t)
= N(t)(1+k-N(t))

Finally writing b=1+k we have

 N<- N( b-N)

which is a form of the well known logistic equation which is often assumed to control the growth of a population.

If you don’t find the assumptions realistic then don’t worry there are various modifications that can be made that do make it more realistic. You should however be able to see that the iteration N<-N(b-N) is of the same form as x<-ax(1-x).and indeed it isn’t difficult to show that the population growth equation can be converted into ax(1-x),

(To do so let x=N/b then xb<-xb(b-xb) and x<-bx(1-x))

You might not think that this is very important but consider what it means for a moment.

Population growth can be chaotic!

If you calculate what happens to the population numbers for values of a less than 3 then what you discover is very reasonable behaviour. The population starts out at an initial value and grows exponentially to some limiting stable value.

For values slightly larger than 3 something strange happens. The population eventually settles down to oscillating between two different values. As a increases the population oscillates between increasing numbers of attractors and eventually the whole thing just looks like an unpredictable chaotic process – which of course it is!

pop

For some values of growth the population oscillates but for others it varies in a way that looks random

Notice that while the population size looks like it’s a randomly varying quantity – it isn’t. There is an exact formula that gives you the next population size given the current population size. If you have the formula then the behaviour is predictable to a certain extent but notice that in the real world the behaviour of a real population would very quickly diverge from the prediction as both are equally sensitive to tiny errors in the mechanism.

Also in real life if you were monitoring population size you might well think that it was random. Don’t even think about trying to control the population size – it’s almost impossible to guess what the effect of even a small change is going to be!

If you’re not impressed by the problem of predicting population size consider the stock market. Is it random or chaotic?

The difference could be a lot of money!

If you are interested in exploring a chaotic equation in action see Looking at Chaos.

 chaos2

Related Articles

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

Banner


Can C++ Be As Safe As Rust?
10/04/2024

Herb Sutter is a well known and respected C++ champion and he thinks that the language only needs a few tweaks to make it as safe as Rust. Can this be true?



Udacity's Offer To Recently Unemployed
01/05/2024

Layoffs, across the board from major tech companies to struggling small businesses, are constantly in the news. Today Udacity has announced a special offer to help the recently unemployed professional [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Banner


Binary Arithmetic

Do you know binary? There are only 10 possible answers and even if it's a 1 it's still fun to consider the wider concepts.



Power of Operators

This article  is more or less everything that the working programmer should know about operators and their associated expressions and, of course, the use of parentheses.


Other Articles

<ASIN:1871962439>

<ASIN:B081YS81L7>

 



Last Updated ( Wednesday, 13 April 2022 )