Examples of solving linear discrete dynamical systems
The solution to a linear discrete dynamical system is an exponential because in each time step, we multiply by a fixed number. It is easy to see what number we multiply in each time step when the dynamical system is in function iteration form. When the dynamical system is given in difference form, we must first transform the dynamical system into function iteration form. These examples illustrate the process.
Example 1
A example of the simplest form is zn+1=0.5znz0=1024.
Solution: By solution, we mean a formula for zn just in terms of the initial condition and the time index n. In each time step, we multiply by 0.5. To go from time step zero to time step n, we must multiply by 0.5 a total of t times. The solution is therefore zn=(0.5)nz0=(0.5)n1024
Example 2
We can make the example slightly more complicated by using a parameter, let's call it R, as the number we must multiply by each time step. We'll also use t rather than n for the time step and let the initial condition be another parameter, let's use d. Choosing p for the state variable, the dynamical system is pt+1=Rptp0=d.
Solution: The system really isn't much harder than the previous. Our solution must be a formula for pt just in terms of the initial condition and the time index t. The solution will also contain the parameters R and d rather than just numbers like the previous example. The main point for the solution is that it can contain the value of the state variable only at the initial time point t=0.
Starting with p0=d at t=0, to get pt, we must multiply by R a total of t times. The solution is pt=Rtd.
Example 3
Let's mix things up a little bit by writing the dynamical system in difference form. Using zn as the state variable and keeping every else in terms of numbers, we'll examine the linear discrete dynamical system zn+1−zn=−0.5znz0=1024.
Solution:In this example, the change in z at each time step is half of the value of z, but with a negative sign. We subtract off half of z at each time step, but it isn't clear how to write a formula that gives the result of subtracting off half z for a total of n times in a row. The reason the answer isn't so obvious is because the dynamical system is written in difference form, with the change is z on the left side of the equation. If we rewrite the dynamical system in function iteration form by solving the evolution rule for zn+1, then it will be clearer how to proceed.
To convert the evolution rule zn+1−zn=−0.5zn to function iteration form, we solve for zn+1 by adding zn to both sides of the equation. zn+1−zn+zn=−0.5zn+znzn+1=0.5zn.
Combining the evolution rule with the initial condition, the dynamical system in function iteration form is zn+1=0.5znz0=1024.
Example 4
Let's try an example in difference form but with parameters. pt+1−pt=rptp0=d.
Solution: The system is given in difference form. To solve the dynamical system, we must rewrite it in function iteration form. We add pt to both sides of the evolution rule. pt+1−pt+pt=rpt+ptpt+1=(r+1)pt.
This example is only slightly different from example 2. In fact, if we wanted to make it look exactly like example 2, we could define a new parameter R by setting R=r+1. If we were to replace r+1 by the symbol R, then the dynamical system would be pt+1=Rptp0=d.
Example 5
Let's continue the moose example of the discrete dynamical system introduction. In that example, a moose population grew by 8% each year, starting with an initial population size of 1000 moose. If we let the state variable mt be the number of moose in a population in year t, then we can write the dynamical system as mt+1−mt=0.08mtm0=1000.
Solution: The dynamical system is written in difference form, as we derived the model thinking about the change in the moose population size. To rewrite it in function iteration form, we add mt to both sides to the evolution rule, obtaining mt+1=1.08mtm0=1000.