Project 6.2 Phase Plane Portraits of Almost Linear Systems

Size: px
Start display at page:

Download "Project 6.2 Phase Plane Portraits of Almost Linear Systems"

Transcription

1 Project 6.2 Phase Plane Portraits of Almost Linear Sstems Interesting and complicated phase portraits often result from simple nonlinear perturbations of linear sstems. For instance, the figure below shows a phase plane portrait for the almost linear sstem d d = cos( + 1) = cos( + 1). (1) Among the seven critical points marked with dots, we see Apparent spiral points in the first and third quadrants of the -plane; Apparent saddle points in the second and fourth quadrants, plus another one on the positive -ais; A critical point of undetermined character on the negative -ais; and An apparentl "ver weak" spiral point at the origin -- meaning one that is approached ver slowl as t increases or decreases (according as it is a sink or a source). ' = - cos( + - 1) ' = cos( - + 1) Project

2 Some ODE software sstems can automaticall locate and classif critical points. For instance, Fig in the tet shows a screen produced b John Polking's MATLAB pplane program (cited in Project 6.1). It indicates that the fourth-quadrant critical point in the figure above has approimate coordinates (1.5708, ), and that the coefficient matri of the associated linear sstem has the positive eigenvalue λ and the negative eigenvalue λ It therefore follows from Theorem 2 in Section 6.2 that this critical point is, indeed, a saddle point of the almost linear sstem in (1). With a general computer algebra sstem, ou ma have to do a bit of work ourself or tell the computer precisel what to do in order to find and classif a critical point. In the sections below, we illustrate this procedure using Maple, Mathematica, and MATLAB. Once the critical-point coordinates a = , b = indicated above have been found, the substitution = u+ a, = v+ b ields the translated sstem du dv = ( v)cos( u v) = f( u, v) = ( u)cos( u v) = g( u, v). (2) If we substitute u = v = 0 in the Jacobian matri J = we get the coefficient matri A =! f u g u! f v g v " $ # of the linear sstem corresponding to the almost linear sstem in (2). " $# (3) (4) Alternativel, one can circumvent the translated sstem in (2) b looking at the Talor epansions f(, ) = D f( a, b)( a) + D f( a, b)( b) + g (, ) = Dgab (, )( a) + Dgab (, )( b) + (5) of the right-hand side functions in the original sstem (1), and retaining onl the linear terms in this epansion. We see from (5) that 172 Chapter 6

3 A =! Dfab (, ) Dfab (, ) Dgab (, ) Dgab (, ) " $# (6) is the coefficient matri of the linearization of the sstem (1) that results when we substitute u = a, v = b and retain onl the terms that are linear in u and v. In an event, we can then use our computer algebra sstem to find the eigenvalues λ and λ of the matri A, thereb verifing that the critical point (1.5708, ) of (1) is, indeed, a saddle point. Use a computer algebra sstem to find and classif similarl the other critical points of (1) indicated in the figure above. Then investigate similarl an almost linear sstem of our own construction. One convenient wa to construct such a sstem is to start with a linear or almost linear sstem and insert sine or cosine factors resembling the ones in (1). For instance: 1. = cos, = sin = + cos, = sin 3. = cos( 2 + ), = sin( 3) 4. = 2 cos( + ), = + 2 cos( ) Using Maple After we enter the right-hand side functions in (1), f := -*cos(+-1): g := *cos(--1): we can proceed to solve numericall for a solution near (1.5, 2): soln := fsolve({f=0,g=0}, {,}, =1..2, =-3..-1); { = , = } Thus our critical point (a, b) is given approimatel b a := rhs(soln[1]); b := rhs(soln[2]); a := b := To classif this critical point, we proceed to calculate first the partial derivatives Project

4 f := evalf(subs(=a,=b,diff(f,))): f := evalf(subs(=a,=b,diff(f,))): g := evalf(subs(=a,=b,diff(g,))): g := evalf(subs(=a,=b,diff(g,))): evaluated at (a, b), and then the Jacobian matri in (6): with(linalg): A := matri(2,2, [f,f,g,g]); Finall, its eigenvalues are given b eigenvals(a); , Thus the eigenvalues λ and λ are real with opposite signs, so the critical point (1.5708, ) is, indeed, a saddle point of the sstem in (1). Using Mathematica After we enter the right-hand side functions in (1), f = -*Cos[+-1]; g = *Cos[-+1]; we can proceed to solve numericall for a solution near (1.5, 2): soln = FindRoot[{f == 0, g == 0}, {,1.5}, {,-2}] { -> , -> } Thus our critical point (a, b) is given approimatel b a = /. soln b = /. soln To classif this critical point, we proceed to set up the Jacobian matri in (6), A = { {D[f,], D[f,]}, {D[g,], D[g,]}} /. {->a, ->b}; evaluated at (a, b), and calculate its eigenvalues 174 Chapter 6

5 Eigenvalues[A] { , } Thus the eigenvalues λ and λ are real with opposite signs, so the critical point (1.5708, ) is, indeed, a saddle point of the sstem in (1). Using MATLAB We want to solve the equations f(, ) = 0, g(, ) = 0 where f and g are the right-hand side functions in our sstem (1). However, the student edition of MATLAB does not include a function for the solution of sstems of equations. Our strateg is therefore to use the MATLAB function fminsearch to minimize the function h (, ) = f(, ) + g (, ) = cos( + 1) + cos( + 1) This function is defined as a function of the vector v = [;] b the m-file h.m consisting of the lines function z = h(v) = v(1); = v(2); z = (-*cos(+-1))^2 + (*cos(-+1))^2; Evidentl a minimal point where h(, )= 0 will be a critical point of the sstem in (1). Hence the commands soln = fminsearch('h',[1.5;-2]) soln = a = soln(1); b = soln(2); ield the approimate critical point (1.5708, ). To classif this critical point, we proceed to set up the Jacobian matri in (6). First we define the inline functions f = '-*cos(+-1)'; g = '*cos(-+1)'; calculate their partial derivatives f = diff(f,''); g = diff(g,''); f = diff(f,''); g = diff(g,''); and evaluate these partial derivatives at the point (a, b): Project

6 sms f = subs(f, {,}, {a,b}); f = subs(f, {,}, {a,b}); g = subs(g, {,}, {a,b}); g = subs(g, {,}, {a,b}); Then the eigenvalues of the Jacobian matri are given b A = [f f g g]; eig(a) ans = Thus the eigenvalues λ and λ are real with opposite signs, so the critical point (1.5708, ) is, indeed, a saddle point of the sstem in (1). 176 Chapter 6

Local Phase Portrait of Nonlinear Systems Near Equilibria

Local Phase Portrait of Nonlinear Systems Near Equilibria Local Phase Portrait of Nonlinear Sstems Near Equilibria [1] Consider 1 = 6 1 1 3 1, = 3 1. ( ) (a) Find all equilibrium solutions of the sstem ( ). (b) For each equilibrium point, give the linear approimating

More information

520 Chapter 9. Nonlinear Differential Equations and Stability. dt =

520 Chapter 9. Nonlinear Differential Equations and Stability. dt = 5 Chapter 9. Nonlinear Differential Equations and Stabilit dt L dθ. g cos θ cos α Wh was the negative square root chosen in the last equation? (b) If T is the natural period of oscillation, derive the

More information

Math 312 Lecture Notes Linearization

Math 312 Lecture Notes Linearization Math 3 Lecture Notes Linearization Warren Weckesser Department of Mathematics Colgate University 3 March 005 These notes discuss linearization, in which a linear system is used to approximate the behavior

More information

MAT 1275: Introduction to Mathematical Analysis. Graphs and Simplest Equations for Basic Trigonometric Functions. y=sin( x) Function

MAT 1275: Introduction to Mathematical Analysis. Graphs and Simplest Equations for Basic Trigonometric Functions. y=sin( x) Function MAT 275: Introduction to Mathematical Analsis Dr. A. Rozenblum Graphs and Simplest Equations for Basic Trigonometric Functions We consider here three basic functions: sine, cosine and tangent. For them,

More information

Math 214 Spring problem set (a) Consider these two first order equations. (I) dy dx = x + 1 dy

Math 214 Spring problem set (a) Consider these two first order equations. (I) dy dx = x + 1 dy Math 4 Spring 08 problem set. (a) Consider these two first order equations. (I) d d = + d (II) d = Below are four direction fields. Match the differential equations above to their direction fields. Provide

More information

Appendix: A Computer-Generated Portrait Gallery

Appendix: A Computer-Generated Portrait Gallery Appendi: A Computer-Generated Portrait Galler There are a number of public-domain computer programs which produce phase portraits for 2 2 autonomous sstems. One has the option of displaing the trajectories

More information

10.2 The Unit Circle: Cosine and Sine

10.2 The Unit Circle: Cosine and Sine 0. The Unit Circle: Cosine and Sine 77 0. The Unit Circle: Cosine and Sine In Section 0.., we introduced circular motion and derived a formula which describes the linear velocit of an object moving on

More information

0 as an eigenvalue. degenerate

0 as an eigenvalue. degenerate Math 1 Topics since the third exam Chapter 9: Non-linear Sstems of equations x1: Tpical Phase Portraits The structure of the solutions to a linear, constant coefficient, sstem of differential equations

More information

Math Notes on sections 7.8,9.1, and 9.3. Derivation of a solution in the repeated roots case: 3 4 A = 1 1. x =e t : + e t w 2.

Math Notes on sections 7.8,9.1, and 9.3. Derivation of a solution in the repeated roots case: 3 4 A = 1 1. x =e t : + e t w 2. Math 7 Notes on sections 7.8,9., and 9.3. Derivation of a solution in the repeated roots case We consider the eample = A where 3 4 A = The onl eigenvalue is = ; and there is onl one linearl independent

More information

10 Back to planar nonlinear systems

10 Back to planar nonlinear systems 10 Back to planar nonlinear sstems 10.1 Near the equilibria Recall that I started talking about the Lotka Volterra model as a motivation to stud sstems of two first order autonomous equations of the form

More information

Midterm 2. MAT17C, Spring 2014, Walcott

Midterm 2. MAT17C, Spring 2014, Walcott Mierm 2 MAT7C, Spring 24, Walcott Note: There are SEVEN questions. Points for each question are shown in a table below and also in parentheses just after each question (and part). Be sure to budget our

More information

Classification of Phase Portraits at Equilibria for u (t) = f( u(t))

Classification of Phase Portraits at Equilibria for u (t) = f( u(t)) Classification of Phase Portraits at Equilibria for u t = f ut Transfer of Local Linearized Phase Portrait Transfer of Local Linearized Stability How to Classify Linear Equilibria Justification of the

More information

4.317 d 4 y. 4 dx d 2 y dy. 20. dt d 2 x. 21. y 3y 3y y y 6y 12y 8y y (4) y y y (4) 2y y 0. d 4 y 26.

4.317 d 4 y. 4 dx d 2 y dy. 20. dt d 2 x. 21. y 3y 3y y y 6y 12y 8y y (4) y y y (4) 2y y 0. d 4 y 26. 38 CHAPTER 4 HIGHER-ORDER DIFFERENTIAL EQUATIONS sstems are also able, b means of their dsolve commands, to provide eplicit solutions of homogeneous linear constant-coefficient differential equations.

More information

1 HOMOGENEOUS TRANSFORMATIONS

1 HOMOGENEOUS TRANSFORMATIONS HOMOGENEOUS TRANSFORMATIONS Purpose: The purpose of this chapter is to introduce ou to the Homogeneous Transformation. This simple 4 4 transformation is used in the geometr engines of CAD sstems and in

More information

Hello everyone, Best, Josh

Hello everyone, Best, Josh Hello everyone, As promised, the chart mentioned in class about what kind of critical points you get with different types of eigenvalues are included on the following pages (The pages are an ecerpt from

More information

C. Non-linear Difference and Differential Equations: Linearization and Phase Diagram Technique

C. Non-linear Difference and Differential Equations: Linearization and Phase Diagram Technique C. Non-linear Difference and Differential Equations: Linearization and Phase Diaram Technique So far we have discussed methods of solvin linear difference and differential equations. Let us now discuss

More information

Application 7.4 Earthquake-Induced Vibrations of Multistory Buildings

Application 7.4 Earthquake-Induced Vibrations of Multistory Buildings Application 7.4 Earthquake-Induced Vibrations of Multistory Buildings In this application you are to investigate the response to transverse earthquake ground oscillations of a seven-story building like

More information

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE The SAT Subject Tests Answer Eplanations TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE Mathematics Level & Visit sat.org/stpractice to get more practice and stud tips for the Subject Test

More information

Chapter 8 Equilibria in Nonlinear Systems

Chapter 8 Equilibria in Nonlinear Systems Chapter 8 Equilibria in Nonlinear Sstems Recall linearization for Nonlinear dnamical sstems in R n : X 0 = F (X) : if X 0 is an equilibrium, i.e., F (X 0 ) = 0; then its linearization is U 0 = AU; A =

More information

Chapter 8 More About the Trigonometric Functions

Chapter 8 More About the Trigonometric Functions Relationships Among Trigonometric Functions Section 8. 8 Chapter 8 More About the Trigonometric Functions Section 8. Relationships Among Trigonometric Functions. The amplitude of the graph of cos is while

More information

Solutions to the Exercises of Chapter 4

Solutions to the Exercises of Chapter 4 Solutions to the Eercises of Chapter 4 4A. Basic Analtic Geometr. The distance between (, ) and (4, 5) is ( 4) +( 5) = 9+6 = 5 and that from (, 6) to (, ) is ( ( )) +( 6 ( )) = ( + )=.. i. AB = (6 ) +(

More information

THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A 2 2 SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS

THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A 2 2 SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS THE SEPARATRIX FOR A SECOND ORDER ORDINARY DIFFERENTIAL EQUATION OR A SYSTEM OF FIRST ORDER ODE WHICH ALLOWS A PHASE PLANE QUANTITATIVE ANALYSIS Maria P. Skhosana and Stephan V. Joubert, Tshwane University

More information

Local Maximums and Local Minimums of Functions. f(x, y) has a local minimum at the point (x 0, y 0 ) if f(x 0, y 0 ) f(x, y) for

Local Maximums and Local Minimums of Functions. f(x, y) has a local minimum at the point (x 0, y 0 ) if f(x 0, y 0 ) f(x, y) for Local Extrema Previousl we have taken the partial derivative of a function f(x, ). But those partial derivatives were themselves functions and so we can take their partial derivatives. Local Maximums and

More information

Mathematics 309 Conic sections and their applicationsn. Chapter 2. Quadric figures. ai,j x i x j + b i x i + c =0. 1. Coordinate changes

Mathematics 309 Conic sections and their applicationsn. Chapter 2. Quadric figures. ai,j x i x j + b i x i + c =0. 1. Coordinate changes Mathematics 309 Conic sections and their applicationsn Chapter 2. Quadric figures In this chapter want to outline quickl how to decide what figure associated in 2D and 3D to quadratic equations look like.

More information

Fitting Integrands to Basic Rules

Fitting Integrands to Basic Rules 6_8.qd // : PM Page 8 8 CHAPTER 8 Integration Techniques, L Hôpital s Rule, and Improper Integrals Section 8. Basic Integration Rules Review proceres for fitting an integrand to one of the basic integration

More information

Vectors in Component Form

Vectors in Component Form Vectors in Component Form Student Activity - Answers 7 8 9 10 11 12 Introduction TI-Nspire & TI-Nspire CAS Investigation Student 30 min Vectors are used to represent quantities that have both magnitude

More information

APPENDIX D Rotation and the General Second-Degree Equation

APPENDIX D Rotation and the General Second-Degree Equation APPENDIX D Rotation and the General Second-Degree Equation Rotation of Aes Invariants Under Rotation After rotation of the - and -aes counterclockwise through an angle, the rotated aes are denoted as the

More information

2.2 SEPARABLE VARIABLES

2.2 SEPARABLE VARIABLES 44 CHAPTER FIRST-ORDER DIFFERENTIAL EQUATIONS 6 Consider the autonomous DE 6 Use our ideas from Problem 5 to find intervals on the -ais for which solution curves are concave up and intervals for which

More information

5.6. Differential equations

5.6. Differential equations 5.6. Differential equations The relationship between cause and effect in phsical phenomena can often be formulated using differential equations which describe how a phsical measure () and its derivative

More information

Identifying second degree equations

Identifying second degree equations Chapter 7 Identifing second degree equations 71 The eigenvalue method In this section we appl eigenvalue methods to determine the geometrical nature of the second degree equation a 2 + 2h + b 2 + 2g +

More information

Project 6.3 Predator-Prey and Your Own Game Preserve

Project 6.3 Predator-Prey and Your Own Game Preserve Project 6.3 Predator-Prey and Your Own Game Preserve The closed trajectories in the figure below represent periodic solutions of a typical predator-prey system, but provide no information as to the actual

More information

Trigonometric. equations. Topic: Periodic functions and applications. Simple trigonometric. equations. Equations using radians Further trigonometric

Trigonometric. equations. Topic: Periodic functions and applications. Simple trigonometric. equations. Equations using radians Further trigonometric Trigonometric equations 6 sllabusref eferenceence Topic: Periodic functions and applications In this cha 6A 6B 6C 6D 6E chapter Simple trigonometric equations Equations using radians Further trigonometric

More information

VECTORS IN THREE DIMENSIONS

VECTORS IN THREE DIMENSIONS 1 CHAPTER 2. BASIC TRIGONOMETRY 1 INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW VECTORS IN THREE DIMENSIONS 1 Vectors in Two Dimensions A vector is an object which has magnitude

More information

CHAPTER 2: Partial Derivatives. 2.2 Increments and Differential

CHAPTER 2: Partial Derivatives. 2.2 Increments and Differential CHAPTER : Partial Derivatives.1 Definition of a Partial Derivative. Increments and Differential.3 Chain Rules.4 Local Etrema.5 Absolute Etrema 1 Chapter : Partial Derivatives.1 Definition of a Partial

More information

Particular Solutions

Particular Solutions Particular Solutions Our eamples so far in this section have involved some constant of integration, K. We now move on to see particular solutions, where we know some boundar conditions and we substitute

More information

INTRODUCTION TO DIFFERENTIAL EQUATIONS

INTRODUCTION TO DIFFERENTIAL EQUATIONS INTRODUCTION TO DIFFERENTIAL EQUATIONS. Definitions and Terminolog. Initial-Value Problems.3 Differential Equations as Mathematical Models CHAPTER IN REVIEW The words differential and equations certainl

More information

KEY IDEAS. Chapter 1 Function Transformations. 1.1 Horizontal and Vertical Translations Pre-Calculus 12 Student Workbook MHR 1

KEY IDEAS. Chapter 1 Function Transformations. 1.1 Horizontal and Vertical Translations Pre-Calculus 12 Student Workbook MHR 1 Chapter Function Transformations. Horizontal and Vertical Translations A translation can move the graph of a function up or down (vertical translation) and right or left (horizontal translation). A translation

More information

Math 181/281. Rumbos Spring 2011 Page 1. Solutions to Assignment #5. Hence, the dynamical system, θ(t, p, q), for (t, p, q) R 3 corresponding = F.

Math 181/281. Rumbos Spring 2011 Page 1. Solutions to Assignment #5. Hence, the dynamical system, θ(t, p, q), for (t, p, q) R 3 corresponding = F. Math 181/281. Rumbos Spring 2011 Page 1 Solutions to Assignment #5 1. For real numbers a and b with a 2 + b 2 = 0, let F : R 2 R 2 be given b ( ) ( ) ( ) x ax b x F =, for all R 2. (1) bx + a (a) Explain

More information

Math 5490 November 5, 2014

Math 5490 November 5, 2014 Math 549 November 5, 214 Topics in Applied Mathematics: Introduction to the Mathematics of Climate Mondays and Wednesdays 2:3 3:45 http://www.math.umn.edu/~mcgehee/teaching/math549-214-2fall/ Streaming

More information

Unit 10 - Graphing Quadratic Functions

Unit 10 - Graphing Quadratic Functions Unit - Graphing Quadratic Functions PREREQUISITE SKILLS: students should be able to add, subtract and multipl polnomials students should be able to factor polnomials students should be able to identif

More information

8.7 Systems of Non-Linear Equations and Inequalities

8.7 Systems of Non-Linear Equations and Inequalities 8.7 Sstems of Non-Linear Equations and Inequalities 67 8.7 Sstems of Non-Linear Equations and Inequalities In this section, we stud sstems of non-linear equations and inequalities. Unlike the sstems of

More information

LAB #6 The Swaying Building

LAB #6 The Swaying Building LAB #6 The Swaying Building Goal: Determine a model of the swaying of a skyscraper; estimating parameters Required tools: Matlab routines pplane, ode45, plot; M-files; systems of differential equations.

More information

SEPARABLE EQUATIONS 2.2

SEPARABLE EQUATIONS 2.2 46 CHAPTER FIRST-ORDER DIFFERENTIAL EQUATIONS 4. Chemical Reactions When certain kinds of chemicals are combined, the rate at which the new compound is formed is modeled b the autonomous differential equation

More information

Cubic and quartic functions

Cubic and quartic functions 3 Cubic and quartic functions 3A Epanding 3B Long division of polnomials 3C Polnomial values 3D The remainder and factor theorems 3E Factorising polnomials 3F Sum and difference of two cubes 3G Solving

More information

AE/ME 339. K. M. Isaac Professor of Aerospace Engineering. December 21, 2001 topic13_grid_generation 1

AE/ME 339. K. M. Isaac Professor of Aerospace Engineering. December 21, 2001 topic13_grid_generation 1 AE/ME 339 Professor of Aerospace Engineering December 21, 2001 topic13_grid_generation 1 The basic idea behind grid generation is the creation of the transformation laws between the phsical space and the

More information

Symmetry Arguments and the Role They Play in Using Gauss Law

Symmetry Arguments and the Role They Play in Using Gauss Law Smmetr Arguments and the Role The la in Using Gauss Law K. M. Westerberg (9/2005) Smmetr plas a ver important role in science in general, and phsics in particular. Arguments based on smmetr can often simplif

More information

Homework Solutions: , plus Substitutions

Homework Solutions: , plus Substitutions Homework Solutions: 2.-2.2, plus Substitutions Section 2. I have not included any drawings/direction fields. We can see them using Maple or by hand, so we ll be focusing on getting the analytic solutions

More information

2.3 Rectangular Components in Three-Dimensional Force Systems

2.3 Rectangular Components in Three-Dimensional Force Systems 2.3 Rectangular Components in Three-Dimensional Force Sstems 2.3 Rectangular Components in Three-Dimensional Force Sstems Eample 1, page 1 of 2 1. Epress the force F in terms of,, and components. F = 200

More information

d. 2x 3 7x 2 5x 2 2x 2 3x 1 x 2x 3 3x 2 1x 2 4x 2 6x 2 3. a. x 5 x x 2 5x 5 5x 25 b. x 4 2x 2x 2 8x 3 3x 12 c. x 6 x x 2 6x 6 6x 36

d. 2x 3 7x 2 5x 2 2x 2 3x 1 x 2x 3 3x 2 1x 2 4x 2 6x 2 3. a. x 5 x x 2 5x 5 5x 25 b. x 4 2x 2x 2 8x 3 3x 12 c. x 6 x x 2 6x 6 6x 36 Vertices: (.8, 5.), (.37, 3.563), (.6, 0.980), (5.373, 6.66), (.8, 7.88), (.95,.) Graph the equation for an value of P (the second graph shows the circle with P 5) and imagine increasing the value of P,

More information

Simultaneous Orthogonal Rotations Angle

Simultaneous Orthogonal Rotations Angle ELEKTROTEHNIŠKI VESTNIK 8(1-2): -11, 2011 ENGLISH EDITION Simultaneous Orthogonal Rotations Angle Sašo Tomažič 1, Sara Stančin 2 Facult of Electrical Engineering, Universit of Ljubljana 1 E-mail: saso.tomaic@fe.uni-lj.si

More information

4 The Cartesian Coordinate System- Pictures of Equations

4 The Cartesian Coordinate System- Pictures of Equations The Cartesian Coordinate Sstem- Pictures of Equations Concepts: The Cartesian Coordinate Sstem Graphs of Equations in Two Variables -intercepts and -intercepts Distance in Two Dimensions and the Pthagorean

More information

Lesson 6.2 Exercises, pages

Lesson 6.2 Exercises, pages Lesson 6.2 Eercises, pages 448 48 A. Sketch each angle in standard position. a) 7 b) 40 Since the angle is between Since the angle is between 0 and 90, the terminal 90 and 80, the terminal arm is in Quadrant.

More information

EXERCISES FOR SECTION 3.1

EXERCISES FOR SECTION 3.1 174 CHAPTER 3 LINEAR SYSTEMS EXERCISES FOR SECTION 31 1 Since a > 0, Paul s making a pro t > 0 has a bene cial effect on Paul s pro ts in the future because the a term makes a positive contribution to

More information

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures AB = BA = I,

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures AB = BA = I, FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING Lectures MODULE 7 MATRICES II Inverse of a matri Sstems of linear equations Solution of sets of linear equations elimination methods 4

More information

Solving Quadratic Trigonometric Equations

Solving Quadratic Trigonometric Equations Solving Quadratic Trigonometric Equations 6.6 SKILL BUILDER Often in mathematics, it is necessar to combine skills and strategies ou have used before to deal with more complicated problems. A quadratic

More information

Vectors and the Geometry of Space

Vectors and the Geometry of Space Chapter 12 Vectors and the Geometr of Space Comments. What does multivariable mean in the name Multivariable Calculus? It means we stud functions that involve more than one variable in either the input

More information

Chapter Nine Chapter Nine

Chapter Nine Chapter Nine Chapter Nine Chapter Nine 6 CHAPTER NINE ConcepTests for Section 9.. Table 9. shows values of f(, ). Does f appear to be an increasing or decreasing function of? Of? Table 9. 0 0 0 7 7 68 60 0 80 77 73

More information

MOL 410/510: Introduction to Biological Dynamics Fall 2012 Problem Set #4, Nonlinear Dynamical Systems (due 10/19/2012) 6 MUST DO Questions, 1

MOL 410/510: Introduction to Biological Dynamics Fall 2012 Problem Set #4, Nonlinear Dynamical Systems (due 10/19/2012) 6 MUST DO Questions, 1 MOL 410/510: Introduction to Biological Dynamics Fall 2012 Problem Set #4, Nonlinear Dynamical Systems (due 10/19/2012) 6 MUST DO Questions, 1 OPTIONAL question 1. Below, several phase portraits are shown.

More information

= x. Algebra II Notes Quadratic Functions Unit Graphing Quadratic Functions. Math Background

= x. Algebra II Notes Quadratic Functions Unit Graphing Quadratic Functions. Math Background Algebra II Notes Quadratic Functions Unit 3.1 3. Graphing Quadratic Functions Math Background Previousl, ou Identified and graphed linear functions Applied transformations to parent functions Graphed quadratic

More information

2 Ordinary Differential Equations: Initial Value Problems

2 Ordinary Differential Equations: Initial Value Problems Ordinar Differential Equations: Initial Value Problems Read sections 9., (9. for information), 9.3, 9.3., 9.3. (up to p. 396), 9.3.6. Review questions 9.3, 9.4, 9.8, 9.9, 9.4 9.6.. Two Examples.. Foxes

More information

Noncommuting Rotation and Angular Momentum Operators

Noncommuting Rotation and Angular Momentum Operators Noncommuting Rotation and Angular Momentum Operators Originall appeared at: http://behindtheguesses.blogspot.com/2009/08/noncommuting-rotation-and-angular.html Eli Lanse elanse@gmail.com August 31, 2009

More information

Application 8.3 Automating the Frobenius Series Method

Application 8.3 Automating the Frobenius Series Method Application 8.3 Automating the Frobenius Series Method Here we illustrate the use of a computer algebra system to apply the method of Frobenius. In the paragraphs that follow, we consider the differential

More information

On Solving Systems of ODEs Numerically

On Solving Systems of ODEs Numerically On Solving Sstems of ODEs Numericall Temple H. Fa, Stephan V. Joubert, and Andrew Mkolesia Department of Mathematical Technolog Tshwane Universit of Technolog Private Bag x680 Pretoria 0001 SOUTH AFRICA

More information

Lab 5 Forces Part 1. Physics 211 Lab. You will be using Newton s 2 nd Law to help you examine the nature of these forces.

Lab 5 Forces Part 1. Physics 211 Lab. You will be using Newton s 2 nd Law to help you examine the nature of these forces. b Lab 5 Forces Part 1 Phsics 211 Lab Introduction This is the first week of a two part lab that deals with forces and related concepts. A force is a push or a pull on an object that can be caused b a variet

More information

8.3. Integration of Rational Functions by Partial Fractions. 570 Chapter 8: Techniques of Integration

8.3. Integration of Rational Functions by Partial Fractions. 570 Chapter 8: Techniques of Integration 570 Chapter 8: Techniques of Integration 8.3 Integration of Rational Functions b Partial Fractions This section shows how to epress a rational function (a quotient of polnomials) as a sum of simpler fractions,

More information

Strain Transformation and Rosette Gage Theory

Strain Transformation and Rosette Gage Theory Strain Transformation and Rosette Gage Theor It is often desired to measure the full state of strain on the surface of a part, that is to measure not onl the two etensional strains, and, but also the shear

More information

11.4 Polar Coordinates

11.4 Polar Coordinates 11. Polar Coordinates 917 11. Polar Coordinates In Section 1.1, we introduced the Cartesian coordinates of a point in the plane as a means of assigning ordered pairs of numbers to points in the plane.

More information

Find the general solution of the system y = Ay, where

Find the general solution of the system y = Ay, where Math Homework # March, 9..3. Find the general solution of the system y = Ay, where 5 Answer: The matrix A has characteristic polynomial p(λ = λ + 7λ + = λ + 3(λ +. Hence the eigenvalues are λ = 3and λ

More information

Affine transformations. Brian Curless CSE 557 Fall 2014

Affine transformations. Brian Curless CSE 557 Fall 2014 Affine transformations Brian Curless CSE 557 Fall 2014 1 Reading Required: Shirle, Sec. 2.4, 2.7 Shirle, Ch. 5.1-5.3 Shirle, Ch. 6 Further reading: Fole, et al, Chapter 5.1-5.5. David F. Rogers and J.

More information

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5 University of Alberta ENGM 54: Modeling and Simulation of Engineering Systems Laboratory #5 M.G. Lipsett, Updated 00 Integration Methods with Higher-Order Truncation Errors with MATLAB MATLAB is capable

More information

Solving Variable-Coefficient Fourth-Order ODEs with Polynomial Nonlinearity by Symmetric Homotopy Method

Solving Variable-Coefficient Fourth-Order ODEs with Polynomial Nonlinearity by Symmetric Homotopy Method Applied and Computational Mathematics 218; 7(2): 58-7 http://www.sciencepublishinggroup.com/j/acm doi: 1.11648/j.acm.21872.14 ISSN: 2328-565 (Print); ISSN: 2328-5613 (Online) Solving Variable-Coefficient

More information

6.4 graphs OF logarithmic FUnCTIOnS

6.4 graphs OF logarithmic FUnCTIOnS SECTION 6. graphs of logarithmic functions 9 9 learning ObjeCTIveS In this section, ou will: Identif the domain of a logarithmic function. Graph logarithmic functions. 6. graphs OF logarithmic FUnCTIOnS

More information

Models Involving Interactions between Predator and Prey Populations

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

More information

The Force Table Introduction: Theory:

The Force Table Introduction: Theory: 1 The Force Table Introduction: "The Force Table" is a simple tool for demonstrating Newton s First Law and the vector nature of forces. This tool is based on the principle of equilibrium. An object is

More information

Ordinary Differential Equations

Ordinary Differential Equations Instructor: José Antonio Agapito Ruiz UCSC Summer Session II, 00 Math Ordinar Differential Equations Final Solution This report does not contain full answers to all questions of the final. Instead, ou

More information

MATH MIDTERM 4 - SOME REVIEW PROBLEMS WITH SOLUTIONS Calculus, Fall 2017 Professor: Jared Speck. Problem 1. Approximate the integral

MATH MIDTERM 4 - SOME REVIEW PROBLEMS WITH SOLUTIONS Calculus, Fall 2017 Professor: Jared Speck. Problem 1. Approximate the integral MATH 8. - MIDTERM 4 - SOME REVIEW PROBLEMS WITH SOLUTIONS 8. Calculus, Fall 7 Professor: Jared Speck Problem. Approimate the integral 4 d using first Simpson s rule with two equal intervals and then the

More information

GZW. How can you find exact trigonometric ratios?

GZW. How can you find exact trigonometric ratios? 4. Special Angles Aircraft pilots often cannot see other nearb planes because of clouds, fog, or visual obstructions. Air Traffic Control uses software to track the location of aircraft to ensure that

More information

MATRIX TRANSFORMATIONS

MATRIX TRANSFORMATIONS CHAPTER 5. MATRIX TRANSFORMATIONS INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW MATRIX TRANSFORMATIONS Matri Transformations Definition Let A and B be sets. A function f : A B

More information

TABLES, GRAPHS, AND RULES

TABLES, GRAPHS, AND RULES TABLES, GRAPHS, AND RULES 3.1.1 3.1.7 Three was to write relationships for data are tables, words (descriptions), and rules. The pattern in tables between input () and output () values usuall establishes

More information

AMS 27L LAB #6 Winter 2009

AMS 27L LAB #6 Winter 2009 AMS 27L LAB #6 Winter 2009 Symbolically Solving Differential Equations Objectives: 1. To learn about the MATLAB Symbolic Solver 2. To expand knowledge of solutions to Diff-EQs 1 Symbolically Solving Differential

More information

2.10 Saddles, Nodes, Foci and Centers

2.10 Saddles, Nodes, Foci and Centers 2.10 Saddles, Nodes, Foci and Centers In Section 1.5, a linear system (1 where x R 2 was said to have a saddle, node, focus or center at the origin if its phase portrait was linearly equivalent to one

More information

SOLVING SOME PHYSICAL PROBLEMS USING THE METHODS OF NUMERICAL MATHEMATICS WITH THE HELP OF SYSTEM MATHEMATICA

SOLVING SOME PHYSICAL PROBLEMS USING THE METHODS OF NUMERICAL MATHEMATICS WITH THE HELP OF SYSTEM MATHEMATICA SOLVING SOME PHYSICAL PROBLEMS USING THE METHODS OF NUMERICAL MATHEMATICS WITH THE HELP OF SYSTEM MATHEMATICA Pavel Trojovský Jaroslav Seibert Antonín Slabý ABSTRACT Ever future teacher of mathematics

More information

( ) 2 3x=0 3x(x 3 1)=0 x=0 x=1

( ) 2 3x=0 3x(x 3 1)=0 x=0 x=1 Stewart Calculus ET 5e 05497;4. Partial Derivatives; 4.7 Maimum and Minimum Values. (a) First we compute D(,)= f (,) f (,) [ f (,)] =(4)() () =7. Since D(,)>0 and f (,)>0, f has a local minimum at (,)

More information

Solutions to Homework 3

Solutions to Homework 3 Solutions to Homework 3 Section 3.4, Repeated Roots; Reduction of Order Q 1). Find the general solution to 2y + y = 0. Answer: The charactertic equation : r 2 2r + 1 = 0, solving it we get r = 1 as a repeated

More information

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following:

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following: Math 323 Eam 2 - Practice Problem Solutions 1. Given the vectors a = 2,, 1, b = 3, 2,4, and c = 1, 4,, compute the following: (a) A unit vector in the direction of c. u = c c = 1, 4, 1 4 =,, 1+16+ 17 17

More information

We have examined power functions like f (x) = x 2. Interchanging x

We have examined power functions like f (x) = x 2. Interchanging x CHAPTER 5 Eponential and Logarithmic Functions We have eamined power functions like f =. Interchanging and ields a different function f =. This new function is radicall different from a power function

More information

Functions of Several Variables

Functions of Several Variables Chapter 1 Functions of Several Variables 1.1 Introduction A real valued function of n variables is a function f : R, where the domain is a subset of R n. So: for each ( 1,,..., n ) in, the value of f is

More information

Consider a slender rod, fixed at one end and stretched, as illustrated in Fig ; the original position of the rod is shown dotted.

Consider a slender rod, fixed at one end and stretched, as illustrated in Fig ; the original position of the rod is shown dotted. 4.1 Strain If an object is placed on a table and then the table is moved, each material particle moves in space. The particles undergo a displacement. The particles have moved in space as a rigid bod.

More information

Lesson 3.1 Linear Equations and Arithmetic Sequences

Lesson 3.1 Linear Equations and Arithmetic Sequences Lesson 3.1 Linear Equations and Arithmetic Sequences 1. Find an eplicit formula for each recursivel defined arithmetic sequence. a. u 0 18.25 b. t 0 0 u n u n 1 4.75 where n 1 t n t n 1 100 where n 1 2.

More information

Affine transformations

Affine transformations Reading Optional reading: Affine transformations Brian Curless CSE 557 Autumn 207 Angel and Shreiner: 3., 3.7-3. Marschner and Shirle: 2.3, 2.4.-2.4.4, 6..-6..4, 6.2., 6.3 Further reading: Angel, the rest

More information

16.5. Maclaurin and Taylor Series. Introduction. Prerequisites. Learning Outcomes

16.5. Maclaurin and Taylor Series. Introduction. Prerequisites. Learning Outcomes Maclaurin and Talor Series 6.5 Introduction In this Section we eamine how functions ma be epressed in terms of power series. This is an etremel useful wa of epressing a function since (as we shall see)

More information

Autonomous Mechanical systems of 1 degree of freedom

Autonomous Mechanical systems of 1 degree of freedom Autonomous Mechanical systems of degree of freedom = f (, ), = y = y = f (, y) = f (, ) : position y : velocity f : force function Solution : = ( t; c, c), y = y( t; c, c ), ci = ci(, y) Integral of motion

More information

Partial differentiation. Background mathematics review

Partial differentiation. Background mathematics review Partial differentiation Background mathematics review David Miller Partial differentiation Partial derivatives Background mathematics review David Miller Partial derivative Suppose we have a function f(,)

More information

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5?

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5? 3330_070.qd 96 /5/05 Chapter 7 7. 9:39 AM Page 96 Sstems of Equations and Inequalities Linear and Nonlinear Sstems of Equations What ou should learn Use the method of substitution to solve sstems of linear

More information

RELATIONS AND FUNCTIONS through

RELATIONS AND FUNCTIONS through RELATIONS AND FUNCTIONS 11.1.2 through 11.1. Relations and Functions establish a correspondence between the input values (usuall ) and the output values (usuall ) according to the particular relation or

More information

Fitting Integrands to Basic Rules. x x 2 9 dx. Solution a. Use the Arctangent Rule and let u x and a dx arctan x 3 C. 2 du u.

Fitting Integrands to Basic Rules. x x 2 9 dx. Solution a. Use the Arctangent Rule and let u x and a dx arctan x 3 C. 2 du u. 58 CHAPTER 8 Integration Techniques, L Hôpital s Rule, and Improper Integrals Section 8 Basic Integration Rules Review proceres for fitting an integrand to one of the basic integration rules Fitting Integrands

More information

MATH Symmetric matrices, conics and quadrics December 3, 2001

MATH Symmetric matrices, conics and quadrics December 3, 2001 MATH 70- Smmetric matrices, conics and quadrics December 3, 00 Conic sections: > restart: > with(linalg):with(plots):#for computations and pictures with(student):#to do algebra computations like completing

More information

Viktor Shkolnikov, Juan G. Santiago*

Viktor Shkolnikov, Juan G. Santiago* Supplementar Information: Coupling Isotachophoresis with Affinit Chromatograph for Rapid and Selective Purification with High Column Utilization. Part I: Theor Viktor Shkolnikov, Juan G. Santiago* Department

More information

Lab 5: Nonlinear Systems

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

More information

Lecture 38. Almost Linear Systems

Lecture 38. Almost Linear Systems Math 245 - Mathematics of Physics and Engineering I Lecture 38. Almost Linear Systems April 20, 2012 Konstantin Zuev (USC) Math 245, Lecture 38 April 20, 2012 1 / 11 Agenda Stability Properties of Linear

More information