I have to roughly illustrate the logistic discrete dynamical system (as a model for population growth) to some non mathematics students. I'm not an analyst or an expert of dynamical systems.
Looking things up in the internet, I find the logistic map
$$x_{n+1}=rx_n(1-x_n)$$
with initial condition $x_0\in [0,1]$, and where $r\in[0,4]$ is a parameter (the condition $0\leq r \leq 4$ guarantees that $x_n$ doesn't escape the unit interval $[0,1]$ throughout the evolution of the system). Here $x_n$ represents the ratio between the population at time $n$ and the total population the environment is able to support.
I find also different behaviors according to the value of the parameter $r\in[0,4]$. For example,
- For $0<r\leq 1$ there's extinction of the population.
- For $1<r\leq 3$ the sequence tends to a stable equilibrium $x_\infty:=1-1/r$.
- For $3<r\leq 1+\sqrt{6}$ there's convergence to a period-$2$ cycle.
- For $1+\sqrt{6}<r\leq r^*$ (where $r^*$ is a certain constant) several bifurcations occur with limit a cycle of period that doubles as $r$ traverses that range.
- For $r>r^*$ there's chaotic behavior.
I would expect that a similar span of different behaviors also happens for the logistic differential equation
$$\dot{x}(t)=rx(t)(1-x(t))$$
upon varying the parameter $r$. But on the internet I found no reference to anything like this. On the contrary, many pages care to solve the differential equation explicitely and illustrate the solution, which is the famous logistic function: the S-shaped increasing curve (depending on $r$) with a horizontal asymptote and an inflection point. It seems this solution is obtainable no matter what $r$ is. This looks only like case number 2. of the discrete dynamical system above.
So where are the analogous to cases 1.,3.,4. and 5. where the time is continuous??
Or am I misunderstanding some aspects of how a continuous-time dynamical system gets discretized?
Also,
Which correspondence is there between the $r$ of the discrete version and the $r$ of the continuous version?
Only some elements
A differential equation and it associated discretized problem may have different stability behaviors depending on the way you perform the discretization. See for example Wikipedia - discretization, paragraph Approximations.
Nevertheless, approximating $\dot{x}(t) = rx(t)(1-x(t))$ by $x_{n+1}=r x_n(1-x_n)$ is rather strange. It should be better discretized by $x_{n+1} -x_n =r x_n(1-x_n)$. Because usually $$\dot{x}(t) = \frac{x_{n+1}-x_n}{t_{n+1}-t_n} =x_{n+1}-x_n$$ if you consider equal discretization of the time.