Introduction to bifurcations

Size: px
Start display at page:

Download "Introduction to bifurcations"

Transcription

1 Introduction to bifurcations Marc R. Roussel September 6, Introduction Most dynamical systems contain parameters in addition to variables. A general system of ordinary differential equations (ODEs) could therefore be written ẋ = f(x;k), where k is a set of parameters on which the equations, and thus their solutions, depend. If we solve a set of differential equations at different parameter values, we often find that, qualitatively, not much changes. However, in some models, we can find sets of parameter values which are close to each other but where the behavior of the model is in some way qualitatively different for one set or the other. For instance, a stable equilibrium point might have become unstable. We then say that the system has undergone a bifurcation. Bifurcations often change the attractors of a dynamical system. Informally, an attractor is a solution which is approached at long times. Stable equilibrium points are attractors, but they are not the only possibility. In today s lecture, we will engage in some simple numerical discovery exercises in which we will see a few important bifurcations and their consequences. We will be using the dynamical systems software xppaut (xpp for short). Full instructions for using this software will not be given here. You are directed to consult the xpp documentation for details. Andronov-Hopf bifurcations One very important kind of bifurcation is the Andronov-Hopf bifurcation (formerly known in the West as a Hopf bifurcation). In an Andronov-Hopf bifurcation, a stable focus becomes an unstable focus as a parameter is varied, and the attractor becomes a limit cycle. A limit cycle is an asymptotically stable, periodic solution which can be pictured as a closed curve in phase space. Limit cycles differ from conservative oscillations in mechanical systems in that the former have fixed shapes and sizes at given parameter values, while the corresponding quantities in a conservative mechanical oscillator depend on the total energy, i.e. on the initial conditions. There are two qualitatively different kinds of Andronov-Hopf bifurcations, sketched below. In a supercritical Andronov-Hopf bifurcation, the limit cycle grows out of the equilibrium point. In other words, right at the parameters of the Andronov-Hopf bifurcation, the limit cycle

2 has zero amplitude, and this amplitude grows as the parameters move further into the limit-cycle regime. Pictorially, think of it this way: In a subcritical Andronov-Hopf bifurcation, there is an unstable limit cycle surrounding the equilibrium point, and a stable limit cycle surrounding that. The unstable limit cycle shrinks down to the equilibrium point, which becomes unstable in the process. For systems started near the equilibrium point, the result is a sudden change in behavior from approach to a stable focus, to large-amplitude oscillations. Here is the corresponding picture: Because the stable limit cycle exists even when the equilibrium point is stable, if we imagine slowly varying a system parameter back-and-forth across the Andronov-Hopf bifurcation, we wouldn t expect to jump back to the equilibrium point at the same parameter value of the parameter from which this point lost stability. This is called hysteresis, and is associated with bistability, the fact that the system actually has two attractors over a range of parameters. In both cases, Andronov-Hopf bifurcations occur when an equilibrium point changes from being a stable to an unstable focus. We therefore detect Andronov-Hopf bifurcations through linear stability analysis. Example. The Brusselator is a historically important model of an oscillating chemical reaction. The Brusselator is an abstract model which was used to show that chemical systems could oscillate, but it does not describe any particular reaction. As you can guess from the There are additional technical conditions which are required to obtain an Andronov-Hopf bifurcation. However, these conditions are almost always realized in realistic systems of nonlinear ODEs. The interested reader can refer to any standard textbook on nonlinear dynamics for details.

3 foregoing discussion, it undergoes an Andronov-Hopf bifurcation. The model is k A X k B + X Y + D k X + Y X k X E In this model, A and B are assumed to be held constant in some way (buffering, continuous supply, etc.). D and E are assumed not to participate in any further reactions so that their concentrations are irrelevant. Accordingly, X and Y are the only variables. If we scale the variables and parameters by we get the dimensionless equations x = X k /k, a = A(k /k ) k /k, y = Y k /k, b = k B/k, τ = k t, ẋ = a bx + x y x, ẏ = bx x y. The equilibrium point is (x,y ) = (a,b/a). The characteristic equation for this equilibrium point is λ + λ(a + b) + a =. The eigenvalues are therefore λ ± = { } b a ± (b a ) a. It shouldn t be too difficult to convince yourself that the following are all possibilities:. a stable node. an unstable node. a stable focus. an unstable focus We concentrate first on the last two cases. We get a focus if the quantity under the square root is negative. The real parts of our two eigenvalues are then R(λ ± ) = (b a ).

4 An Andronov-Hopf bifurcation will occur when the real part of the eigenvalue changes sign, i.e. when it passes through zero. In this case, we expect to see the bifurcation when b = b AH = a +. For b < b AH, the equilibrium point is a stable focus, while it is an unstable focus for b > b AH. Is our bifurcation supercritical or subcritical? This kind of question can be answered by a simple numerical experiment. Here is the xpp input file for the Brusselator: # Brusselator ode file # Differential equations: x = a - b*x + xˆ*y - x y = b*x - xˆ*y # Initial conditions x() =.9 y() =.9 # Default values of the parameters: param a=, b= # Reserve lots of storage space # in case we want to get a long MAXSTOR= done Figure shows the behavior for b < b AH. As expected, we get a stable focus. If we pick a value of b just a bit above b AH, we get a small limit cycle which grows as we increase b (Fig. ). Another way to see this more clearly is to plot just the limit cycle, i.e. start plotting the trajectory only after a long time has elapsed so that the transient approach to the limit cycle is eliminated. Figure is an example of this procedure which shows clearly that the limit cycle grows as we move away from the bifurcation. Based on this behavior, we can conclude that the Andronov-Hopf bifurcation is supercritical. Because trajectories can t cross, planar systems can only have equilibria and limit cycles as attractors. To see more interesting behavior, we need to go to three dimensions. Dynamics in three dimensions In this section, we will study some of the possible behaviors of systems in three dimensions. We will again proceed by example.

5 y b= x Figure : A trajectory in the phase plane for the Brusselator with a =, b =.9. y y b=.. b= x x Figure : Trajectories for two values of b just above the Andronov-Hopf bifurcation with a =.

6 y.. b=..8 b=..6 b= x Figure : Brusselator limit cycles obtained for a =. Example. The autocatalator is another abstract chemical reaction model: k P A k c P + C A + C k u A B k A + B B k B C k C D The concentrations of A, B and C are the only variables in this model, the other concentrations being either fixed or irrelevant. With the transformations a = A k k u /k, µ = k cp/k, b = B k /k, κ = k k /(k k c ) k /k u, c = C k k /(k uk ), δ = k u/k, τ = k u t, σ = k u /k, 6

7 the rate equations become ȧ = µ(κ + c) ab a, ḃ = σ ( ab + a b ), ċ = (b c). δ The xpp input file for this model is as follows: # Autocatalator.ode a = mu*(kappa+c) - a*bˆ - a b = (a*bˆ + a - b)/sigma c = (b-c)/delta param mu=., kappa=6, delta=e-, sigma=e- # The variables range over several orders of magnitude, so # it s convenient to plot, and log(c) aux la = aux lb = aux lc = log(c) # In order to avoid problems with the logs, # start from a point other than (,,). a() = b() = c() = # This system is stiff, so we need # an appropriate METHOD=stiff # The time scale of the oscillations is really fast, # and the spikes are really sharp and high, so we need # to adjust both the integration step size and # the maximum variable value DT=e-, MAXSTOR= done This system has a supercritical Andronov-Hopf bifurcation, as shown in Figs. and. We can confirm the Andronov-Hopf bifurcation by having xpp compute the eigenvalues. At µ =., xpp reports Eigenvalues: i i i. 7

8 .8 µ= Figure : Stable focus in the autocatalator for µ =., κ = 6, δ =. and σ = µ= µ= Figure : Autocatalator limit cycles. All parameters are as in Fig., except for µ, as noted in the figure. 8

9 µ= Figure 6: Period doubling in the autocatalator. All parameters are as in Fig., except µ =.. while at µ =., we get Eigenvalues:.76 + i i i. The real parts of the complex eigenvalues have changed sign, indicating an Andronov-Hopf bifurcation. We determine that the bifurcation is supercritical by examining how the system behaves near the bifurcation. In this case, a very small limit cycle is born at the bifurcation. This limit cycle grows as we continue to increase µ (Fig. ). If we continue to increase µ, the limit cycle doubles up (Fig. 6). We say that the system has undergone a period-doubling bifurcation, so called because the period the time it takes for the trajectory to repeat itself roughly doubles as we pass through this bifurcation since we now have to go around the loop twice before coming back to the same point. Note also that the trajectory appears to cross itself. This is an artifact of the two-dimensional projection of a three-dimensional system, but it does show why period-doubling bifurcations can t happen in two dimensions. If we increase µ further, the limit cycle undergoes additional period-doubling bifurcations (Fig. 7). Period doublings can and often do continue ad infinitum. Note that the values of µ at which the bifurcations occur get closer and closer. It therefore becomes difficult to find parameter values at which the higher periods appear, although they should be there. If you think about the logical end result of period doubling, it should be an attractor with an infinite period, i.e. one which doesn t actually repeat itself. There are different ways 9

10 µ=. µ= Figure 7: Additional period doublings in the autocatalator. All parameters are as in Fig., except for µ which has the indicated values. in which we can draw curves in three-dimensional space which don t repeat themselves, but period doubling leads to a very particular type of curve known as a strange attractor. Strange attractors have a number of, well, strange geometric properties, chief among which is that they are fractal, i.e. they have properties which are consistent with a fractional spatial dimension. In other words, they are neither curves nor surfaces nor volumes, but something in between. In any event, we observe a strange attractor in our model at µ =. (Fig. 8). From our perspective, the most important property of systems with strange attractors is that they are usually chaotic. Chaotic systems are mainly characterized by their sensitive dependence on initial conditions. This means that, if you start two systems off with similar (but not identical) initial conditions, they will tend to drift apart. After a little while, they won t be doing the same thing at all. Figure 9 demonstrates this effect. In both cases shown, two trajectories were started from the initial points (., 7,.) and (., 7,.), which is near the attractor. In the limit-cycle regime, even when the limit cycle is complicated, these two systems just chase each other around the limit cycle, maintaining, on average, a constant distance. On the other hand, chaos causes the two systems to rapidly lose synchrony.

11 µ= Figure 8: Strange attractor of the autocatalator. All parameters are as in Fig., except µ =.. - µ=. µ=. t - t Figure 9: Illustration of sensitive dependence on initial conditions. The graph on the left shows the log b vs t time series for two systems started near the period-8 attractor shown in Fig. 7, while that on the right shows the same thing for the chaotic attractor shown in Fig. 8. Note the rapid desynchronization in the latter case.

Maps and differential equations

Maps and differential equations Maps and differential equations Marc R. Roussel November 8, 2005 Maps are algebraic rules for computing the next state of dynamical systems in discrete time. Differential equations and maps have a number

More information

Mathematical Foundations of Neuroscience - Lecture 7. Bifurcations II.

Mathematical Foundations of Neuroscience - Lecture 7. Bifurcations II. Mathematical Foundations of Neuroscience - Lecture 7. Bifurcations II. Filip Piękniewski Faculty of Mathematics and Computer Science, Nicolaus Copernicus University, Toruń, Poland Winter 2009/2010 Filip

More information

Problem Set Number 2, j/2.036j MIT (Fall 2014)

Problem Set Number 2, j/2.036j MIT (Fall 2014) Problem Set Number 2, 18.385j/2.036j MIT (Fall 2014) Rodolfo R. Rosales (MIT, Math. Dept.,Cambridge, MA 02139) Due Mon., September 29, 2014. 1 Inverse function problem #01. Statement: Inverse function

More information

Stability Analysis for ODEs

Stability Analysis for ODEs Stability Analysis for ODEs Marc R Roussel September 13, 2005 1 Linear stability analysis Equilibria are not always stable Since stable and unstable equilibria play quite different roles in the dynamics

More information

Example of a Blue Sky Catastrophe

Example of a Blue Sky Catastrophe PUB:[SXG.TEMP]TRANS2913EL.PS 16-OCT-2001 11:08:53.21 SXG Page: 99 (1) Amer. Math. Soc. Transl. (2) Vol. 200, 2000 Example of a Blue Sky Catastrophe Nikolaĭ Gavrilov and Andrey Shilnikov To the memory of

More information

(8.51) ẋ = A(λ)x + F(x, λ), where λ lr, the matrix A(λ) and function F(x, λ) are C k -functions with k 1,

(8.51) ẋ = A(λ)x + F(x, λ), where λ lr, the matrix A(λ) and function F(x, λ) are C k -functions with k 1, 2.8.7. Poincaré-Andronov-Hopf Bifurcation. In the previous section, we have given a rather detailed method for determining the periodic orbits of a two dimensional system which is the perturbation of a

More information

Chaos. Lendert Gelens. KU Leuven - Vrije Universiteit Brussel Nonlinear dynamics course - VUB

Chaos. Lendert Gelens. KU Leuven - Vrije Universiteit Brussel   Nonlinear dynamics course - VUB Chaos Lendert Gelens KU Leuven - Vrije Universiteit Brussel www.gelenslab.org Nonlinear dynamics course - VUB Examples of chaotic systems: the double pendulum? θ 1 θ θ 2 Examples of chaotic systems: the

More information

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD CHALMERS, GÖTEBORGS UNIVERSITET EXAM for DYNAMICAL SYSTEMS COURSE CODES: TIF 155, FIM770GU, PhD Time: Place: Teachers: Allowed material: Not allowed: January 14, 2019, at 08 30 12 30 Johanneberg Kristian

More information

TWO DIMENSIONAL FLOWS. Lecture 5: Limit Cycles and Bifurcations

TWO DIMENSIONAL FLOWS. Lecture 5: Limit Cycles and Bifurcations TWO DIMENSIONAL FLOWS Lecture 5: Limit Cycles and Bifurcations 5. Limit cycles A limit cycle is an isolated closed trajectory [ isolated means that neighbouring trajectories are not closed] Fig. 5.1.1

More information

LECTURE 8: DYNAMICAL SYSTEMS 7

LECTURE 8: DYNAMICAL SYSTEMS 7 15-382 COLLECTIVE INTELLIGENCE S18 LECTURE 8: DYNAMICAL SYSTEMS 7 INSTRUCTOR: GIANNI A. DI CARO GEOMETRIES IN THE PHASE SPACE Damped pendulum One cp in the region between two separatrix Separatrix Basin

More information

7 Two-dimensional bifurcations

7 Two-dimensional bifurcations 7 Two-dimensional bifurcations As in one-dimensional systems: fixed points may be created, destroyed, or change stability as parameters are varied (change of topological equivalence ). In addition closed

More information

THREE DIMENSIONAL SYSTEMS. Lecture 6: The Lorenz Equations

THREE DIMENSIONAL SYSTEMS. Lecture 6: The Lorenz Equations THREE DIMENSIONAL SYSTEMS Lecture 6: The Lorenz Equations 6. The Lorenz (1963) Equations The Lorenz equations were originally derived by Saltzman (1962) as a minimalist model of thermal convection in a

More information

Dynamical Systems and Chaos Part I: Theoretical Techniques. Lecture 4: Discrete systems + Chaos. Ilya Potapov Mathematics Department, TUT Room TD325

Dynamical Systems and Chaos Part I: Theoretical Techniques. Lecture 4: Discrete systems + Chaos. Ilya Potapov Mathematics Department, TUT Room TD325 Dynamical Systems and Chaos Part I: Theoretical Techniques Lecture 4: Discrete systems + Chaos Ilya Potapov Mathematics Department, TUT Room TD325 Discrete maps x n+1 = f(x n ) Discrete time steps. x 0

More information

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad

Fundamentals of Dynamical Systems / Discrete-Time Models. Dr. Dylan McNamara people.uncw.edu/ mcnamarad Fundamentals of Dynamical Systems / Discrete-Time Models Dr. Dylan McNamara people.uncw.edu/ mcnamarad Dynamical systems theory Considers how systems autonomously change along time Ranges from Newtonian

More information

A plane autonomous system is a pair of simultaneous first-order differential equations,

A plane autonomous system is a pair of simultaneous first-order differential equations, Chapter 11 Phase-Plane Techniques 11.1 Plane Autonomous Systems A plane autonomous system is a pair of simultaneous first-order differential equations, ẋ = f(x, y), ẏ = g(x, y). This system has an equilibrium

More information

Computational Neuroscience. Session 4-2

Computational Neuroscience. Session 4-2 Computational Neuroscience. Session 4-2 Dr. Marco A Roque Sol 06/21/2018 Two-Dimensional Two-Dimensional System In this section we will introduce methods of phase plane analysis of two-dimensional systems.

More information

Chaos in the Hénon-Heiles system

Chaos in the Hénon-Heiles system Chaos in the Hénon-Heiles system University of Karlstad Christian Emanuelsson Analytical Mechanics FYGC04 Abstract This paper briefly describes how the Hénon-Helies system exhibits chaos. First some subjects

More information

Invariant manifolds. Marc R. Roussel. October 4, 2005

Invariant manifolds. Marc R. Roussel. October 4, 2005 Invariant manifolds Marc R. Roussel October 4, 2005 1 Introduction In our earlier discussion of stability analysis, we emphasized the significance of the eigenvalues of the Jacobian matrix. What of the

More information

Resonance and response

Resonance and response Chapter 2 Resonance and response Last updated September 20, 2008 In this section of the course we begin with a very simple system a mass hanging from a spring and see how some remarkable ideas emerge.

More information

MATH 415, WEEK 11: Bifurcations in Multiple Dimensions, Hopf Bifurcation

MATH 415, WEEK 11: Bifurcations in Multiple Dimensions, Hopf Bifurcation MATH 415, WEEK 11: Bifurcations in Multiple Dimensions, Hopf Bifurcation 1 Bifurcations in Multiple Dimensions When we were considering one-dimensional systems, we saw that subtle changes in parameter

More information

The Hopf Bifurcation Theorem: Abstract. Introduction. Transversality condition; the eigenvalues cross the imginary axis with non-zero speed

The Hopf Bifurcation Theorem: Abstract. Introduction. Transversality condition; the eigenvalues cross the imginary axis with non-zero speed Supercritical and Subcritical Hopf Bifurcations in Non Linear Maps Tarini Kumar Dutta, Department of Mathematics, Gauhati Universit Pramila Kumari Prajapati, Department of Mathematics, Gauhati Universit

More information

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD CHALMERS, GÖTEBORGS UNIVERSITET EXAM for DYNAMICAL SYSTEMS COURSE CODES: TIF 155, FIM770GU, PhD Time: Place: Teachers: Allowed material: Not allowed: August 22, 2018, at 08 30 12 30 Johanneberg Jan Meibohm,

More information

Basic Theory of Dynamical Systems

Basic Theory of Dynamical Systems 1 Basic Theory of Dynamical Systems Page 1 1.1 Introduction and Basic Examples Dynamical systems is concerned with both quantitative and qualitative properties of evolution equations, which are often ordinary

More information

Chaos and Liapunov exponents

Chaos and Liapunov exponents PHYS347 INTRODUCTION TO NONLINEAR PHYSICS - 2/22 Chaos and Liapunov exponents Definition of chaos In the lectures we followed Strogatz and defined chaos as aperiodic long-term behaviour in a deterministic

More information

A Novel Three Dimension Autonomous Chaotic System with a Quadratic Exponential Nonlinear Term

A Novel Three Dimension Autonomous Chaotic System with a Quadratic Exponential Nonlinear Term ETASR - Engineering, Technology & Applied Science Research Vol., o.,, 9-5 9 A Novel Three Dimension Autonomous Chaotic System with a Quadratic Exponential Nonlinear Term Fei Yu College of Information Science

More information

Lesson 4: Non-fading Memory Nonlinearities

Lesson 4: Non-fading Memory Nonlinearities Lesson 4: Non-fading Memory Nonlinearities Nonlinear Signal Processing SS 2017 Christian Knoll Signal Processing and Speech Communication Laboratory Graz University of Technology June 22, 2017 NLSP SS

More information

Introduction to Dynamical Systems Basic Concepts of Dynamics

Introduction to Dynamical Systems Basic Concepts of Dynamics Introduction to Dynamical Systems Basic Concepts of Dynamics A dynamical system: Has a notion of state, which contains all the information upon which the dynamical system acts. A simple set of deterministic

More information

Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change. Khatiwala, et.al.

Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change. Khatiwala, et.al. Enhanced sensitivity of persistent events to weak forcing in dynamical and stochastic systems: Implications for climate change Questions What are the characteristics of the unforced Lorenz system? What

More information

Simplest Chaotic Flows with Involutional Symmetries

Simplest Chaotic Flows with Involutional Symmetries International Journal of Bifurcation and Chaos, Vol. 24, No. 1 (2014) 1450009 (9 pages) c World Scientific Publishing Company DOI: 10.1142/S0218127414500096 Simplest Chaotic Flows with Involutional Symmetries

More information

= F ( x; µ) (1) where x is a 2-dimensional vector, µ is a parameter, and F :

= F ( x; µ) (1) where x is a 2-dimensional vector, µ is a parameter, and F : 1 Bifurcations Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 A bifurcation is a qualitative change

More information

Math 2930 Worksheet Equilibria and Stability

Math 2930 Worksheet Equilibria and Stability Math 2930 Worksheet Equilibria and Stabilit Week 3 September 7, 2017 Question 1. (a) Let C be the temperature (in Fahrenheit) of a cup of coffee that is cooling off to room temperature. Which of the following

More information

Project 1 Modeling of Epidemics

Project 1 Modeling of Epidemics 532 Chapter 7 Nonlinear Differential Equations and tability ection 7.5 Nonlinear systems, unlike linear systems, sometimes have periodic solutions, or limit cycles, that attract other nearby solutions.

More information

Dynamical Systems in Neuroscience: Elementary Bifurcations

Dynamical Systems in Neuroscience: Elementary Bifurcations Dynamical Systems in Neuroscience: Elementary Bifurcations Foris Kuang May 2017 1 Contents 1 Introduction 3 2 Definitions 3 3 Hodgkin-Huxley Model 3 4 Morris-Lecar Model 4 5 Stability 5 5.1 Linear ODE..............................................

More information

Lab 5: Nonlinear Systems

Lab 5: Nonlinear Systems Lab 5: Nonlinear Systems Goals In this lab you will use the pplane6 program to study two nonlinear systems by direct numerical simulation. The first model, from population biology, displays interesting

More information

B5.6 Nonlinear Systems

B5.6 Nonlinear Systems B5.6 Nonlinear Systems 5. Global Bifurcations, Homoclinic chaos, Melnikov s method Alain Goriely 2018 Mathematical Institute, University of Oxford Table of contents 1. Motivation 1.1 The problem 1.2 A

More information

Edward Lorenz. Professor of Meteorology at the Massachusetts Institute of Technology

Edward Lorenz. Professor of Meteorology at the Massachusetts Institute of Technology The Lorenz system Edward Lorenz Professor of Meteorology at the Massachusetts Institute of Technology In 1963 derived a three dimensional system in efforts to model long range predictions for the weather

More information

2 Discrete Dynamical Systems (DDS)

2 Discrete Dynamical Systems (DDS) 2 Discrete Dynamical Systems (DDS) 2.1 Basics A Discrete Dynamical System (DDS) models the change (or dynamics) of single or multiple populations or quantities in which the change occurs deterministically

More information

Dynamical Systems. 1.0 Ordinary Differential Equations. 2.0 Dynamical Systems

Dynamical Systems. 1.0 Ordinary Differential Equations. 2.0 Dynamical Systems . Ordinary Differential Equations. An ordinary differential equation (ODE, for short) is an equation involves a dependent variable and its derivatives with respect to an independent variable. When we speak

More information

Clearly the passage of an eigenvalue through to the positive real half plane leads to a qualitative change in the phase portrait, i.e.

Clearly the passage of an eigenvalue through to the positive real half plane leads to a qualitative change in the phase portrait, i.e. Bifurcations We have already seen how the loss of stiffness in a linear oscillator leads to instability. In a practical situation the stiffness may not degrade in a linear fashion, and instability may

More information

The dynamics of the Forced Damped Pendulum. John Hubbard Cornell University and Université de Provence

The dynamics of the Forced Damped Pendulum. John Hubbard Cornell University and Université de Provence The dynamics of the Forced Damped Pendulum John Hubbard Cornell University and Université de Provence Three ways to view the pendulum Three ways to view the pendulum 1. As a physical object Three ways

More information

APPPHYS217 Tuesday 25 May 2010

APPPHYS217 Tuesday 25 May 2010 APPPHYS7 Tuesday 5 May Our aim today is to take a brief tour of some topics in nonlinear dynamics. Some good references include: [Perko] Lawrence Perko Differential Equations and Dynamical Systems (Springer-Verlag

More information

Regression I - the least squares line

Regression I - the least squares line Regression I - the least squares line The difference between correlation and regression. Correlation describes the relationship between two variables, where neither variable is independent or used to predict.

More information

2 Discrete growth models, logistic map (Murray, Chapter 2)

2 Discrete growth models, logistic map (Murray, Chapter 2) 2 Discrete growth models, logistic map (Murray, Chapter 2) As argued in Lecture 1 the population of non-overlapping generations can be modelled as a discrete dynamical system. This is an example of an

More information

One Dimensional Dynamical Systems

One Dimensional Dynamical Systems 16 CHAPTER 2 One Dimensional Dynamical Systems We begin by analyzing some dynamical systems with one-dimensional phase spaces, and in particular their bifurcations. All equations in this Chapter are scalar

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 017/018 DR. ANTHONY BROWN. Lines and Their Equations.1. Slope of a Line and its y-intercept. In Euclidean geometry (where

More information

2.1 Definition. Let n be a positive integer. An n-dimensional vector is an ordered list of n real numbers.

2.1 Definition. Let n be a positive integer. An n-dimensional vector is an ordered list of n real numbers. 2 VECTORS, POINTS, and LINEAR ALGEBRA. At first glance, vectors seem to be very simple. It is easy enough to draw vector arrows, and the operations (vector addition, dot product, etc.) are also easy to

More information

6.2 Brief review of fundamental concepts about chaotic systems

6.2 Brief review of fundamental concepts about chaotic systems 6.2 Brief review of fundamental concepts about chaotic systems Lorenz (1963) introduced a 3-variable model that is a prototypical example of chaos theory. These equations were derived as a simplification

More information

Period Doubling Cascade in Diffusion Flames

Period Doubling Cascade in Diffusion Flames Period Doubling Cascade in Diffusion Flames Milan Miklavčič Department of Mathematics, Michigan State University, East Lansing, MI 48824, USA Combustion Theory and Modelling 11 No 1 (2007), 103-112 Abstract

More information

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

More information

DYNAMICAL SYSTEMS

DYNAMICAL SYSTEMS 0.42 DYNAMICAL SYSTEMS Week Lecture Notes. What is a dynamical system? Probably the best way to begin this discussion is with arguably a most general and yet least helpful statement: Definition. A dynamical

More information

Handout 2: Invariant Sets and Stability

Handout 2: Invariant Sets and Stability Engineering Tripos Part IIB Nonlinear Systems and Control Module 4F2 1 Invariant Sets Handout 2: Invariant Sets and Stability Consider again the autonomous dynamical system ẋ = f(x), x() = x (1) with state

More information

16 Period doubling route to chaos

16 Period doubling route to chaos 16 Period doubling route to chaos We now study the routes or scenarios towards chaos. We ask: How does the transition from periodic to strange attractor occur? The question is analogous to the study of

More information

More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n.

More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n. More Details Fixed point of mapping is point that maps into itself, i.e., x n+1 = x n. If there are points which, after many iterations of map then fixed point called an attractor. fixed point, If λ

More information

Homework 2 Modeling complex systems, Stability analysis, Discrete-time dynamical systems, Deterministic chaos

Homework 2 Modeling complex systems, Stability analysis, Discrete-time dynamical systems, Deterministic chaos Homework 2 Modeling complex systems, Stability analysis, Discrete-time dynamical systems, Deterministic chaos (Max useful score: 100 - Available points: 125) 15-382: Collective Intelligence (Spring 2018)

More information

UNIVERSITY of LIMERICK

UNIVERSITY of LIMERICK UNIVERSITY of LIMERICK OLLSCOIL LUIMNIGH Faculty of Science and Engineering Department of Mathematics & Statistics END OF SEMESTER ASSESSMENT PAPER MODULE CODE: MS08 SEMESTER: Spring 0 MODULE TITLE: Dynamical

More information

... it may happen that small differences in the initial conditions produce very great ones in the final phenomena. Henri Poincaré

... it may happen that small differences in the initial conditions produce very great ones in the final phenomena. Henri Poincaré Chapter 2 Dynamical Systems... it may happen that small differences in the initial conditions produce very great ones in the final phenomena. Henri Poincaré One of the exciting new fields to arise out

More information

Models Involving Interactions between Predator and Prey Populations

Models Involving Interactions between Predator and Prey Populations Models Involving Interactions between Predator and Prey Populations Matthew Mitchell Georgia College and State University December 30, 2015 Abstract Predator-prey models are used to show the intricate

More information

Some Dynamical Behaviors In Lorenz Model

Some Dynamical Behaviors In Lorenz Model International Journal Of Computational Engineering Research (ijceronline.com) Vol. Issue. 7 Some Dynamical Behaviors In Lorenz Model Dr. Nabajyoti Das Assistant Professor, Department of Mathematics, Jawaharlal

More information

4. Complex Oscillations

4. Complex Oscillations 4. Complex Oscillations The most common use of complex numbers in physics is for analyzing oscillations and waves. We will illustrate this with a simple but crucially important model, the damped harmonic

More information

MULTISTABILITY IN A BUTTERFLY FLOW

MULTISTABILITY IN A BUTTERFLY FLOW International Journal of Bifurcation and Chaos, Vol. 23, No. 12 (2013) 1350199 (10 pages) c World Scientific Publishing Company DOI: 10.1142/S021812741350199X MULTISTABILITY IN A BUTTERFLY FLOW CHUNBIAO

More information

Additive resonances of a controlled van der Pol-Duffing oscillator

Additive resonances of a controlled van der Pol-Duffing oscillator Additive resonances of a controlled van der Pol-Duffing oscillator This paper has been published in Journal of Sound and Vibration vol. 5 issue - 8 pp.-. J.C. Ji N. Zhang Faculty of Engineering University

More information

Analysis of Bifurcations in a Power System Model with Excitation Limits

Analysis of Bifurcations in a Power System Model with Excitation Limits Analysis of Bifurcations in a Power System Model with Excitation Limits Rajesh G. Kavasseri and K. R. Padiyar Department of Electrical Engineering Indian Institute of Science, Bangalore, India Abstract

More information

PH 120 Project # 2: Pendulum and chaos

PH 120 Project # 2: Pendulum and chaos PH 120 Project # 2: Pendulum and chaos Due: Friday, January 16, 2004 In PH109, you studied a simple pendulum, which is an effectively massless rod of length l that is fixed at one end with a small mass

More information

Neural Excitability in a Subcritical Hopf Oscillator with a Nonlinear Feedback

Neural Excitability in a Subcritical Hopf Oscillator with a Nonlinear Feedback Neural Excitability in a Subcritical Hopf Oscillator with a Nonlinear Feedback Gautam C Sethia and Abhijit Sen Institute for Plasma Research, Bhat, Gandhinagar 382 428, INDIA Motivation Neural Excitability

More information

Chaotic motion. Phys 750 Lecture 9

Chaotic motion. Phys 750 Lecture 9 Chaotic motion Phys 750 Lecture 9 Finite-difference equations Finite difference equation approximates a differential equation as an iterative map (x n+1,v n+1 )=M[(x n,v n )] Evolution from time t =0to

More information

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table.

MA 1125 Lecture 15 - The Standard Normal Distribution. Friday, October 6, Objectives: Introduce the standard normal distribution and table. MA 1125 Lecture 15 - The Standard Normal Distribution Friday, October 6, 2017. Objectives: Introduce the standard normal distribution and table. 1. The Standard Normal Distribution We ve been looking at

More information

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD

CHALMERS, GÖTEBORGS UNIVERSITET. EXAM for DYNAMICAL SYSTEMS. COURSE CODES: TIF 155, FIM770GU, PhD CHALMERS, GÖTEBORGS UNIVERSITET EXAM for DYNAMICAL SYSTEMS COURSE CODES: TIF 155, FIM770GU, PhD Time: Place: Teachers: Allowed material: Not allowed: April 06, 2018, at 14 00 18 00 Johanneberg Kristian

More information

Introduction to Nonlinear Dynamics and Chaos

Introduction to Nonlinear Dynamics and Chaos Introduction to Nonlinear Dynamics and Chaos Sean Carney Department of Mathematics University of Texas at Austin Sean Carney (University of Texas at Austin) Introduction to Nonlinear Dynamics and Chaos

More information

Table of contents. d 2 y dx 2, As the equation is linear, these quantities can only be involved in the following manner:

Table of contents. d 2 y dx 2, As the equation is linear, these quantities can only be involved in the following manner: M ath 0 1 E S 1 W inter 0 1 0 Last Updated: January, 01 0 Solving Second Order Linear ODEs Disclaimer: This lecture note tries to provide an alternative approach to the material in Sections 4. 4. 7 and

More information

The Big, Big Picture (Bifurcations II)

The Big, Big Picture (Bifurcations II) The Big, Big Picture (Bifurcations II) Reading for this lecture: NDAC, Chapter 8 and Sec. 10.0-10.4. 1 Beyond fixed points: Bifurcation: Qualitative change in behavior as a control parameter is (slowly)

More information

Topic 2: The mathematical formalism and the standard way of thin

Topic 2: The mathematical formalism and the standard way of thin The mathematical formalism and the standard way of thinking about it http://www.wuthrich.net/ MA Seminar: Philosophy of Physics Vectors and vector spaces Vectors and vector spaces Operators Albert, Quantum

More information

LINEAR ALGEBRA KNOWLEDGE SURVEY

LINEAR ALGEBRA KNOWLEDGE SURVEY LINEAR ALGEBRA KNOWLEDGE SURVEY Instructions: This is a Knowledge Survey. For this assignment, I am only interested in your level of confidence about your ability to do the tasks on the following pages.

More information

Section 2.1 (First Order) Linear DEs; Method of Integrating Factors. General first order linear DEs Standard Form; y'(t) + p(t) y = g(t)

Section 2.1 (First Order) Linear DEs; Method of Integrating Factors. General first order linear DEs Standard Form; y'(t) + p(t) y = g(t) Section 2.1 (First Order) Linear DEs; Method of Integrating Factors Key Terms/Ideas: General first order linear DEs Standard Form; y'(t) + p(t) y = g(t) Integrating factor; a function μ(t) that transforms

More information

The Big Picture. Discuss Examples of unpredictability. Odds, Stanisław Lem, The New Yorker (1974) Chaos, Scientific American (1986)

The Big Picture. Discuss Examples of unpredictability. Odds, Stanisław Lem, The New Yorker (1974) Chaos, Scientific American (1986) The Big Picture Discuss Examples of unpredictability Odds, Stanisław Lem, The New Yorker (1974) Chaos, Scientific American (1986) Lecture 2: Natural Computation & Self-Organization, Physics 256A (Winter

More information

Chaos and R-L diode Circuit

Chaos and R-L diode Circuit Chaos and R-L diode Circuit Rabia Aslam Chaudary Roll no: 2012-10-0011 LUMS School of Science and Engineering Thursday, December 20, 2010 1 Abstract In this experiment, we will use an R-L diode circuit

More information

1. (i) Determine how many periodic orbits and equilibria can be born at the bifurcations of the zero equilibrium of the following system:

1. (i) Determine how many periodic orbits and equilibria can be born at the bifurcations of the zero equilibrium of the following system: 1. (i) Determine how many periodic orbits and equilibria can be born at the bifurcations of the zero equilibrium of the following system: ẋ = y x 2, ẏ = z + xy, ż = y z + x 2 xy + y 2 + z 2 x 4. (ii) Determine

More information

Section 5.4 (Systems of Linear Differential Equation); 9.5 Eigenvalues and Eigenvectors, cont d

Section 5.4 (Systems of Linear Differential Equation); 9.5 Eigenvalues and Eigenvectors, cont d Section 5.4 (Systems of Linear Differential Equation); 9.5 Eigenvalues and Eigenvectors, cont d July 6, 2009 Today s Session Today s Session A Summary of This Session: Today s Session A Summary of This

More information

BIFURCATION PHENOMENA Lecture 4: Bifurcations in n-dimensional ODEs

BIFURCATION PHENOMENA Lecture 4: Bifurcations in n-dimensional ODEs BIFURCATION PHENOMENA Lecture 4: Bifurcations in n-dimensional ODEs Yuri A. Kuznetsov August, 2010 Contents 1. Solutions and orbits: equilibria cycles connecting orbits compact invariant manifolds strange

More information

Student Background Readings for Bug Dynamics: The Logistic Map

Student Background Readings for Bug Dynamics: The Logistic Map Student Background Readings for Bug Dynamics: The Logistic Map Figure 1 The population as a function of a growth rate parameter observed in the experiment of [Bugs]. Graphs such as this are called bifurcation

More information

Modelling Biochemical Reaction Networks. Lecture 21: Phase diagrams

Modelling Biochemical Reaction Networks. Lecture 21: Phase diagrams Modelling Biochemical Reaction Networks Lecture 21: Phase diagrams Marc R. Roussel Department of Chemistry and Biochemistry Phase diagrams Bifurcation diagrams show us, among other things, where bifurcations

More information

4 Insect outbreak model

4 Insect outbreak model 4 Insect outbreak model In this lecture I will put to a good use all the mathematical machinery we discussed so far. Consider an insect population, which is subject to predation by birds. It is a very

More information

A Producer-Consumer Model With Stoichiometry

A Producer-Consumer Model With Stoichiometry A Producer-Consumer Model With Stoichiometry Plan B project toward the completion of the Master of Science degree in Mathematics at University of Minnesota Duluth Respectfully submitted by Laura Joan Zimmermann

More information

Selection and Adversary Arguments. COMP 215 Lecture 19

Selection and Adversary Arguments. COMP 215 Lecture 19 Selection and Adversary Arguments COMP 215 Lecture 19 Selection Problems We want to find the k'th largest entry in an unsorted array. Could be the largest, smallest, median, etc. Ideas for an n lg n algorithm?

More information

Feynman Says: Newton implies Kepler, No Calculus Needed!

Feynman Says: Newton implies Kepler, No Calculus Needed! The Journal of Symbolic Geometry Volume 1 (2006) Feynman Says: Newton implies Kepler, No Calculus Needed! Brian Beckman http://weblogs.asp.net/brianbec Abstract: We recapitulate Feynman's demonstration

More information

Transient response of RC and RL circuits ENGR 40M lecture notes July 26, 2017 Chuan-Zheng Lee, Stanford University

Transient response of RC and RL circuits ENGR 40M lecture notes July 26, 2017 Chuan-Zheng Lee, Stanford University Transient response of C and L circuits ENG 40M lecture notes July 26, 2017 Chuan-Zheng Lee, Stanford University esistor capacitor (C) and resistor inductor (L) circuits are the two types of first-order

More information

This activity has been password protected to prevent modification. In order to request an unprotected version of this activity, contact

This activity has been password protected to prevent modification. In order to request an unprotected version of this activity, contact This activity has been password protected to prevent modification. In order to request an unprotected version of this activity, contact pogil@pogil.org EXAMPLE POGIL ACTIVITY 2: Learning Objectives: Solving

More information

Chapter 2. Mathematical Reasoning. 2.1 Mathematical Models

Chapter 2. Mathematical Reasoning. 2.1 Mathematical Models Contents Mathematical Reasoning 3.1 Mathematical Models........................... 3. Mathematical Proof............................ 4..1 Structure of Proofs........................ 4.. Direct Method..........................

More information

Lecture 6. Lorenz equations and Malkus' waterwheel Some properties of the Lorenz Eq.'s Lorenz Map Towards definitions of:

Lecture 6. Lorenz equations and Malkus' waterwheel Some properties of the Lorenz Eq.'s Lorenz Map Towards definitions of: Lecture 6 Chaos Lorenz equations and Malkus' waterwheel Some properties of the Lorenz Eq.'s Lorenz Map Towards definitions of: Chaos, Attractors and strange attractors Transient chaos Lorenz Equations

More information

Physically Based Modeling: Principles and Practice Differential Equation Basics

Physically Based Modeling: Principles and Practice Differential Equation Basics Physically Based Modeling: Principles and Practice Differential Equation Basics Andrew Witkin and David Baraff Robotics Institute Carnegie Mellon University Please note: This document is 1997 by Andrew

More information

Control of Chaos in Strongly Nonlinear Dynamic Systems

Control of Chaos in Strongly Nonlinear Dynamic Systems Control of Chaos in Strongly Nonlinear Dynamic Systems Lev F. Petrov Plekhanov Russian University of Economics Stremianniy per., 36, 115998, Moscow, Russia lfp@mail.ru Abstract We consider the dynamic

More information

Dynamical Systems: Lecture 1 Naima Hammoud

Dynamical Systems: Lecture 1 Naima Hammoud Dynamical Systems: Lecture 1 Naima Hammoud Feb 21, 2017 What is dynamics? Dynamics is the study of systems that evolve in time What is dynamics? Dynamics is the study of systems that evolve in time a system

More information

Physically Based Modeling Differential Equation Basics

Physically Based Modeling Differential Equation Basics Physically Based Modeling Differential Equation Basics Andrew Witkin and David Baraff Pixar Animation Studios Please note: This document is 2001 by Andrew Witkin and David Baraff. This chapter may be freely

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS The fundamental objects that we deal with in calculus are functions. FUNCTIONS AND MODELS This chapter prepares the way for calculus by discussing: The basic

More information

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship.

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship. MULTI-DIMENSIONAL SYSTEM: In this computer simulation we will explore a nonlinear multi-dimensional system. As before these systems are governed by equations of the form x 1 = f 1 x 2 = f 2.. x n = f n

More information

CDS 101 Precourse Phase Plane Analysis and Stability

CDS 101 Precourse Phase Plane Analysis and Stability CDS 101 Precourse Phase Plane Analysis and Stability Melvin Leok Control and Dynamical Systems California Institute of Technology Pasadena, CA, 26 September, 2002. mleok@cds.caltech.edu http://www.cds.caltech.edu/

More information

6. Qualitative Solutions of the TISE

6. Qualitative Solutions of the TISE 6. Qualitative Solutions of the TISE Copyright c 2015 2016, Daniel V. Schroeder Our goal for the next few lessons is to solve the time-independent Schrödinger equation (TISE) for a variety of one-dimensional

More information

Lecture 3 : Bifurcation Analysis

Lecture 3 : Bifurcation Analysis Lecture 3 : Bifurcation Analysis D. Sumpter & S.C. Nicolis October - December 2008 D. Sumpter & S.C. Nicolis General settings 4 basic bifurcations (as long as there is only one unstable mode!) steady state

More information

v n+1 = v T + (v 0 - v T )exp(-[n +1]/ N )

v n+1 = v T + (v 0 - v T )exp(-[n +1]/ N ) Notes on Dynamical Systems (continued) 2. Maps The surprisingly complicated behavior of the physical pendulum, and many other physical systems as well, can be more readily understood by examining their

More information

B5.6 Nonlinear Systems

B5.6 Nonlinear Systems B5.6 Nonlinear Systems 4. Bifurcations Alain Goriely 2018 Mathematical Institute, University of Oxford Table of contents 1. Local bifurcations for vector fields 1.1 The problem 1.2 The extended centre

More information

Modelling Biochemical Reaction Networks. Lecture 17: Modeling the cell cycle, Part I

Modelling Biochemical Reaction Networks. Lecture 17: Modeling the cell cycle, Part I Modelling Biochemical Reaction Networks Lecture 17: Modeling the cell cycle, Part I Marc R. Roussel Department of Chemistry and Biochemistry Recommended reading Fall, Marland, Wagner and Tyson, sections

More information