Consider the equation of the quadratic map. x n+1 = a ( x n ) 2. The graph for 0 < a < 2 looks like:

Size: px
Start display at page:

Download "Consider the equation of the quadratic map. x n+1 = a ( x n ) 2. The graph for 0 < a < 2 looks like:"

Transcription

1 The mathematics behind the quadratic map mirrors that of the system of semiconductor lasers. It is a basic example of a chaotic system that can be synchronized through coupling [4]. By definition, a map f is a generated sequence x n using a recursion x n+1 = f( x n ). f : R m R m. Consider the equation of the quadratic map x n+1 = a ( x n ) The graph for 0 < a < looks like: In the above figure we notice that there are areas on the graph where it splits. This is called bifurcation and it occurs at certain fixed points. Our fixed points are x n such that f( x n ) = x n. Analysis of fixed points helps describe the graph. In the neighborhood around one of our fixed points, if the map is iterated, the solution will act in 1 of ways. It will be attracted to the fixed point or repelled from it. (Attraction to the fixed point) (Repulsion from the fixed point)

2 In the case of the quadratic map, there is repulsion and attraction. If there is attraction to the fixed point, the fixed point is stable. If there is repulsion from the fixed point, the fixed point is unstable. In the case of the laser systems, the stable fixed points identify where laser activity doesn t change. In order to get a clear picture of what goes on in the quadratic map, the fixed points must be identified and their stability analyzed. Linearization is used. If x is a fixed point, so and x = a x 0 = x + x - a x ± = -1+ (1+4a) 1\ Are these fixed points stable? That is, is there attraction to the fixed points in the neighborhoods around them? Let x n = x ± + δ n, where δ is a small distance. Then x n+1 becomes x n+1 = a x n = a (x + δ n ) = a (x + δ n x + δ n ) = a x - δ n x - δ n Because x n+1 = x + δ n+1 and x = a - x, x + δ n+1 = x - δ n x - δ n Because δ n is a small length and δ n is even smaller, they are disregarded. Dropping higher ordered terms is called linearization. So, x + δ n+1 = x - δ n x - δ n δ n+1 = - δ n x

3 This is the equation that determines the stability of x. If δ n+1 < δ n, then there is attraction towards x and x is stable. If δ n+1 > δ n, then there is repulsion away from x and x is unstable. Since a, in our equation x = a - x, can be any constant, the value of a is crucial in determining the stability of x. Solving for a using our fixed points is necessary. x = -1± (1+4a) 1\ δ n+1 = δ n -1 - (1+4a) 1\ If the multiplier -1 - (1+4a) 1\ < 1 then x is stable. Solving for a, Since 0 < a <, x is stable for a < ¾. Since there is no a > 0 that satisfies -1 ± (1+4a) 1\ < 1 -¼ < a < ¾. x - =-1 - (1+4a) 1\ < 1 It is always unstable; and thus the only stable fixed point is x + = -1+ (1+4a) 1\ for a < ¾. The preceding figure shows that for a > ¾ the values of the map settle down to the period two behavior. Its values alternate. This means x n+ = f(f(x n )) = x n. Now we need to find fixed points for the twice iterated map. To do this, the relationship between x n+ and x n must be analyzed. Plug in (a x ) into the quadratic equation for x. This yields x = a (a - ax + x 4 ) 0 = a a +ax -x 4 -x We already know roots for this equation so we can divide

4 x + x a x 4 + 0x 3 x + ax + x + ( a 1) x a + a So to find the other two roots the quadratic formula is used on a - x + x - 1 = 0. This yields x ± = -1 + (4a - 3) 1\ Note, a > ¾ in order for x to be real. Which fixed points of the second iteration are stable? The same procedure, linearization, is used here. x n+ = a (a - ax n + x n 4 ) Since x = x + δ n, x n+ = x ± + δ n+ = a (a - ax n + x n 4 ) x ± + δ n+ = a a + a (x + δ n ) (x + δ n ) 4 =a-a -a(x +δ n x+δ n )+x 4 +4x 3 δn+6x δ n +4xδ n 3 +δ n 4 Everything multiplied by a δ n of degree higher than one can be neglected because of its small size. Thus, x + δ n+ = a-a -ax -4aδ n x+x 4 +4x 3 δ n Since x ± are fixed points f(f(x ± )) = x ±, we have x = a - a - ax + x 4 Yielding, δ n+ = -4aδ n x + 4x 3 δ n = (-4ax + 4x 3 )δ n The map is stable at x = x n+1 if -4ax + 4x 3 < 1 This is true iff ¾ < a < 1¼

5 The process of finding roots and determining stability can continue. However, to calculate more fixed points requires a computer. For each iteration n, the map has n fixed points. The system of the quadratic map is chaotic because it has the following characteristics. It is nonlinear. x n+1 = a ( x n ) can not be written in the form y = mx + b. It is deterministic. There is an equation that determines the behavior of the system. A very slight change value of x 0 can lead to significantly different behavior of the map The matlab code used to generate the map is as follows: % produce a plot of the set of values that the iteration settles % down to, showing 1, 4, 8 etc solutions as the value of a is varied % Invoke by typing gquad n0=5000; %Number of times to iterate to get past transient behavior n1=64; % number of values to plot for each a as=.01:.005:; % the range of values for a. A will vary from %.01 to in steps of size.005 plot(as,as,'linestyle','none'); %This is a dummy call to set % up a figure that points will be added to. xlim([0,]) % set the x limits of the plot

6 ylim([-.5,.5]); % set the y limits for a=as % loop over the values of a x=0; % initial value of x for j=1:n0 x=a-x^; % iterate the map n0 times, transient for j=1:n1 x=a-x^; line(a,x,'linestyle','none','marker','.','markersize',.01); % the line command here puts a dot at the a,x position in the plot % this is a bit more complicated than necessary, but runs faster % than the easier way (using hold on; plot(a,x,'.')) The quadratic map can be synchronized through coupling. We can couple two quadratic maps with a coupling coefficient δ. Each map uses as its input a weighted average of its own variable and the other variable. x n+1 = a - ((1 δ) x n + δ y n ) y n+1 = a - (δx n + (1 δ) y n ) We want to determine when x n y n 0. This is when the maps synchronize. If we let S n be the equation for the map and U n determine the amount of synchronization we have S n = x n + y n and U n = y n - x n

7 When δ = 0, if a is in the chaotic region then by definition a small U 0 will grow. On the other hand if δ =.5 and U n = 0, with n 1 we have synchronization. As we vary δ from 0 to.5,we must go from unsynchronization to synchronization.

8 Notice as δ goes from 0 to.5, U n = x-y goes to 0. Also as δ gets larger a has to be larger for the maps to synchronize. The matlab code used to generate the coupled map is function gcquad(d) % this is a function you can invoke by typing % gcquad(.) or gcquad(.4) etc. % the d value is the parameter that controls the amount of coupling of the % two quadratic maps % the program will produce a plot showing the behavior of y- x using the % value of d specified as the value of a varies from.01 to n0=5000; n1=64; as=.01:.005:; plot(as,as,'linestyle','none'); xlim([0,]) ylim([-3,3]); for a=as x=0; % initial value for x y=1; % initial value for y c=1-d; % since c+d=1, c=1-d for j=1:n0 % iterate both maps (with coupling) n0 times x=a-(c*x+d*y)^; y=a-(c*y+d*x)^; for j=1:n1 % iterate both maps n1 times, and plot the values of y-x x=a-(c*x+d*y)^;

9 y=a-(c*y+d*x)^; line(a,yx,'linestyle','none','marker','.','markersize',.01); We can use linearization to analyze the behavior of the coupled maps. Synchronization occurs when U n = 0. Because this is a chaotic system, if x 0 doesn t equal y 0 U n becomes large in comparison to 1. If x 0 = y 0 then U n will begin at and stay at 0. If δ = 0 and a is large there will never be coupling. Subbing in S n and U n into the coupled map, x n+1 = S n - U n y n+1 = S n + U n So the coupled map becomes S n+1 - U n+1 = a - (S n + (1 δ) U n ) S n+1 + U n+1 = a (S n -(1 δ) U n ) U n is assumed small but S n is not; we drop the terms containing U n,etc. that is, we linearize. S n+1 = a- S n Subtracting these equations and applying linearization yields U n+1 = ( δ-1)s n U n S n+1 = a- S n is the system of the coupled maps and U n+1 = ( δ-1)s n U n describes the difference between the maps. Applying this formula repeatedly we get: U n = ( δ-1)s n-1 U n-1 = ( δ-1)s n-1 ( δ-1)s n- U n- = ( δ-1)s n-1 ( δ-1)s n- ( δ-1)s n-3 U n-3 Eventually we obtain U n = (( δ-1)) n [S n-1 S n- S n-3 S 0 ]U 0

10 It is interesting to note that (( δ-1)) n is depent on δ and [S n-1 S n- S n-3 S 0 ] is depent on a. To see whether or not there is synchronization, the relationship between U n and U 0 is analyzed. If (( δ-1)) n [S n-1 S n- S n-3 S 0 ] < 0 the system will synchronize. If (( δ-1)) n [S n-1 S n- S n-3 S 0 ] >0 the system will not. can be rewritten as U n = (( δ-1)) n [S n-1 S n- S n-3 S 0 ]U 0 U n = [(( δ-1))[s n-1 S n- S n-3 S 0 ] 1/n ] n U 0 The multiplier [(( δ-1))[s n-1 S n- S n-3 S 0 ] 1/n ] n has two parts. ( δ-1) may shrink U = x-y; and [[S n-1 S n- S n-3 S 0 ] 1/n ] n causes chaos. This is because δ pairs the two maps and as δ grows to its limit the maps synchronize. Looking at the special case δ = 0 uncoupled maps we see that the factor is -[S n-1 S n- S n-3 S 0 ] 1/n and so if its absolute value is > 1, x-y grows, i.e. it is chaotic. This multiplier measures the rate that the small variation in initial conditions grows. It is the chaotic-ness when δ >0, that we can balance. It balances exactly when [(( δ-1))[s n-1 S n- S n-3 S 0 ] 1/n ] n = 1. This tells us what δ critical is. At this time it is not clear how [S n-1 S n- S n-3 S 0 ] 1/n ] n deps on a. Future Plans In further research, I would like to pursue the following: discovering how [S n-1 S n- S n- 3 S 0 ] 1/n ] n deps on a, applying the analysis used to study the quadratic map to the laser system, learning more about the physics behind lasers, and understanding the mathematics that model their behavior. The patience that Dr. Indik and Josh Soneson possess is unparalleled. I am very grateful for all that they have taught me.

2 Problem Set 2 Graphical Analysis

2 Problem Set 2 Graphical Analysis 2 PROBLEM SET 2 GRAPHICAL ANALYSIS 2 Problem Set 2 Graphical Analysis 1. Use graphical analysis to describe all orbits of the functions below. Also draw their phase portraits. (a) F(x) = 2x There is only

More information

MAT335H1F Lec0101 Burbulla

MAT335H1F Lec0101 Burbulla Fall 2011 Q 2 (x) = x 2 2 Q 2 has two repelling fixed points, p = 1 and p + = 2. Moreover, if I = [ p +, p + ] = [ 2, 2], it is easy to check that p I and Q 2 : I I. So for any seed x 0 I, the orbit of

More information

Partial Fraction Decomposition

Partial Fraction Decomposition Partial Fraction Decomposition As algebra students we have learned how to add and subtract fractions such as the one show below, but we probably have not been taught how to break the answer back apart

More information

Liapunov Exponent. September 19, 2011

Liapunov Exponent. September 19, 2011 Liapunov Exponent September 19, 2011 1 Introduction At times, it is difficult to see whether a system is chaotic or not. We can use the Liapunov Exponent to check if an orbit is stable, which will give

More information

Undergraduate Research Project

Undergraduate Research Project Undergraduate Research Project Department of Mathematics The University of Arizona Dynamic Systems and Chaos (Kenny Headington, Ivan Barrientos, and Dorian Smith) Final Report Under the supervision of

More information

Lecture 10: Powers of Matrices, Difference Equations

Lecture 10: Powers of Matrices, Difference Equations Lecture 10: Powers of Matrices, Difference Equations Difference Equations A difference equation, also sometimes called a recurrence equation is an equation that defines a sequence recursively, i.e. each

More information

Lecture 7. Root finding I. 1 Introduction. 2 Graphical solution

Lecture 7. Root finding I. 1 Introduction. 2 Graphical solution 1 Introduction Lecture 7 Root finding I For our present purposes, root finding is the process of finding a real value of x which solves the equation f (x)=0. Since the equation g x =h x can be rewritten

More information

Bifurcations in the Quadratic Map

Bifurcations in the Quadratic Map Chapter 14 Bifurcations in the Quadratic Map We will approach the study of the universal period doubling route to chaos by first investigating the details of the quadratic map. This investigation suggests

More information

Chapter 1: January 26 January 30

Chapter 1: January 26 January 30 Chapter : January 26 January 30 Section.7: Inequalities As a diagnostic quiz, I want you to go through the first ten problems of the Chapter Test on page 32. These will test your knowledge of Sections.

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

Systems of Linear Equations and Inequalities

Systems of Linear Equations and Inequalities Systems of Linear Equations and Inequalities Alex Moore February 4, 017 1 What is a system? Now that we have studied linear equations and linear inequalities, it is time to consider the question, What

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

MATH 415, WEEKS 14 & 15: 1 Recurrence Relations / Difference Equations

MATH 415, WEEKS 14 & 15: 1 Recurrence Relations / Difference Equations MATH 415, WEEKS 14 & 15: Recurrence Relations / Difference Equations 1 Recurrence Relations / Difference Equations In many applications, the systems are updated in discrete jumps rather than continuous

More information

Objective. Single population growth models

Objective. Single population growth models Objective Single population growth models We are given a table with the population census at different time intervals between a date a and a date b, and want to get an expression for the population. This

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

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

You try: What is the equation of the line on the graph below? What is the equation of the line on the graph below?

You try: What is the equation of the line on the graph below? What is the equation of the line on the graph below? 1 What is the equation of the line on the graph below? 2 3 1a What is the equation of the line on the graph below? y-intercept Solution: To write an equation in slope-intercept form, identify the slope

More information

THE MEAN-MEDIAN MAP MARC CHAMBERLAND AND MARIO MARTELLI

THE MEAN-MEDIAN MAP MARC CHAMBERLAND AND MARIO MARTELLI THE MEAN-MEDIAN MAP MARC CHAMBERLAND AND MARIO MARTELLI 1. Introduction In the last few decades mathematicians have discovered very simple functions which induce spectacularly intricate dynamics. For example,

More information

MATH 614 Dynamical Systems and Chaos Lecture 2: Periodic points. Hyperbolicity.

MATH 614 Dynamical Systems and Chaos Lecture 2: Periodic points. Hyperbolicity. MATH 614 Dynamical Systems and Chaos Lecture 2: Periodic points. Hyperbolicity. Orbit Let f : X X be a map defining a discrete dynamical system. We use notation f n for the n-th iteration of f defined

More information

For the given equation, first find the x-intercept by setting y = 0: Next, find the y-intercept by setting x = 0:

For the given equation, first find the x-intercept by setting y = 0: Next, find the y-intercept by setting x = 0: 1. Find the x- and y-intercepts and graph the equation. 5x + 6y = 30 To find the x- and y-intercepts, set one variable equal to 0, and solve for the other variable. To find the x-intercept, set y = 0 and

More information

Chapter 2 Linear Equations and Inequalities in One Variable

Chapter 2 Linear Equations and Inequalities in One Variable Chapter 2 Linear Equations and Inequalities in One Variable Section 2.1: Linear Equations in One Variable Section 2.3: Solving Formulas Section 2.5: Linear Inequalities in One Variable Section 2.6: Compound

More information

Lecture2 The implicit function theorem. Bifurcations.

Lecture2 The implicit function theorem. Bifurcations. Lecture2 The implicit function theorem. Bifurcations. 1 Review:Newton s method. The existence theorem - the assumptions. Basins of attraction. 2 The implicit function theorem. 3 Bifurcations of iterations.

More information

Mechanisms of Chaos: Stable Instability

Mechanisms of Chaos: Stable Instability Mechanisms of Chaos: Stable Instability Reading for this lecture: NDAC, Sec. 2.-2.3, 9.3, and.5. Unpredictability: Orbit complicated: difficult to follow Repeatedly convergent and divergent Net amplification

More information

Math 1 Unit 1 EOC Review

Math 1 Unit 1 EOC Review Math 1 Unit 1 EOC Review Name: Solving Equations (including Literal Equations) - Get the variable to show what it equals to satisfy the equation or inequality - Steps (each step only where necessary):

More information

( ) c. m = 0, 1 2, 3 4

( ) c. m = 0, 1 2, 3 4 G Linear Functions Probably the most important concept from precalculus that is required for differential calculus is that of linear functions The formulas you need to know backwards and forwards are:

More information

4 Problem Set 4 Bifurcations

4 Problem Set 4 Bifurcations 4 PROBLEM SET 4 BIFURCATIONS 4 Problem Set 4 Bifurcations 1. Each of the following functions undergoes a bifurcation at the given parameter value. In each case use analytic or graphical techniques to identify

More information

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of

Pre-calculus is the stepping stone for Calculus. It s the final hurdle after all those years of Chapter 1 Beginning at the Very Beginning: Pre-Pre-Calculus In This Chapter Brushing up on order of operations Solving equalities Graphing equalities and inequalities Finding distance, midpoint, and slope

More information

COSMOS: Making Robots and Making Robots Intelligent Lecture 3: Introduction to discrete-time dynamics

COSMOS: Making Robots and Making Robots Intelligent Lecture 3: Introduction to discrete-time dynamics COSMOS: Making Robots and Making Robots Intelligent Lecture 3: Introduction to discrete-time dynamics Jorge Cortés and William B. Dunbar June 3, 25 Abstract In this and the coming lecture, we will introduce

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

x is also called the abscissa y is also called the ordinate "If you can create a t-table, you can graph anything!"

x is also called the abscissa y is also called the ordinate If you can create a t-table, you can graph anything! Senior Math Section 6-1 Notes Rectangular Coordinates and Lines Label the following 1. quadrant 1 2. quadrant 2 3. quadrant 3 4. quadrant 4 5. origin 6. x-axis 7. y-axis 8. Ordered Pair (x, y) at (2, 1)

More information

Physics 127b: Statistical Mechanics. Renormalization Group: 1d Ising Model. Perturbation expansion

Physics 127b: Statistical Mechanics. Renormalization Group: 1d Ising Model. Perturbation expansion Physics 17b: Statistical Mechanics Renormalization Group: 1d Ising Model The ReNormalization Group (RNG) gives an understanding of scaling and universality, and provides various approximation schemes to

More information

Modeling Prey and Predator Populations

Modeling Prey and Predator Populations Modeling Prey and Predator Populations Alison Pool and Lydia Silva December 15, 2006 Abstract In this document, we will explore the modeling of two populations based on their relation to one another. Specifically

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 9 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

A-Level Notes CORE 1

A-Level Notes CORE 1 A-Level Notes CORE 1 Basic algebra Glossary Coefficient For example, in the expression x³ 3x² x + 4, the coefficient of x³ is, the coefficient of x² is 3, and the coefficient of x is 1. (The final 4 is

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

Math 1 Unit 1 EOC Review

Math 1 Unit 1 EOC Review Math 1 Unit 1 EOC Review Solving Equations (including Literal Equations) - Get the variable to show what it equals to satisfy the equation or inequality - Steps (each step only where necessary): 1. Distribute

More information

Infinity Unit 2: Chaos! Dynamical Systems

Infinity Unit 2: Chaos! Dynamical Systems Infinity Unit 2: Chaos! Dynamical Systems Iterating Linear Functions These questions are about iterating f(x) = mx + b. Seed: x 1. Orbit: x 1, x 2, x 3, For each question, give examples and a symbolic

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

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 9 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Summary of Derivative Tests

Summary of Derivative Tests Summary of Derivative Tests Note that for all the tests given below it is assumed that the function f is continuous. Critical Numbers Definition. A critical number of a function f is a number c in the

More information

Section 7.1 Quadratic Equations

Section 7.1 Quadratic Equations Section 7.1 Quadratic Equations INTRODUCTION In Chapter 2 you learned about solving linear equations. In each of those, the highest power of any variable was 1. We will now take a look at solving quadratic

More information

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) May 2010

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) May 2010 Link to past paper on OCR website: http://www.mei.org.uk/files/papers/c110ju_ergh.pdf These solutions are for your personal use only. DO NOT photocopy or pass on to third parties. If you are a school or

More information

Chaos Theory. Namit Anand Y Integrated M.Sc.( ) Under the guidance of. Prof. S.C. Phatak. Center for Excellence in Basic Sciences

Chaos Theory. Namit Anand Y Integrated M.Sc.( ) Under the guidance of. Prof. S.C. Phatak. Center for Excellence in Basic Sciences Chaos Theory Namit Anand Y1111033 Integrated M.Sc.(2011-2016) Under the guidance of Prof. S.C. Phatak Center for Excellence in Basic Sciences University of Mumbai 1 Contents 1 Abstract 3 1.1 Basic Definitions

More information

Linear Algebra, Summer 2011, pt. 2

Linear Algebra, Summer 2011, pt. 2 Linear Algebra, Summer 2, pt. 2 June 8, 2 Contents Inverses. 2 Vector Spaces. 3 2. Examples of vector spaces..................... 3 2.2 The column space......................... 6 2.3 The null space...........................

More information

Objective. The student will be able to: solve systems of equations using elimination with multiplication. SOL: A.9

Objective. The student will be able to: solve systems of equations using elimination with multiplication. SOL: A.9 Objective The student will be able to: solve systems of equations using elimination with multiplication. SOL: A.9 Designed by Skip Tyler, Varina High School Solving Systems of Equations So far, we have

More information

Systems of Nonlinear Equations and Inequalities: Two Variables

Systems of Nonlinear Equations and Inequalities: Two Variables Systems of Nonlinear Equations and Inequalities: Two Variables By: OpenStaxCollege Halley s Comet ([link]) orbits the sun about once every 75 years. Its path can be considered to be a very elongated ellipse.

More information

Updated: January 16, 2016 Calculus II 7.4. Math 230. Calculus II. Brian Veitch Fall 2015 Northern Illinois University

Updated: January 16, 2016 Calculus II 7.4. Math 230. Calculus II. Brian Veitch Fall 2015 Northern Illinois University Math 30 Calculus II Brian Veitch Fall 015 Northern Illinois University Integration of Rational Functions by Partial Fractions From algebra, we learned how to find common denominators so we can do something

More information

September 12, Math Analysis Ch 1 Review Solutions. #1. 8x + 10 = 4x 30 4x 4x 4x + 10 = x = x = 10.

September 12, Math Analysis Ch 1 Review Solutions. #1. 8x + 10 = 4x 30 4x 4x 4x + 10 = x = x = 10. #1. 8x + 10 = 4x 30 4x 4x 4x + 10 = 30 10 10 4x = 40 4 4 x = 10 Sep 5 7:00 AM 1 #. 4 3(x + ) = 5x 7(4 x) 4 3x 6 = 5x 8 + 7x CLT 3x = 1x 8 +3x +3x = 15x 8 +8 +8 6 = 15x 15 15 x = 6 15 Sep 5 7:00 AM #3.

More information

The logistic function

The logistic function The logistic function The logistic function is often used to fit a measured psychometric function. This is because it has the right general properties. It starts at 0 and increases to in the sigmoidal

More information

Polynomials and Polynomial Equations

Polynomials and Polynomial Equations Polynomials and Polynomial Equations A Polynomial is any expression that has constants, variables and exponents, and can be combined using addition, subtraction, multiplication and division, but: no division

More information

Vertex Form of a Parabola

Vertex Form of a Parabola Verte Form of a Parabola In this investigation ou will graph different parabolas and compare them to what is known as the Basic Parabola. THE BASIC PARABOLA Equation = 2-3 -2-1 0 1 2 3 verte? What s the

More information

L Hopital s Rule. We will use our knowledge of derivatives in order to evaluate limits that produce indeterminate forms.

L Hopital s Rule. We will use our knowledge of derivatives in order to evaluate limits that produce indeterminate forms. L Hopital s Rule We will use our knowledge of derivatives in order to evaluate its that produce indeterminate forms. Main Idea x c f x g x If, when taking the it as x c, you get an INDETERMINATE FORM..

More information

ONE DIMENSIONAL CHAOTIC DYNAMICAL SYSTEMS

ONE DIMENSIONAL CHAOTIC DYNAMICAL SYSTEMS Journal of Pure and Applied Mathematics: Advances and Applications Volume 0 Number 0 Pages 69-0 ONE DIMENSIONAL CHAOTIC DYNAMICAL SYSTEMS HENA RANI BISWAS Department of Mathematics University of Barisal

More information

Intermediate Algebra

Intermediate Algebra Intermediate Algebra Anne Gloag Andrew Gloag Mara Landers Remixed by James Sousa Say Thanks to the Authors Click http://www.ck12.org/saythanks (No sign in required) www.ck12.org To access a customizable

More information

One dimensional Maps

One dimensional Maps Chapter 4 One dimensional Maps The ordinary differential equation studied in chapters 1-3 provide a close link to actual physical systems it is easy to believe these equations provide at least an approximate

More information

For those who want to skip this chapter and carry on, that s fine, all you really need to know is that for the scalar expression: 2 H

For those who want to skip this chapter and carry on, that s fine, all you really need to know is that for the scalar expression: 2 H 1 Matrices are rectangular arrays of numbers. hey are usually written in terms of a capital bold letter, for example A. In previous chapters we ve looed at matrix algebra and matrix arithmetic. Where things

More information

Solving Quadratic & Higher Degree Equations

Solving Quadratic & Higher Degree Equations Chapter 7 Solving Quadratic & Higher Degree Equations Sec 1. Zero Product Property Back in the third grade students were taught when they multiplied a number by zero, the product would be zero. In algebra,

More information

Here are the exams I wrote when teaching Math 115 in Fall 2018 at Ferris State University. Each exam is followed by its solutions.

Here are the exams I wrote when teaching Math 115 in Fall 2018 at Ferris State University. Each exam is followed by its solutions. Here are the exams I wrote when teaching Math 5 in Fall 208 at Ferris State University. Each exam is followed by its solutions. Fall 208 Exam. (a) Find the slope of the line passing through the points

More information

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

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

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

Physics 411: Homework 3

Physics 411: Homework 3 Physics 411: Homework 3 Because of the cancellation of class on January 28, this homework is a double-length homework covering two week s material, and you have two weeks to do it. It is due in class onthursday,

More information

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Introduction: In applications, it often turns out that one cannot solve the differential equations or antiderivatives that show up in the real

More information

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) June 2010

Mathematics (MEI) Advanced Subsidiary GCE Core 1 (4751) June 2010 Link to past paper on OCR website: www.ocr.org.uk The above link takes you to OCR s website. From there you click QUALIFICATIONS, QUALIFICATIONS BY TYPE, AS/A LEVEL GCE, MATHEMATICS (MEI), VIEW ALL DOCUMENTS,

More information

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x Factoring trinomials In general, we are factoring ax + bx + c where a, b, and c are real numbers. To factor an expression means to write it as a product of factors instead of a sum of terms. The expression

More information

Lesson 11-1: Parabolas

Lesson 11-1: Parabolas Lesson -: Parabolas The first conic curve we will work with is the parabola. You may think that you ve never really used or encountered a parabola before. Think about it how many times have you been going

More information

THE TRANSPOSING METHOD IN SOLVING ALGEBRAIC EQUATIONS (Basic Step to improve math skills of high school students) (by Nghi H. Nguyen Jan 06, 2016)

THE TRANSPOSING METHOD IN SOLVING ALGEBRAIC EQUATIONS (Basic Step to improve math skills of high school students) (by Nghi H. Nguyen Jan 06, 2016) THE TRANSPOSING METHOD IN SOLVING ALGEBRAIC EQUATIONS (Basic Step to improve math skills of high school students) (by Nghi H. Nguyen Jan 06, 2016) Most of the immigrant students who first began learning

More information

5.3. Polynomials and Polynomial Functions

5.3. Polynomials and Polynomial Functions 5.3 Polynomials and Polynomial Functions Polynomial Vocabulary Term a number or a product of a number and variables raised to powers Coefficient numerical factor of a term Constant term which is only a

More information

A quadratic expression is a mathematical expression that can be written in the form 2

A quadratic expression is a mathematical expression that can be written in the form 2 118 CHAPTER Algebra.6 FACTORING AND THE QUADRATIC EQUATION Textbook Reference Section 5. CLAST OBJECTIVES Factor a quadratic expression Find the roots of a quadratic equation A quadratic expression is

More information

Intermediate Algebra Textbook for Skyline College

Intermediate Algebra Textbook for Skyline College Intermediate Algebra Textbook for Skyline College Andrew Gloag Anne Gloag Mara Landers Say Thanks to the Authors Click http://www.ck12.org/saythanks (No sign in required) www.ck12.org To access a customizable

More information

Ch. 7.6 Squares, Squaring & Parabolas

Ch. 7.6 Squares, Squaring & Parabolas Ch. 7.6 Squares, Squaring & Parabolas Learning Intentions: Learn about the squaring & square root function. Graph parabolas. Compare the squaring function with other functions. Relate the squaring function

More information

Conceptual Explanations: Radicals

Conceptual Explanations: Radicals Conceptual Eplanations: Radicals The concept of a radical (or root) is a familiar one, and was reviewed in the conceptual eplanation of logarithms in the previous chapter. In this chapter, we are going

More information

CHAOS -SOME BASIC CONCEPTS

CHAOS -SOME BASIC CONCEPTS CHAOS -SOME BASIC CONCEPTS Anders Ekberg INTRODUCTION This report is my exam of the "Chaos-part" of the course STOCHASTIC VIBRATIONS. I m by no means any expert in the area and may well have misunderstood

More information

2017, James Sethna, all rights reserved. This exercise was developed in collaboration with Christopher Myers.

2017, James Sethna, all rights reserved. This exercise was developed in collaboration with Christopher Myers. Invariant measures (Sethna, "Entropy, Order Parameters, and Complexity", ex. 4.3) 2017, James Sethna, all rights reserved. This exercise was developed in collaboration with Christopher Myers. Liouville's

More information

First Derivative Test

First Derivative Test MA 2231 Lecture 22 - Concavity and Relative Extrema Wednesday, November 1, 2017 Objectives: Introduce the Second Derivative Test and its limitations. First Derivative Test When looking for relative extrema

More information

Distribution of Delay Times in Laser Excited CdSe-ZnS Core-Shell Quantum Dots

Distribution of Delay Times in Laser Excited CdSe-ZnS Core-Shell Quantum Dots Distribution of Delay Times in Laser Excited CdSe-ZnS Core-Shell Quantum Dots Andrei Vajiac Indiana University South Bend Mathematics, Computer Science Advisor: Pavel Frantsuzov, Physics Abstract This

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

2. Chapter 1 Homework

2. Chapter 1 Homework 1. Math 210 Finite Mathematics Chapter 1.1 Area, Pythagorean Theorem, Circles Chapter 1.2 Lines and Slope Chapter 1.4 Intesection of Two Lines Chapter 2.1 Systems of Equations Professor Richard Blecksmith

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

5.5. The Substitution Rule

5.5. The Substitution Rule INTEGRALS 5 INTEGRALS 5.5 The Substitution Rule In this section, we will learn: To substitute a new variable in place of an existing expression in a function, making integration easier. INTRODUCTION Due

More information

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION

CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION CHAPTER 7 : BODE PLOTS AND GAIN ADJUSTMENTS COMPENSATION Objectives Students should be able to: Draw the bode plots for first order and second order system. Determine the stability through the bode plots.

More information

Let V be a vector space, and let X be a subset. We say X is a Basis if it is both linearly independent and a generating set.

Let V be a vector space, and let X be a subset. We say X is a Basis if it is both linearly independent and a generating set. Basis Let V be a vector space, and let X be a subset. We say X is a Basis if it is both linearly independent and a generating set. The first example of a basis is the standard basis for R n e 1 = (1, 0,...,

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

Subtract 6 to both sides Divide by 2 on both sides. Cross Multiply. Answer: x = -9

Subtract 6 to both sides Divide by 2 on both sides. Cross Multiply. Answer: x = -9 Subtract 6 to both sides Divide by 2 on both sides Answer: x = -9 Cross Multiply. = 3 Distribute 2 to parenthesis Combine like terms Subtract 4x to both sides Subtract 10 from both sides x = -20 Subtract

More information

Unit Ten Summary Introduction to Dynamical Systems and Chaos

Unit Ten Summary Introduction to Dynamical Systems and Chaos Unit Ten Summary Introduction to Dynamical Systems Dynamical Systems A dynamical system is a system that evolves in time according to a well-defined, unchanging rule. The study of dynamical systems is

More information

Chaos in Dynamical Systems. LIACS Natural Computing Group Leiden University

Chaos in Dynamical Systems. LIACS Natural Computing Group Leiden University Chaos in Dynamical Systems Overview Introduction: Modeling Nature! Example: Logistic Growth Fixed Points Bifurcation Diagrams Application Examples 2 INTRODUCTION 3 Linear and Non-linear dynamic systems

More information

3 Polynomial and Rational Functions

3 Polynomial and Rational Functions 3 Polynomial and Rational Functions 3.1 Polynomial Functions and their Graphs So far, we have learned how to graph polynomials of degree 0, 1, and. Degree 0 polynomial functions are things like f(x) =,

More information

1 Continuity and Limits of Functions

1 Continuity and Limits of Functions Week 4 Summary This week, we will move on from our discussion of sequences and series to functions. Even though sequences and functions seem to be very different things, they very similar. In fact, we

More information

CHAOS AND DYNAMICS KELSEY MACE

CHAOS AND DYNAMICS KELSEY MACE CHAOS AND DYNAMICS KELSEY MACE Abstract. In this paper we will study chaos through the dynamics of the quadratic family of functions. We begin with an introduction to basic dynamical notions, including

More information

Zoology of Fatou sets

Zoology of Fatou sets Math 207 - Spring 17 - François Monard 1 Lecture 20 - Introduction to complex dynamics - 3/3: Mandelbrot and friends Outline: Recall critical points and behavior of functions nearby. Motivate the proof

More information

Introduction to Techniques for Counting

Introduction to Techniques for Counting Introduction to Techniques for Counting A generating function is a device somewhat similar to a bag. Instead of carrying many little objects detachedly, which could be embarrassing, we put them all in

More information

QUADRATIC FUNCTIONS AND MODELS

QUADRATIC FUNCTIONS AND MODELS QUADRATIC FUNCTIONS AND MODELS What You Should Learn Analyze graphs of quadratic functions. Write quadratic functions in standard form and use the results to sketch graphs of functions. Find minimum and

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

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

Chaos in the Dynamics of the Family of Mappings f c (x) = x 2 x + c

Chaos in the Dynamics of the Family of Mappings f c (x) = x 2 x + c IOSR Journal of Mathematics (IOSR-JM) e-issn: 78-578, p-issn: 319-765X. Volume 10, Issue 4 Ver. IV (Jul-Aug. 014), PP 108-116 Chaos in the Dynamics of the Family of Mappings f c (x) = x x + c Mr. Kulkarni

More information

MATH 614 Dynamical Systems and Chaos Lecture 3: Classification of fixed points.

MATH 614 Dynamical Systems and Chaos Lecture 3: Classification of fixed points. MATH 614 Dynamical Systems and Chaos Lecture 3: Classification of fixed points. Periodic points Definition. A point x X is called a fixed point of a map f : X X if f(x) = x. A point x X is called a periodic

More information

Numerical differentiation

Numerical differentiation Numerical differentiation Paul Seidel 1801 Lecture Notes Fall 011 Suppose that we have a function f(x) which is not given by a formula but as a result of some measurement or simulation (computer experiment)

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

René Thomas Université de Bruxelles. Frontier diagrams: a global view of the structure of phase space.

René Thomas Université de Bruxelles. Frontier diagrams: a global view of the structure of phase space. René Thomas Université de Bruxelles Frontier diagrams: a global view of the structure of phase space. We have the tools to identify and characterise steady states and trajectories. But WHY several steady

More information