Reduced System Computing and MMOs. Warren Weckesser. Department of Mathematics Colgate University

Size: px
Start display at page:

Download "Reduced System Computing and MMOs. Warren Weckesser. Department of Mathematics Colgate University"

Transcription

1 Reduced System Computing and MMOs Warren Weckesser Department of Mathematics Colgate University

2 Acknowledgments NSF Grant DMS-54468: RUI: Reduced System Computing for Singularly Perturbed Differential Equations

3 Acknowledgments NSF Grant DMS-54468: RUI: Reduced System Computing for Singularly Perturbed Differential Equations Undergraduate students: Brian Kinney Tomas Gruszka Dimitar Simeonov

4 Slow and Fast Subsystems, x R m, y R n εẋ = f(x,y) ẏ = g(x,y)

5 Slow and Fast Subsystems, x R m, y R n εẋ = f(x,y) ẏ = g(x,y) ε = Slow Subsystem (DAE) = f(x,y) ẏ = g(x,y)

6 Slow and Fast Subsystems, x R m, y R n εẋ = f(x,y) ẏ = g(x,y) t εt ẋ = f(x,y) ẏ = εg(x,y) ε = Slow Subsystem (DAE) = f(x,y) ẏ = g(x,y)

7 Slow and Fast Subsystems, x R m, y R n εẋ = f(x,y) ẏ = g(x,y) t εt ẋ = f(x,y) ẏ = εg(x,y) ε = Slow Subsystem (DAE) = f(x,y) ẏ = g(x,y) ε = Fast Subsystem ẋ = f(x,y) ẏ =

8 Slow and Fast Subsystems, x R m, y R n εẋ = f(x,y) ẏ = g(x,y) t εt ẋ = f(x,y) ẏ = εg(x,y) ε = Slow Subsystem (DAE) = f(x,y) ẏ = g(x,y) ε = Fast Subsystem ẋ = f(x,y) ẏ = Critical Manifold = f(x,y)

9 Reduced System Computing Goal: Create computational tools for the study of the reduced system of a singularly perturbed differential equation.

10 Reduced System Computing Goal: Create computational tools for the study of the reduced system of a singularly perturbed differential equation. Simple Idea: Concatenate solutions to fast and slow subsystems. Create zero th order approximations.

11 Reduced System Computing Goal: Create computational tools for the study of the reduced system of a singularly perturbed differential equation. Simple Idea: Concatenate solutions to fast and slow subsystems. Create zero th order approximations. Complications:

12 Reduced System Computing Goal: Create computational tools for the study of the reduced system of a singularly perturbed differential equation. Simple Idea: Concatenate solutions to fast and slow subsystems. Create zero th order approximations. Complications: Canards

13 Reduced System Computing Goal: Create computational tools for the study of the reduced system of a singularly perturbed differential equation. Simple Idea: Concatenate solutions to fast and slow subsystems. Create zero th order approximations. Complications: Canards Fast periodic orbits (and more general ω limit sets of the fast subsystem)

14 Slow Subsystem - A Few More Details = f(x,y) ẏ = g(x,y)

15 Slow Subsystem - A Few More Details = f(x,y) ẏ = g(x,y) Differentiate = f(x,y), solve for ẋ to obtain ẋ = (D x f) (D y f)g(x,y). Multiply by det(d x f). Desingularized slow equations: ẋ = (adjd x f)(d y f)g(x,y) ẏ = det(d x f)g(x,y)

16 Slow Subsystem - A Few More Details = f(x,y) ẏ = g(x,y) Differentiate = f(x,y), solve for ẋ to obtain ẋ = (D x f) (D y f)g(x,y). Multiply by det(d x f). Desingularized slow equations: ẋ = (adjd x f)(d y f)g(x,y) ẏ = det(d x f)g(x,y) Fold points: f(x,y) =, det(d x f) = Fold points are saddle-node equilibria of the fast subsystem.

17 Example: Two Coupled Neurons v = v + tanh(σ v ) q ω f(v 2 )(v + 4) v 2 = v 2 + tanh(σ 2 v 2 ) q 2 ω f(v )(v 2 + 4) q = ε( q + v ) q 2 = ε( q 2 + v 2 ) f(v) = +e 4(v /75) Each (v i,q i ) is a relaxation oscillator. When one is firing, the other s v nullcline is depressed ( reciprocal inhibition ). This system has two fast variables and a two dimensional critical manifold.

18 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

19 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

20 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

21 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

22 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

23 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

24 Fast/Slow System Definition File: cpldosc.fs # Definitions for the coupled oscillator fast/slow system. cpldosc # Fast variables: v, v2 2 v v2 # Slow variables: q, q2 2 q q2 # Parameters: 3 omega sigma sigma2 # Vector field for the fast variables -v+tanh(sigma*v) - q - omega*(v+4)/(+exp(-4*(v2-/75))) -v2+tanh(sigma2*v2) - q2 - omega*(v2+4)/(+exp(-4*(v-/75))) # Vector field for the slow variables -q + v -q2 + v2

25 Computer Code Generation C code is generated, to be used with the SUNDIALS suite [ SUNDIALS includes CVODE for ODEs and IDA for DAEs.

26 Computer Code Generation C code is generated, to be used with the SUNDIALS suite [ SUNDIALS includes CVODE for ODEs and IDA for DAEs. Jacobians are generated automatically (via GiNaC)

27 Computer Code Generation C code is generated, to be used with the SUNDIALS suite [ SUNDIALS includes CVODE for ODEs and IDA for DAEs. Jacobians are generated automatically (via GiNaC) Some MATLAB code is also generated. Other target languages or libraries could be implemented.

28 Computer Code Generation C code is generated, to be used with the SUNDIALS suite [ SUNDIALS includes CVODE for ODEs and IDA for DAEs. Jacobians are generated automatically (via GiNaC) Some MATLAB code is also generated. Other target languages or libraries could be implemented. Input file: cpldosc.fs Output files: fs_cpldosc.c fs_cpldosc_cvode.c fs_cpldosc_ida.c fs_cpldosc.m General C functions C functions for CVODE C functions for IDA MATLAB functions

29 Computer Code Generated The generated code includes:

30 Computer Code Generated The generated code includes: Fast vector field and IVP solver Fast vector field, to be used with CVODE int cpldoscf_cv(realtype t, N_Vector Xvec, N_Vector Xdotvec, void *params) Fast vector field Jacobian int cpldoscfx_cv(long int N, DenseMat Fx, realtype t, N_Vector Xvec, N_Vector Fvec, void *params, N_Vector tmp, N_Vector tmp2, N_Vector tmp3) Solve the fast subsystem IVP void cpldosc_fast(file *fastfile, double X[], double Y[], double params[], SolverParams *solver_params)

31 Computer Code Generated The generated code includes: Slow subsystem DAE, configured for IDA Compute residuals for the IDA DAE solver int cpldosc_idares(realtype t, N_Vector Zvec, N_Vector Zdotvec, N_Vector rvec, void *params) Jacobian for IDA DAE solver int cpldosc_idajac(long int Neq, realtype t, N_Vector Zvec, N_Vector Zdotvec, N_Vector rvec, realtype c_j, void *params, DenseMat jacmat, N_Vector tmp, N_Vector tmp2, N_Vector tmp3) Solve the slow subsystem DAE IVP void cpldosc_slow_dae(file *slowfile, double X[], double Y[], double params[], SolverParams *solver_params)

32 Computer Code Generated The generated code includes: Desingularized slow subsystem (for CVODE) Desingularized slow subsystem vector field int cpldosc_slowde(realtype t, N_Vector Zvec, N_Vector Zdotvec, void *params) Desingularized slow subsystem IVP solver void cpldosc_slow_des(file *slowfile, double X[], double Y[], double params[], SolverParams *solver_params)

33 Computer Code Generated The generated code includes: Fold function and Jacobian Fold function realtype cpldosc_foldfunc_nv(n_vector Zvec, void *params) Fold function gradient (with respect to all variables) void cpldosc_foldfunc_grad_nv(double *grad, N_Vector Zvec, void *params)

34 Example: Initial Value Problem for the Coupled Oscillator System v 2 q v.8 v v.5.5 (ω =.5, σ =.5, σ 2 = 2.6)

35 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2.5 q v v 2 v σ =.2

36 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2.5 q v v 2 v σ =.3

37 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2 q v v 2 v σ =.4

38 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2 q v v 2 v σ =.5925

39 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2 q v v 2 v σ =.625

40 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2 q v v 2 v σ =.625

41 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2 q v v 2 v σ =.6325

42 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2.5 q v v v.5.5 σ =.8

43 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2.5 q v v v.5.5 σ = 2.5

44 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) v 2.5 q v v v.5.5 σ = 3

45 Periodic Orbits of the Coupled Oscillator System (ω =.5, σ 2 =.2) σ =.2.5 σ = v v t t σ =2.5 σ = v v t t

46 Bifurcation Diagram: Stable Periodic Orbits ( Poor man s continuation; not a complete diagram)..5 L2 norm (slow subsystem) σ

47 Bifurcation Diagram: Stable Periodic Orbits ( Poor man s continuation; not a complete diagram)..5 L2 norm (slow subsystem) σ

48 Observations Bifurcations observed at:

49 Observations Bifurcations observed at: Fold-to-fold fast transition (SN-SN connection in fast subsystem)

50 Observations Bifurcations observed at: Fold-to-fold fast transition (SN-SN connection in fast subsystem) (Fold-to-fold examples where the slow flow is towards the fold or away from the fold have been observed.)

51 Observations Bifurcations observed at: Fold-to-fold fast transition (SN-SN connection in fast subsystem) (Fold-to-fold examples where the slow flow is towards the fold or away from the fold have been observed.) Periodic orbits homoclinic to a folded saddle.

52 Observations Bifurcations observed at: Fold-to-fold fast transition (SN-SN connection in fast subsystem) (Fold-to-fold examples where the slow flow is towards the fold or away from the fold have been observed.) Periodic orbits homoclinic to a folded saddle. The investigation is not complete!

53 Current and Future Development

54 Current and Future Development RSC boundary value problem solver that handles canards.

55 Current and Future Development RSC boundary value problem solver that handles canards. Computing and continuing periodic orbits.

56 Current and Future Development RSC boundary value problem solver that handles canards. Computing and continuing periodic orbits. Find fast/slow orbit homoclinic to folded singular points. These play an import role in the bifurcations of periodic orbits: J. Guckenheimer, K. Hoffman, W. Weckesser, Bifurcations of relaxation oscillations near folded saddles, Int. J. Bif. Chaos 5(), (25) M. Brøns, M. Krupa, M. Wechselberger, Mixed Mode Oscillations Due to the Generalized Canard Phenomenon, Fields Institute Communications Vol. 49, (26)

CANARDS AND HORSESHOES IN THE FORCED VAN DER POL EQUATION

CANARDS AND HORSESHOES IN THE FORCED VAN DER POL EQUATION CANARDS AND HORSESHOES IN THE FORCED VAN DER POL EQUATION WARREN WECKESSER Department of Mathematics Colgate University Hamilton, NY 3346 E-mail: wweckesser@mail.colgate.edu Cartwright and Littlewood discovered

More information

Numerical Computation of Canards

Numerical Computation of Canards Numerical Computation of Canards John Guckenheimer Kathleen Hoffman Warren Weckesser January 9, 23 Shortened title: Computing Canards Abstract Singularly perturbed systems of ordinary differential equations

More information

Canard dynamics: applications to the biosciences and theoretical aspects

Canard dynamics: applications to the biosciences and theoretical aspects Canard dynamics: applications to the biosciences and theoretical aspects M. Krupa INRIA Rocquencourt (France) Collaborators: M. Desroches (INRIA), T. Kaper (BU) Outline 1 Canards in two dimensions 2 Mixed-mode

More information

1 1

1 1 jmg16@cornell.edu 1 1 Periodic Orbit Continuation in Multiple Time Scale Systems John Guckenheimer and M. Drew LaMar Mathematics Department, Cornell University, Ithaca, NY 14853 1 Introduction Continuation

More information

Global Analysis of Dynamical Systems Festschrift dedicated to Floris Takens for his 60th birthday

Global Analysis of Dynamical Systems Festschrift dedicated to Floris Takens for his 60th birthday Global Analysis of Dynamical Systems Festschrift dedicated to Floris Takens for his 6th birthday Edited by Henk W. Broer, Bernd Krauskopf and Gert Vegter January 6, 3 Chapter Global Bifurcations of Periodic

More information

MIXED-MODE OSCILLATIONS WITH MULTIPLE TIME SCALES

MIXED-MODE OSCILLATIONS WITH MULTIPLE TIME SCALES MIXED-MODE OSCILLATIONS WITH MULTIPLE TIME SCALES MATHIEU DESROCHES, JOHN GUCKENHEIMER, BERND KRAUSKOPF, CHRISTIAN KUEHN, HINKE M OSINGA, MARTIN WECHSELBERGER Abstract Mixed-mode oscillations (MMOs) are

More information

The Forced van der Pol Equation I: The Slow Flow and Its Bifurcations

The Forced van der Pol Equation I: The Slow Flow and Its Bifurcations SIAM J. APPLIED DYNAMICAL SYSTEMS Vol., No., pp. 35 c 3 Society for Industrial and Applied Mathematics Downloaded 4/8/8 to 48.5.3.83. Redistribution subject to SIAM license or copyright; see http://www.siam.org/journals/ojsa.php

More information

Journal of Differential Equations

Journal of Differential Equations J. Differential Equations 248 (2010 2841 2888 Contents lists available at ScienceDirect Journal of Differential Equations www.elsevier.com/locate/jde Local analysis near a folded saddle-node singularity

More information

A Study of the Van der Pol Equation

A Study of the Van der Pol Equation A Study of the Van der Pol Equation Kai Zhe Tan, s1465711 September 16, 2016 Abstract The Van der Pol equation is famous for modelling biological systems as well as being a good model to study its multiple

More information

arxiv: v2 [math.ds] 8 Feb 2016

arxiv: v2 [math.ds] 8 Feb 2016 Canard explosion and relaxation oscillation in planar, piecewise-smooth, continuous systems Andrew Roberts Department of Mathematics, Cornell University (Dated: February 9, 2016) arxiv:1412.0263v2 [math.ds]

More information

Mixed mode oscillations as a mechanism for pseudo-plateau bursting

Mixed mode oscillations as a mechanism for pseudo-plateau bursting J Comput Neurosci (2010) 28:443 458 DOI 10.1007/s10827-010-0226-7 Mixed mode oscillations as a mechanism for pseudo-plateau bursting Theodore Vo Richard Bertram Joel Tabak Martin Wechselberger Received:

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

The Forced van der Pol Equation II: Canards in the Reduced System

The Forced van der Pol Equation II: Canards in the Reduced System SIAM J. APPLIED DYNAMICAL SYSTEMS Vol. 2, No. 4, pp. 57 68 c 23 Society for Industrial and Applied Mathematics The Forced van der Pol Equation II: Canards in the Reduced System Katherine Bold, Chantal

More information

Piecewise-linear (PWL) canard dynamics : Simplifying singular perturbation theory in the canard regime using piecewise-linear systems

Piecewise-linear (PWL) canard dynamics : Simplifying singular perturbation theory in the canard regime using piecewise-linear systems Piecewise-linear (PWL) canard dynamics : Simplifying singular perturbation theory in the canard regime using piecewise-linear systems Mathieu Desroches, Soledad Fernández-García, Martin Krupa, Rafel Prohens,

More information

Canards and Mixed-Mode Oscillations in a Singularly Perturbed Two Predators-One Prey Model Susmita Sadhu

Canards and Mixed-Mode Oscillations in a Singularly Perturbed Two Predators-One Prey Model Susmita Sadhu Proceedings of Dynamic Systems and Applications 7 206 2 29 Canards and Mied-Mode Oscillations in a Singularly Perturbed Two Predators-One Prey Model Susmita Sadhu Department of Mathematics Georgia College

More information

The selection of mixed-mode oscillations in a Hodgkin-Huxley model with multiple timescales

The selection of mixed-mode oscillations in a Hodgkin-Huxley model with multiple timescales CHAOS 18, 015105 2008 The selection of mixed-mode oscillations in a Hodgkin-Huxley model with multiple timescales Jonathan Rubin Department of Mathematics, University of Pittsburgh, Pittsburgh, Pennsylvania

More information

arxiv: v1 [math.ds] 24 Aug 2018

arxiv: v1 [math.ds] 24 Aug 2018 Canards Existence in Memristor s Circuits arxiv:1808.09022v1 [math.ds] 24 Aug 2018 The aim of this work is to propose an alternative method for determining the condition of existence of canard solutions

More information

arxiv: v1 [math.ds] 30 Jan 2012

arxiv: v1 [math.ds] 30 Jan 2012 Homoclinic Orbits of the FitzHugh-Nagumo Equation: Bifurcations in the Full System John Guckenheimer Christian Kuehn arxiv:1201.6352v1 [math.ds] 30 Jan 2012 Abstract This paper investigates travelling

More information

The Rela(onship Between Two Fast/ Slow Analysis Techniques for Burs(ng Oscilla(ons

The Rela(onship Between Two Fast/ Slow Analysis Techniques for Burs(ng Oscilla(ons The Rela(onship Between Two Fast/ Slow Analysis Techniques for Burs(ng Oscilla(ons Richard Bertram Department of Mathema(cs Florida State University Tallahassee, Florida Collaborators and Support Joël

More information

1. Introduction. We consider singularly perturbed ordinary differential equations (ODEs) in the standard form

1. Introduction. We consider singularly perturbed ordinary differential equations (ODEs) in the standard form SIAM J. MATH. ANAL. Vol. 33, No. 2, pp. 286 314 c 2001 Society for Industrial and Applied Mathematics EXTENDING GEOMETRIC SINGULAR PERTURBATION THEORY TO NONHYPERBOLIC POINTS FOLD AND CANARD POINTS IN

More information

Interaction of Canard and Singular Hopf Mechanisms in a Neural Model

Interaction of Canard and Singular Hopf Mechanisms in a Neural Model SIAM J. APPLIED DYNAMICAL SYSTEMS Vol. 0, No. 4, pp. 443 479 c 0 Society for Industrial and Applied Mathematics Interaction of Canard and Singular Hopf Mechanisms in a Neural Model R. Curtu and J. Rubin

More information

Stochastic differential equations in neuroscience

Stochastic differential equations in neuroscience Stochastic differential equations in neuroscience Nils Berglund MAPMO, Orléans (CNRS, UMR 6628) http://www.univ-orleans.fr/mapmo/membres/berglund/ Barbara Gentz, Universität Bielefeld Damien Landon, MAPMO-Orléans

More information

Canards at Folded Nodes

Canards at Folded Nodes Canards at Folded Nodes John Guckenheimer and Radu Haiduc Mathematics Department, Ithaca, NY 14853 For Yulij Il yashenko with admiration and affection on the occasion of his 60th birthday March 18, 2003

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

Analysis of the Takens-Bogdanov bifurcation on m parameterized vector fields

Analysis of the Takens-Bogdanov bifurcation on m parameterized vector fields Analysis of the Takens-Bogdanov bifurcation on m parameterized vector fields Francisco Armando Carrillo Navarro, Fernando Verduzco G., Joaquín Delgado F. Programa de Doctorado en Ciencias (Matemáticas),

More information

UNIVERSITY OF CALIFORNIA SANTA BARBARA. Controlling Canards Using Ideas From The Theory of Mixed-Mode Oscillations. Joseph William Durham

UNIVERSITY OF CALIFORNIA SANTA BARBARA. Controlling Canards Using Ideas From The Theory of Mixed-Mode Oscillations. Joseph William Durham i UNIVERSITY OF CALIFORNIA SANTA BARBARA Controlling Canards Using Ideas From The Theory of Mixed-Mode Oscillations by Joseph William Durham A thesis submitted in partial satisfaction of the requirements

More information

Some results on interspike interval statistics in conductance-based models for neuron action potentials

Some results on interspike interval statistics in conductance-based models for neuron action potentials Some results on interspike interval statistics in conductance-based models for neuron action potentials Nils Berglund MAPMO, Université d Orléans CNRS, UMR 7349 et Fédération Denis Poisson www.univ-orleans.fr/mapmo/membres/berglund

More information

Chapter 3 Canard Theory and Excitability

Chapter 3 Canard Theory and Excitability Chapter 3 Canard Theory and Excitability Martin Wechselberger, John Mitry, and John Rinzel Abstract An important feature of many physiological systems is that they evolve on multiple scales. From a mathematical

More information

Towards a Global Theory of Singularly Perturbed Dynamical Systems John Guckenheimer Cornell University

Towards a Global Theory of Singularly Perturbed Dynamical Systems John Guckenheimer Cornell University Towards a Global Theory of Singularly Perturbed Dynamical Systems John Guckenheimer Cornell University Dynamical systems with multiple time scales arise naturally in many domains. Models of neural systems

More information

Abrupt changes and intervening oscillations in conceptual climate models

Abrupt changes and intervening oscillations in conceptual climate models Abrupt changes and intervening oscillations in conceptual climate models Andrew Roberts A dissertation submitted to the faculty of the University of North Carolina at Chapel Hill in partial fulfillment

More information

CANARDS AT FOLDED NODES

CANARDS AT FOLDED NODES MOSCOW MATHEMATICAL JOURNAL Volume 5, Number 1, January March 2005, Pages 91 103 CANARDS AT FOLDED NODES JOHN GUCKENHEIMER AND RADU HAIDUC For Yulij Ilyashenko with admiration and affection on the occasion

More information

Spike-adding canard explosion of bursting oscillations

Spike-adding canard explosion of bursting oscillations Spike-adding canard explosion of bursting oscillations Paul Carter Mathematical Institute Leiden University Abstract This paper examines a spike-adding bifurcation phenomenon whereby small amplitude canard

More information

arxiv: v2 [math.ds] 21 Feb 2014

arxiv: v2 [math.ds] 21 Feb 2014 Mied mode oscillations in a conceptual climate model Andrew Roberts a,, Esther Widiasih b, Martin Wechselberger c, Chris K. R. T. Jones a arxiv:1311.518v [math.ds] 1 Feb 014 Abstract a Department of Mathematics,

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

THREE TIME-SCALES IN AN EXTENDED BONHOEFFER-VAN DER POL OSCILLATOR

THREE TIME-SCALES IN AN EXTENDED BONHOEFFER-VAN DER POL OSCILLATOR THREE TIME-SCALES IN AN EXTENDED BONHOEFFER-VAN DER POL OSCILLATOR P. DE MAESSCHALCK, E. KUTAFINA, AND N. POPOVIĆ Abstract. We consider an extended three-dimensional Bonhoeffer-van der Pol oscillator which

More information

Computing Periodic Orbits and their Bifurcations with Automatic Differentiation

Computing Periodic Orbits and their Bifurcations with Automatic Differentiation Computing Periodic Orbits and their Bifurcations with Automatic Differentiation John Guckenheimer and Brian Meloon Mathematics Department, Ithaca, NY 14853 September 29, 1999 1 Introduction This paper

More information

The Plan. Initial value problems (ivps) for ordinary differential equations (odes) Review of basic methods You are here: Hamiltonian systems

The Plan. Initial value problems (ivps) for ordinary differential equations (odes) Review of basic methods You are here: Hamiltonian systems Scientific Computing with Case Studies SIAM Press, 2009 http://www.cs.umd.edu/users/oleary/sccswebpage Lecture Notes for Unit V Solution of Differential Equations Part 2 Dianne P. O Leary c 2008 The Plan

More information

THE GEOMETRY OF SLOW MANIFOLDS NEAR A FOLDED NODE

THE GEOMETRY OF SLOW MANIFOLDS NEAR A FOLDED NODE THE GEOMETRY OF SLOW MANIFOLDS NEAR A FOLDED NODE M DESROCHES, B KRAUSKOPF, HM OSINGA Abstract This paper is concerned with the geometry of slow manifolds of a dynamical system with two slow and one fast

More information

Mixed-mode oscillations in a three time-scale model for the dopaminergic neuron

Mixed-mode oscillations in a three time-scale model for the dopaminergic neuron CHAOS 18, 015106 008 Mixed-mode oscillations in a three time-scale model for the dopaminergic neuron Martin Krupa a Department of Mathematical Sciences, New Mexico State University, P.O. Box 30001, Department

More information

Discretized Fast-Slow Systems near Pitchfork Singularities

Discretized Fast-Slow Systems near Pitchfork Singularities Discretized Fast-Slow Systems near Pitchfork Singularities Luca Arcidiacono, Maximilian Engel, Christian Kuehn arxiv:90.065v [math.ds] 8 Feb 09 February 9, 09 Abstract Motivated by the normal form of a

More information

arxiv: v3 [math.ds] 27 Nov 2013

arxiv: v3 [math.ds] 27 Nov 2013 Modeling the modulation of neuronal bursting: a singularity theory approach arxiv:1305.7364v3 [math.ds] 27 Nov 2013 Alessio Franci 1,, Guillaume Drion 2,3, & Rodolphe Sepulchre 2,4 1 INRIA Lille-Nord Europe,

More information

Math 4200, Problem set 3

Math 4200, Problem set 3 Math, Problem set 3 Solutions September, 13 Problem 1. ẍ = ω x. Solution. Following the general theory of conservative systems with one degree of freedom let us define the kinetic energy T and potential

More information

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

Problem Set Number 5, j/2.036j MIT (Fall 2014) Problem Set Number 5, 18.385j/2.036j MIT (Fall 2014) Rodolfo R. Rosales (MIT, Math. Dept.,Cambridge, MA 02139) Due Fri., October 24, 2014. October 17, 2014 1 Large µ limit for Liénard system #03 Statement:

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

Two models for the parametric forcing of a nonlinear oscillator

Two models for the parametric forcing of a nonlinear oscillator Nonlinear Dyn (007) 50:147 160 DOI 10.1007/s11071-006-9148-3 ORIGINAL ARTICLE Two models for the parametric forcing of a nonlinear oscillator Nazha Abouhazim Mohamed Belhaq Richard H. Rand Received: 3

More information

Synchronization of Elliptic Bursters

Synchronization of Elliptic Bursters SIAM REVIEW Vol. 43,No. 2,pp. 315 344 c 2001 Society for Industrial and Applied Mathematics Synchronization of Elliptic Bursters Eugene M. Izhikevich Abstract. Periodic bursting behavior in neurons is

More information

Nonlinear Dynamics and Chaos

Nonlinear Dynamics and Chaos Ian Eisenman eisenman@fas.harvard.edu Geological Museum 101, 6-6352 Nonlinear Dynamics and Chaos Review of some of the topics covered in homework problems, based on section notes. December, 2005 Contents

More information

Feedback control of canards

Feedback control of canards Feedback control of canards CHAOS 18, 015110 2008 Joseph Durham a and Jeff Moehlis b Department of Mechanical Engineering, University of California, Santa Barbara, California 93106, USA Received 9 January

More information

Computing Periodic Orbits

Computing Periodic Orbits Computing Periodic Orbits John Guckenheimer Mathematics Department, Ithaca, NY 14853 Abstract The dynamics of fluids are often studied through the reduction of partial differential equations to systems

More information

ODE solvers in Julia. Gabriel Ingesson. October 2, 2015

ODE solvers in Julia. Gabriel Ingesson. October 2, 2015 ODE solvers in Julia Gabriel Ingesson October 2, 2015 Motivation General: Numerical methods for solving ODE s is important for system simulations. Simulation is important for controller design. Personal:

More information

Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Workshop. E. David Huckaby June 14, 2011

Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Workshop. E. David Huckaby June 14, 2011 Coupling SUNDIALS with OpenFOAM 6 th OpenFOAM Worshop E. David Hucaby June 14, 2011 EDH-OFW2011 Outline Motivation Mathematics Basic Design Eamples Food Web Steady & Unsteady Pitz-Daily 2 Motivation Why

More information

BIFURCATION FOR NON LINEAR ORDINARY DIFFERENTIAL EQUATIONS WITH SINGULAR PERTURBATION

BIFURCATION FOR NON LINEAR ORDINARY DIFFERENTIAL EQUATIONS WITH SINGULAR PERTURBATION Electronic Journal of Differential Equations, Vol. 2016 (2016), No. 275, pp. 1 8. ISSN: 1072-6691. URL: http://ejde.math.txstate.edu or http://ejde.math.unt.edu BIFURCATION FOR NON LINEAR ORDINARY DIFFERENTIAL

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

Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations

Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations Logistic Map, Euler & Runge-Kutta Method and Lotka-Volterra Equations S. Y. Ha and J. Park Department of Mathematical Sciences Seoul National University Sep 23, 2013 Contents 1 Logistic Map 2 Euler and

More information

COMPLEX DYNAMICS AND CHAOS CONTROL IN DUFFING-VAN DER POL EQUATION WITH TWO EXTERNAL PERIODIC FORCING TERMS

COMPLEX DYNAMICS AND CHAOS CONTROL IN DUFFING-VAN DER POL EQUATION WITH TWO EXTERNAL PERIODIC FORCING TERMS International J. of Math. Sci. & Engg. Appls. (IJMSEA) ISSN 0973-9424, Vol. 9 No. III (September, 2015), pp. 197-210 COMPLEX DYNAMICS AND CHAOS CONTROL IN DUFFING-VAN DER POL EQUATION WITH TWO EXTERNAL

More information

Elements of Applied Bifurcation Theory

Elements of Applied Bifurcation Theory Yuri A. Kuznetsov Elements of Applied Bifurcation Theory Third Edition With 251 Illustrations Springer Introduction to Dynamical Systems 1 1.1 Definition of a dynamical system 1 1.1.1 State space 1 1.1.2

More information

10.34: Numerical Methods Applied to Chemical Engineering. Lecture 19: Differential Algebraic Equations

10.34: Numerical Methods Applied to Chemical Engineering. Lecture 19: Differential Algebraic Equations 10.34: Numerical Methods Applied to Chemical Engineering Lecture 19: Differential Algebraic Equations 1 Recap Differential algebraic equations Semi-explicit Fully implicit Simulation via backward difference

More information

Dynamical Systems in Neuroscience: The Geometry of Excitability and Bursting

Dynamical Systems in Neuroscience: The Geometry of Excitability and Bursting Dynamical Systems in Neuroscience: The Geometry of Excitability and Bursting Eugene M. Izhikevich The MIT Press Cambridge, Massachusetts London, England Contents Preface xv 1 Introduction 1 1.1 Neurons

More information

Slow Manifold of a Neuronal Bursting Model

Slow Manifold of a Neuronal Bursting Model Slow Manifold of a Neuronal Bursting Model Jean-Marc Ginoux 1 and Bruno Rossetto 2 1 PROTEE Laboratory, Université du Sud, B.P. 2132, 83957, La Garde Cedex, France, ginoux@univ-tln.fr 2 PROTEE Laboratory,

More information

BIFURCATION PHENOMENA Lecture 1: Qualitative theory of planar ODEs

BIFURCATION PHENOMENA Lecture 1: Qualitative theory of planar ODEs BIFURCATION PHENOMENA Lecture 1: Qualitative theory of planar ODEs Yuri A. Kuznetsov August, 2010 Contents 1. Solutions and orbits. 2. Equilibria. 3. Periodic orbits and limit cycles. 4. Homoclinic orbits.

More information

The relationship between two fast/slow analysis techniques for bursting oscillations

The relationship between two fast/slow analysis techniques for bursting oscillations The relationship between two fast/slow analysis techniques for bursting oscillations Wondimu Teka, Joël Tabak, and Richard Bertram Citation: Chaos 22, 043117 (2012); doi: 10.1063/1.4766943 View online:

More information

New Developments in Dynamical Systems Arising from the Biosciences. The Effect of Noise on Mixed-Mode Oscillations

New Developments in Dynamical Systems Arising from the Biosciences. The Effect of Noise on Mixed-Mode Oscillations Barbara Gent gent@math.uni-bielefeld.de http://www.math.uni-bielefeld.de/ gent New Developments in Dynamical Systems Arising from the Biosciences Mathematical Biosciences Institute, 22 26 March 2011 The

More information

The Effect of a Smart Predator in a One Predator, Two Prey System

The Effect of a Smart Predator in a One Predator, Two Prey System The Effect of a Smart Predator in a One Predator, Two Prey System Elizabeth Green October 6, 4 Abstract This paper analyzes a food web with a predator and two non-competing preys where the predation follows

More information

Mathematical Modeling I

Mathematical Modeling I Mathematical Modeling I Dr. Zachariah Sinkala Department of Mathematical Sciences Middle Tennessee State University Murfreesboro Tennessee 37132, USA November 5, 2011 1d systems To understand more complex

More information

Problem set 6 Math 207A, Fall 2011 Solutions. 1. A two-dimensional gradient system has the form

Problem set 6 Math 207A, Fall 2011 Solutions. 1. A two-dimensional gradient system has the form Problem set 6 Math 207A, Fall 2011 s 1 A two-dimensional gradient sstem has the form x t = W (x,, x t = W (x, where W (x, is a given function (a If W is a quadratic function W (x, = 1 2 ax2 + bx + 1 2

More information

The Hopf-van der Pol System: Failure of a Homotopy Method

The Hopf-van der Pol System: Failure of a Homotopy Method DOI.7/s259--9-5 ORIGINAL RESEARCH The Hopf-van der Pol System: Failure of a Homotopy Method H. G. E. Meijer T. Kalmár-Nagy Foundation for Scientific Research and Technological Innovation 2 Abstract The

More information

Morse Theory for Lagrange Multipliers

Morse Theory for Lagrange Multipliers Morse Theory for Lagrange Multipliers γ=0 grad γ grad f Guangbo Xu Princeton University and Steve Schecter North Carolina State University 1 2 Outline 3 (1) History of Mathematics 1950 2050. Chapter 1.

More information

c 2000 Society for Industrial and Applied Mathematics

c 2000 Society for Industrial and Applied Mathematics SIAM J. APPL. MATH. Vol. 60, No. 2, pp. 503 535 c 2000 Society for Industrial and Applied Mathematics SUBCRITICAL ELLIPTIC BURSTING OF BAUTIN TYPE EUGENE M. IZHIKEVICH Abstract. Bursting behavior in neurons

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

HOPF BIFURCATION AND HETEROCLINIC CYCLES IN A CLASS OF D 2 EQUIVARIANT SYSTEMS

HOPF BIFURCATION AND HETEROCLINIC CYCLES IN A CLASS OF D 2 EQUIVARIANT SYSTEMS HOPF BIFURCATION AND HETEROCLINIC CYCLES IN A CLASS OF D 2 EQUIVARIANT SYSTEMS ADRIAN C. MURZA Communicated by Vasile Brînzănescu In this paper, we analyze a generic dynamical system with D 2 constructed

More information

Chapter 23. Predicting Chaos The Shift Map and Symbolic Dynamics

Chapter 23. Predicting Chaos The Shift Map and Symbolic Dynamics Chapter 23 Predicting Chaos We have discussed methods for diagnosing chaos, but what about predicting the existence of chaos in a dynamical system. This is a much harder problem, and it seems that the

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

BLUE SKY CATASTROPHE IN SINGULARLY-PERTURBED SYSTEMS

BLUE SKY CATASTROPHE IN SINGULARLY-PERTURBED SYSTEMS BLUE SKY CATASTROPHE IN SINGULARLY-PERTURBED SYSTEMS ANDREY SHILNIKOV, LEONID SHILNIKOV, AND DMITRY TURAEV Abstract. We show that the blue sky catastrophe, which creates a stable periodic orbit whose length

More information

MCE693/793: Analysis and Control of Nonlinear Systems

MCE693/793: Analysis and Control of Nonlinear Systems MCE693/793: Analysis and Control of Nonlinear Systems Systems of Differential Equations Phase Plane Analysis Hanz Richter Mechanical Engineering Department Cleveland State University Systems of Nonlinear

More information

BIFURCATIONS OF SELF - EXCITATION REGIMES IN OSCILLATORY SYSTEMS WITH NONLINEAR ENERGY SINK

BIFURCATIONS OF SELF - EXCITATION REGIMES IN OSCILLATORY SYSTEMS WITH NONLINEAR ENERGY SINK BIFURCATIONS OF SELF - EXCITATION REGIMES IN OSCILLATORY SYSTEMS WITH NONLINEAR ENERGY SINK O.V.Gendelman,, T. Bar 1 Faculty of Mechanical Engineering, Technion Israel Institute of Technology Abstract:.

More information

Mathematical Analysis of Bursting Electrical Activity in Nerve and Endocrine Cells

Mathematical Analysis of Bursting Electrical Activity in Nerve and Endocrine Cells Mathematical Analysis of Bursting Electrical Activity in Nerve and Endocrine Cells Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University

More information

CHAPTER 1. Bifurcations in the Fast Dynamics of Neurons: Implications for Bursting

CHAPTER 1. Bifurcations in the Fast Dynamics of Neurons: Implications for Bursting CHAPTER 1 Bifurcations in the Fast Dynamics of Neurons: Implications for Bursting John Guckenheimer Mathematics Department, Cornell University Ithaca, NY 14853 Joseph H. Tien Center for Applied Mathematics,

More information

Relaxation Oscillation and Canard Explosion 1

Relaxation Oscillation and Canard Explosion 1 Journal of Differential Equations 74, 32368 (200) doi:0.006jdeq.2000.3929, available online at http:www.idealibrary.com on Relaxation Oscillation and Canard Explosion M. Krupa and P. Szmolyan Institut

More information

Lectures on Dynamical Systems. Anatoly Neishtadt

Lectures on Dynamical Systems. Anatoly Neishtadt Lectures on Dynamical Systems Anatoly Neishtadt Lectures for Mathematics Access Grid Instruction and Collaboration (MAGIC) consortium, Loughborough University, 2007 Part 3 LECTURE 14 NORMAL FORMS Resonances

More information

Long Term Dynamics for Two Three-Species Food Webs

Long Term Dynamics for Two Three-Species Food Webs Long Term Dynamics for Two Three-Species Food Webs B. Bockleman, B. Deng, E. Green, G. Hines, L. Lippett, J. Sherman September 2, 23 Abstract In this paper, we analyze two possible scenarios for food webs

More information

WIDELY SEPARATED FREQUENCIES IN COUPLED OSCILLATORS WITH ENERGY-PRESERVING QUADRATIC NONLINEARITY

WIDELY SEPARATED FREQUENCIES IN COUPLED OSCILLATORS WITH ENERGY-PRESERVING QUADRATIC NONLINEARITY WIDELY SEPARATED FREQUENCIES IN COUPLED OSCILLATORS WITH ENERGY-PRESERVING QUADRATIC NONLINEARITY J.M. TUWANKOTTA Abstract. In this paper we present an analysis of a system of coupled oscillators suggested

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

Lecture 5. Outline: Limit Cycles. Definition and examples How to rule out limit cycles. Poincare-Bendixson theorem Hopf bifurcations Poincare maps

Lecture 5. Outline: Limit Cycles. Definition and examples How to rule out limit cycles. Poincare-Bendixson theorem Hopf bifurcations Poincare maps Lecture 5 Outline: Limit Cycles Definition and examples How to rule out limit cycles Gradient systems Liapunov functions Dulacs criterion Poincare-Bendixson theorem Hopf bifurcations Poincare maps Limit

More information

Numerical Continuation and Normal Form Analysis of Limit Cycle Bifurcations without Computing Poincaré Maps

Numerical Continuation and Normal Form Analysis of Limit Cycle Bifurcations without Computing Poincaré Maps Numerical Continuation and Normal Form Analysis of Limit Cycle Bifurcations without Computing Poincaré Maps Yuri A. Kuznetsov joint work with W. Govaerts, A. Dhooge(Gent), and E. Doedel (Montreal) LCBIF

More information

Numerical Continuation of Bifurcations - An Introduction, Part I

Numerical Continuation of Bifurcations - An Introduction, Part I Numerical Continuation of Bifurcations - An Introduction, Part I given at the London Dynamical Systems Group Graduate School 2005 Thomas Wagenknecht, Jan Sieber Bristol Centre for Applied Nonlinear Mathematics

More information

A Remark on Singular Perturbations of Strongly Monotone Systems

A Remark on Singular Perturbations of Strongly Monotone Systems A Remark on Singular Perturbations of Strongly Monotone Systems Liming Wang and Eduardo D. Sontag Abstract This paper extends to singular perturbations of strongly monotone systems a result of Hirsch s

More information

2:1 Resonance in the delayed nonlinear Mathieu equation

2:1 Resonance in the delayed nonlinear Mathieu equation Nonlinear Dyn 007) 50:31 35 DOI 10.1007/s11071-006-916-5 ORIGINAL ARTICLE :1 Resonance in the delayed nonlinear Mathieu equation Tina M. Morrison Richard H. Rand Received: 9 March 006 / Accepted: 19 September

More information

DIFFERENTIAL GEOMETRY APPLIED TO DYNAMICAL SYSTEMS

DIFFERENTIAL GEOMETRY APPLIED TO DYNAMICAL SYSTEMS WORLD SCIENTIFIC SERIES ON NONLINEAR SCIENCE Series Editor: Leon O. Chua Series A Vol. 66 DIFFERENTIAL GEOMETRY APPLIED TO DYNAMICAL SYSTEMS Jean-Marc Ginoux Université du Sud, France World Scientific

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

Singular perturbation methods for slow fast dynamics

Singular perturbation methods for slow fast dynamics Nonlinear Dyn (2007) 50:747 753 DOI 10.1007/s11071-007-9236-z ORIGINAL ARTICLE Singular perturbation methods for slow fast dynamics Ferdinand Verhulst Received: 2 February 2006 / Accepted: 4 April 2006

More information

Dynamical modelling of systems of coupled oscillators

Dynamical modelling of systems of coupled oscillators Dynamical modelling of systems of coupled oscillators Mathematical Neuroscience Network Training Workshop Edinburgh Peter Ashwin University of Exeter 22nd March 2009 Peter Ashwin (University of Exeter)

More information

8.1 Bifurcations of Equilibria

8.1 Bifurcations of Equilibria 1 81 Bifurcations of Equilibria Bifurcation theory studies qualitative changes in solutions as a parameter varies In general one could study the bifurcation theory of ODEs PDEs integro-differential equations

More information

Computational Methods in Dynamical Systems and Advanced Examples

Computational Methods in Dynamical Systems and Advanced Examples and Advanced Examples Obverse and reverse of the same coin [head and tails] Jorge Galán Vioque and Emilio Freire Macías Universidad de Sevilla July 2015 Outline Lecture 1. Simulation vs Continuation. How

More information

Exponentially small splitting of separatrices of the pendulum: two different examples. Marcel Guardia, Carme Olivé, Tere M-Seara

Exponentially small splitting of separatrices of the pendulum: two different examples. Marcel Guardia, Carme Olivé, Tere M-Seara Exponentially small splitting of separatrices of the pendulum: two different examples Marcel Guardia, Carme Olivé, Tere M-Seara 1 A fast periodic perturbation of the pendulum We consider a non-autonomous

More information

Faraday waves, streaming flow, and relaxation oscillations in nearly circular containers

Faraday waves, streaming flow, and relaxation oscillations in nearly circular containers Faraday waves, streaming flow, and relaxation oscillations in nearly circular containers. Higuera and J. Porter E.T.S.I. Aeronáuticos, Universidad Politécnica de adrid, Plaza Cardenal Cisneros 3, 284 adrid,

More information

NBA Lecture 1. Simplest bifurcations in n-dimensional ODEs. Yu.A. Kuznetsov (Utrecht University, NL) March 14, 2011

NBA Lecture 1. Simplest bifurcations in n-dimensional ODEs. Yu.A. Kuznetsov (Utrecht University, NL) March 14, 2011 NBA Lecture 1 Simplest bifurcations in n-dimensional ODEs Yu.A. Kuznetsov (Utrecht University, NL) March 14, 2011 Contents 1. Solutions and orbits: equilibria cycles connecting orbits other invariant sets

More information

Homoclinic Orbits of Planar Maps: Asymptotics and Mel nikov Functions

Homoclinic Orbits of Planar Maps: Asymptotics and Mel nikov Functions Department of Mathematics Mathematical Sciences Homoclinic Orbits of Planar Maps: Asymptotics and Mel nikov Functions A thesis submitted for the degree of Master of Science Author: Dirk van Kekem Project

More information

BIFURCATIONS AND CHAOS IN A PERIODICALLY FORCED PROTOTYPE ADAPTIVE CONTROL SYSTEM 1

BIFURCATIONS AND CHAOS IN A PERIODICALLY FORCED PROTOTYPE ADAPTIVE CONTROL SYSTEM 1 KYBERNETIKA VOLUME 3 0 (1994), NUMBER 2, PAG ES 121-128 BIFURCATIONS AND CHAOS IN A PERIODICALLY FORCED PROTOTYPE ADAPTIVE CONTROL SYSTEM 1 YURI A. KUZNETSOV AND CARLO PICCARDI An adaptive control system

More information

A Mathematical Study of Electrical Bursting in Pituitary Cells

A Mathematical Study of Electrical Bursting in Pituitary Cells A Mathematical Study of Electrical Bursting in Pituitary Cells Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Collaborators on

More information

11 Chaos in Continuous Dynamical Systems.

11 Chaos in Continuous Dynamical Systems. 11 CHAOS IN CONTINUOUS DYNAMICAL SYSTEMS. 47 11 Chaos in Continuous Dynamical Systems. Let s consider a system of differential equations given by where x(t) : R R and f : R R. ẋ = f(x), The linearization

More information