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


Microsoft Announces Edit
27/05/2025

Microsoft has announced Edit, a new open source command-line text editor in Windows. The editor will be available in preview in the Windows Insider Program "in the coming months" before shipping as pa [ ... ]



Robot Combat Between Unitree G1s
01/06/2025

The world's first Humanoid Robot Kickboxing contest took place on May 25 in Hangzhou, China. While the event aimed to highlight the integration of AI and robotics, the robots weren't ac [ ... ]


More News

espbook

 

Comments




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

Banner


What If Babbage..?

What if the computer had been invented in the Victorian era? This isn’t a silly idea. Charles Babbage was born in the eighteenth century - the age of the Industrial Revolution. The calculating machi [ ... ]



The Lost Art Of The Storage Mapping Function

You may not have heard of SMFs, Storage Mapping Functions, but you are likely to have used them. They tend to be overlooked because there are more exciting methods of implementing storage, such as has [ ... ]


Other Articles

 



Last Updated ( Wednesday, 13 April 2022 )