Solving systems of ODEs with Matlab

Size: px
Start display at page:

Download "Solving systems of ODEs with Matlab"

Transcription

1 Solving systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 20, 2013

2 Outline 1 Systems of ODEs 2 Setting Up the Matrix and the Vector Functions 3 Linear Second Order Problems As Systems 4 What If We Don t Know The True Solution?

3 Abstract This lecture is going to discuss solving systems of ODEs with MatLab

4 Systems of ODEs We now want to learn how to solve systems of differential equations. A typical system is the following x (t) = f (t, x(t), y(t)) (1) y (t) = g(t, x(t), y(t)) (2) x(t 0 ) = x 0 ; y(t 0 ) = y 0 (3) where x and y are our variables of interest which might represent populations to two competing species or other quantities of biological interest.

5 Systems of ODEs We now want to learn how to solve systems of differential equations. A typical system is the following x (t) = f (t, x(t), y(t)) (1) y (t) = g(t, x(t), y(t)) (2) x(t 0 ) = x 0 ; y(t 0 ) = y 0 (3) where x and y are our variables of interest which might represent populations to two competing species or other quantities of biological interest. The system starts at time t 0 (which for us is usually 0) and we specify the values the variables x and y start at as x 0 and y 0 respectively. The functions f and g are nice meaning that as functions of three arguments (t, x, y) they do not have jumps and corners. The exact nature of nice here is a bit beyond our ability to discuss in this introductory course, so we will leave it at that.

6 Systems of ODEs For example, we could be asked to solve the system x (t) = 3x(t) + 2x(t)y(t) 3y 2 (t), (4) y (t) = 2x(t) + 2x 2 (t)y(t) + 5y(t), (5) x(0) = 2; y(0) = 3. (6)

7 Systems of ODEs For example, we could be asked to solve the system x (t) = 3x(t) + 2x(t)y(t) 3y 2 (t), (4) y (t) = 2x(t) + 2x 2 (t)y(t) + 5y(t), (5) x(0) = 2; y(0) = 3. (6) or the system x (t) = 3x(t) + 2x(t)y(t) + 10 sin(t 2 + 5), (7) y (t) = 2x(t) + 2x(t)y 2 (t) + 20t 3 e 2t2, (8) x(0) = 12; y(0) = 5. (9)

8 Systems of ODEs The functions f and g in these examples are not linear in the variables x and y; hence the system Equation 4 and Equation 5 and system Equation 7 and Equation 8 are what are called a nonlinear systems. In general, arbitrary functions of time, φ and ψ to the model giving x (t) = 3x(t) + 2x(t)y(t) 3y 2 (t) + φ(t), (10) y (t) = 2x(t) + 2x 2 (t)y(t) + 5y(t) + ψ(t), (11) x(0) = 2; y(0) = 3. (12)

9 Systems of ODEs The functions f and g in these examples are not linear in the variables x and y; hence the system Equation 4 and Equation 5 and system Equation 7 and Equation 8 are what are called a nonlinear systems. In general, arbitrary functions of time, φ and ψ to the model giving x (t) = 3x(t) + 2x(t)y(t) 3y 2 (t) + φ(t), (10) y (t) = 2x(t) + 2x 2 (t)y(t) + 5y(t) + ψ(t), (11) x(0) = 2; y(0) = 3. (12) The functions φ and ψ are what we could call data functions. For example, if φ(t) = sin(t) and ψ(t) = te t, the system Equation 10 and Equation 11 would become x (t) = 3x(t) + 2x(t)y(t) 3y 2 (t) + sin(t), y (t) = 2x(t) + 2x 2 (t)y(t) + 5y(t) + te t, x(0) = 2; y(0) = 3.

10 Systems of ODEs The functions f and g would then become f (t, x, y) = 3x + 2xy 3y 2 + sin(t) g(t, x, y) = 2x + 2x 2 y + 5y + te t

11 Systems of ODEs The functions f and g would then become f (t, x, y) = 3x + 2xy 3y 2 + sin(t) g(t, x, y) = 2x + 2x 2 y + 5y + te t How do we solve such a system of differential equations? There are some things we can do if the functions f and g are linear in x and y, but many times we will be forced to look at the solutions using numerical techniques. We explored how to solve first order equations already and we will now adapt the tools developed earlier to systems of differential equations.

12 Setting Up the Matrix and the Vector Functions Example Convert to a matrix - vector system 2.0 x (t) 3.0 x (t) x(t) = 0; x(0) = 2.0; x (0) = 4.0 Solution We let the vector x be given by [ ] x1 (t) x(t) = x 2 (t) Then, = [ ] u(t) u (t) x 1(t) = u (t) = x 2 (t), x 2(t) = u (t) = (5/2)u(t) + (3/2)u (t) = (5/2)x 1 (t) + (3/2)x 2 (t).

13 Setting Up the Matrix and the Vector Functions Example Solution We then convert the above into the matrix - vector system [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) x 2 (t) = (5/2) (3/2) x 2 (t) Also, note that x(0) = [ ] x1 (0) x 2 (0) = [ ] u(0) u (0) = [ ] 2 4 = x 0. Let the matrix above be called A. Then we have converted the original system into the matrix - vector equation x (t) = A x(t), x(0) = x 0.

14 Setting Up the Matrix and the Vector Functions Example Convert to a matrix - vector system x (t) x (t) 5.0 x(t) = 0; x(0) = 1.0; x (0) = 1.0 Solution Again, we let the vector x be given by [ ] x1 (t) x(t) = = x 2 (t) [ ] u(t) u (t) Then, similar to what we did in the previous example, we find x 1(t) = u (t) = x 2 (t), x 2(t) = u (t) = 5u(t) (4)u (t) = 5x 1 (t) 4x 2 (t).

15 Setting Up the Matrix and the Vector Functions Solution We then convert the above into the matrix - vector system [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) x 2 (t) = 5 4 x 2 (t) Also, note that x(0) = [ ] x1 (0) x 2 (0) = [ ] u(0) u (0) = [ ] 1 1 = x(0). Let the matrix above be called A. Then we have converted the original system into the matrix - vector equation x (t) = A x(t), x(0), x(0) = x 0.

16 Setting Up the Matrix and the Vector Functions Example Convert to a matrix - vector system x (t) y (t) 2.0 x(t) y(t) = x (t) y (t) x(t) 8.0 y(t) = 0 x(0) = 1.0 y(0) = 2.0 Solution Let the vector u be given by u(t) = [ ] u1 (t) u 2 (t) = [ ] x(t). y(t)

17 Setting Up the Matrix and the Vector Functions Solution It is then easy to see that if we define the matrices A and B by [ ] [ ] A =, and B =, we can convert the original system into A u (t) + B u(t) = u(0) = [ ] 0, 0 [ ] 1 2

18 Setting Up the Matrix and the Vector Functions Homework Convert to a matrix - vector system X = AX 6.0 x (t) x (t) x(t) = 0; x(0) = 1.0; x (0) = Convert to a matrix - vector system AX + BX = x (t) y (t) x(t) y(t) = x (t) y (t) x(t) 4.0 y(t) = 0 x(0) = 10.0 y(0) = Convert to a matrix - vector system AX + BX = x (t) y (t) x(t) y(t) = x (t) 5.0 y (t) x(t) 2.0 y(t) = 0 x(0) = 1.0 y(0) = 2.0

19 Linear Second Order Problems As Systems Now let s consider how to adapt our previous code to handle these systems of differential equations. We will begin with the linear second order problems because we know how to do those already. First, let s consider a general second order linear problem. a u (t) + b u (t) + c u(t) = g(t), u(0) = e, u (0) = f where we assume a is not zero, so that we really do have a second order problem!

20 Linear Second Order Problems As Systems Now let s consider how to adapt our previous code to handle these systems of differential equations. We will begin with the linear second order problems because we know how to do those already. First, let s consider a general second order linear problem. a u (t) + b u (t) + c u(t) = g(t), u(0) = e, u (0) = f where we assume a is not zero, so that we really do have a second order problem! As usual, we let the vector x be given by Then, x(t) = x 1(t) = u (t) = x 2 (t), [ x1 (t) x 2 (t) ] = [ u(t) u (t) x 2(t) = u (t) = (c/a)u(t) (b/a)u (t) + (1/a) g(t) ]

21 Linear Second Order Problems As Systems We then convert the above into the matrix - vector system [ ] [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) 0 x 2 (t) = + (c/a) (b/a) x 2 (t) (1/a) g(t)

22 Linear Second Order Problems As Systems We then convert the above into the matrix - vector system [ ] [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) 0 x 2 (t) = + (c/a) (b/a) x 2 (t) (1/a) g(t) Also, note that x(0) = [ ] x1 (0) = x 2 (0) [ ] u(0) u (0) = [ ] e = x f 0.

23 Linear Second Order Problems As Systems We then convert the above into the matrix - vector system [ ] [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) 0 x 2 (t) = + (c/a) (b/a) x 2 (t) (1/a) g(t) Also, note that x(0) = [ ] x1 (0) = x 2 (0) [ ] u(0) u (0) = [ ] e = x f 0. For our purposes of using MatLab, we need to write this in terms of vectors. We have [ ] [ ] x 1 (t) x x 2 (t) = 2 (c/a) x 1 (b/a) x 2 + (1/a) g(t)

24 Linear Second Order Problems As Systems We then convert the above into the matrix - vector system [ ] [ ] [ ] [ ] x x (t) = 1 (t) 0 1 x1 (t) 0 x 2 (t) = + (c/a) (b/a) x 2 (t) (1/a) g(t) Also, note that x(0) = [ ] x1 (0) = x 2 (0) [ ] u(0) u (0) = [ ] e = x f 0. For our purposes of using MatLab, we need to write this in terms of vectors. We have [ ] [ ] x 1 (t) x x 2 (t) = 2 (c/a) x 1 (b/a) x 2 + (1/a) g(t) Now let the dynamics vector f be defined by [ ] [ ] f1 x f = = 2 (c/a) x 1 (b/a) x 2 + (1/a) g(t) f 2

25 Linear Second Order Problems As Systems For example, given the model x + 4x 5x = te.03t x(0) = 1.0 x (0) = 1.0 we write this in a MatLab session as 1 % f o r second o r d e r model % g i v e n t h e model y + 4y 5 y = t e ˆ{.03 t } >> a = 1 ; >> b = 4 ; >> c = 5; 6 >> B = (b/a ) ; >> A = (c /a ) ; >> C = 1/ a ; >> g t ) t. exp (.03 t ) ; >> f t, y ) [ y ( 2 ) ; A y ( 1 ) + B y ( 2 ) + C g ( t ) ] ;

26 Linear Second Order Problems As Systems Example Consider the problem y (t) y (t) 5.0 y(t) = 0; y(0) = 1.0; y (0) = 1.0 Solution This has characteristic equation r 2 + 4r 5 = 0 with roots r 1 = 5 and r 2 = 1. Hence, the general solution is x(t) = Ae 5t + Be t. The initial conditions give A + B = 1 5A + B = 1 It is straightforward to see that A = 1/3 and B = 2/3. Then we solve the system using MatLab with this session:

27 Linear Second Order Problems As Systems Solution % d e f i n e t h e dynamics f o r y + 4y 5 y = 0 >> a = 1 ; b = 4 ; c = 5; >> B = (b/a ) ; A = (c /a ) ; C = 1/ a ; >> g t ) 0. 0 ; 5 >> f t, y ) [ y ( 2 ) ; A y ( 1 ) + B y ( 2 ) + C g ( t ) ] ; % d e f i n e t h e t r u e s o l u t i o n >> t r u t ) [ ( 1. 0 / 3. 0 ) exp ( 5 t ) ( 2. 0 / 3. 0 ) exp ( t ) ;... ( 5. 0 / 3. 0 ) exp ( 5 t ) ( 2. 0 / 3. 0 ) exp ( t ) ] ; >> y0 = [ 1 ; 1 ] ; h =. 2 ; T = 3 ; 10 >> time = l i n s p a c e ( 0,T, ) ; >> N = c e i l (T/h ) ; >> [ htime1, r k a p p r o x 1 ] = FixedRK ( f, 0, y0, h, 1,N ) ; >> y h a t 1 = r k a p p r o x 1 ( 1, : ) ; >> [ htime2, r k a p p r o x 2 ] = FixedRK ( f, 0, y0, h, 2,N ) ; 15 >> y h a t 2 = r k a p p r o x 2 ( 1, : ) ; >> [ htime3, r k a p p r o x 3 ] = FixedRK ( f, 0, y0, h, 3,N ) ; >> y h a t 3 = r k a p p r o x 3 ( 1, : ) ; >> [ htime4, r k a p p r o x 4 ] = FixedRK ( f, 0, y0, h, 4,N ) ; >> y h a t 4 = r k a p p r o x 4 ( 1, : ) ; 20 >> y t r u e = t r u e ( time ) ;

28 Linear Second Order Problems As Systems Solution % do t h e p l o t >> p l o t ( time, y t r u e ( 1, : ), htime1, yhat1, o,,... htime2, yhat2, *, htime3, yhat3, +,... htime4, yhat4, - ) ; 5 % s e t t h e l a b e l s >> x l a b e l ( Time ) ; >> y l a b e l ( y ) ; % s e t t h e t i t l e. T h i s goes on one l i n e but we b r e a k % i t to f i t on t h e s l i d e. The 4 q u o t e s w i l l p r i n t a s 10 % two quotes, i e x, and t h e 2 q u o t e s w i l l p r i n t a s x >> t i t l e ( Solution to x + 4 x - 5 x = 0, x (0) = -1, x (0) = 1 on [1.3] ) ; % s e t t h e l e g e n d. T h i s goes one l i n e too, but % we b r e a k to f i t on t h e s l i d e 15 >> l e g e n d ( True, RK1, RK2, RK3, RK4, Location, Best ) ;

29 Linear Second Order Problems As Systems The function true has vector values; the first component is the true solution and the second is the true solution s derivative. We want to plot only the true solution, so we need to extract it from true. We do this with the command ytrue=true(time) which saves the vector of true values into ytrue. Then in the plot command, we plot only the solution by using ytrue(1,:).

30 What If We Don t Know The True Solution? Example Now let s add an external input, g(t) = 10 sin(5 t)e.03t. In a more advanced class, we could find the true solution for this external input, but it if we changed to g(t) = 10 sin(5 t)e.03t2 we would not be able to do that. So in general, there are many models we can not find the true solution to. Solution The code is similar, but there is no true solution now. % dynamics f o r y + 4 y 5 y = 10 s i n (5 t ) e ˆ{.03 t } >> a = 1 ; b = 4 ; c = 5; >> B = (b/a ) ; A = (c /a ) ; C = 1/ a ; >> g t ) 10 s i n (5 t ). exp (.03 t ) ; 5 >> f t, y ) [ y ( 2 ) ; A y ( 1 ) + B y ( 2 ) + C g ( t ) ] ; >> y0 = [ 1 ; 1 ] ; >> h =. 2 ; >> T = 3 ; >> N = c e i l (T/h ) ;

31 What If We Don t Know The True Solution? Solution 1 >> [ htime1, r k a p p r o x 1 ] = FixedRK ( f, 0, y0, h, 1,N ) ; >> y h a t 1 = r k a p p r o x 1 ( 1, : ) ; >> [ htime2, r k a p p r o x 2 ] = FixedRK ( f, 0, y0, h, 2,N ) ; >> y h a t 2 = r k a p p r o x 2 ( 1, : ) ; >> [ htime3, r k a p p r o x 3 ] = FixedRK ( f, 0, y0, h, 3,N ) ; 6 >> y h a t 3 = r k a p p r o x 3 ( 1, : ) ; >> [ htime4, r k a p p r o x 4 ] = FixedRK ( f, 0, y0, h, 4,N ) ; >> y h a t 4 = r k a p p r o x 4 ( 1, : ) ; >> p l o t ( htime1, yhat1, o, htime2, yhat2, *,... htime3, yhat3, +, htime4, yhat4, - ) ; 11 >> x l a b e l ( Time ) ; >> y l a b e l ( Approx y ) ; >> t i t l e ( Solution to x + 4 x - 5 x = 10 sin (5 t ) e ^{ -.03 t }, x (0) = -1, x (0) = 1 on [0,3] ) ; >> l e g e n d ( RK1, RK2, RK3, RK4, Location, Best ) ;

32 What If We Don t Know The True Solution? Homework 61 No external inputs: on all of these problems, choose an appropriate stepsize h, time interval [0, T ] for some positive T and find the true solution and write this as MatLab code. find the Runge - Kutta order 1 through 4 solutions. Write this up with attached plots u (t) + u (t) 2 u(t) = 0; u(0) = 1; u (0) = 2 x (t) + 6 x (t) + 9 x(t) = 0; x(0) = 1; x (0) = 2 y (t) + 4 y (t) + 13 y(t) = 0; y(0) = 1; y (0) = 2

33 What If We Don t Know The True Solution? Homework 61 External Inputs: for these models, find the Runge - Kutta 1 through 4 solutions and do the write up with plot as usual u (t) + 4 u (t) 3 u(t) = exp( 2t) cos(3t + 5) u(0) = 2 u (0) = 3 u (t) 2 u (t) + 13 u(t) = exp( 5t) sin(3t 2 + 5) u(0) = 12 u (0) = 6

Runge - Kutta Methods for first and second order models

Runge - Kutta Methods for first and second order models Runge - Kutta Methods for first and second order models James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 3, 2013 Outline 1 Runge -

More information

Runge - Kutta Methods for first order models

Runge - Kutta Methods for first order models Runge - Kutta Methods for first order models James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 30, 2013 Outline Runge - Kutte Methods

More information

Runge - Kutta Methods for first order models

Runge - Kutta Methods for first order models Runge - Kutta Methods for first order models James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 30, 2013 Outline 1 Runge - Kutte Methods

More information

Solving Linear Systems of ODEs with Matlab

Solving Linear Systems of ODEs with Matlab Solving Linear Systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 27, 2013 Outline Linear Systems Numerically

More information

Variation of Parameters

Variation of Parameters Variation of Parameters James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 13, 218 Outline Variation of Parameters Example One We eventually

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline 1 Example Let (x n ) be the sequence

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

Extreme Values and Positive/ Negative Definite Matrix Conditions

Extreme Values and Positive/ Negative Definite Matrix Conditions Extreme Values and Positive/ Negative Definite Matrix Conditions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 016 Outline 1

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 2013 Outline

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

Predator - Prey Model Trajectories and the nonlinear conservation law

Predator - Prey Model Trajectories and the nonlinear conservation law Predator - Prey Model Trajectories and the nonlinear conservation law James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline More Uniform Convergence Examples Example

More information

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 24, 2013 Outline 1 First Order Approximation s Second Order Approximations 2 Approximation

More information

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab Riemann Sums James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 15, 2013 Outline Riemann Sums Riemann Sums In MatLab Abstract This

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 203 Outline

More information

Math 308 Week 8 Solutions

Math 308 Week 8 Solutions Math 38 Week 8 Solutions There is a solution manual to Chapter 4 online: www.pearsoncustom.com/tamu math/. This online solutions manual contains solutions to some of the suggested problems. Here are solutions

More information

The Method of Undetermined Coefficients.

The Method of Undetermined Coefficients. The Method of Undetermined Coefficients. James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University May 24, 2017 Outline 1 Annihilators 2 Finding The

More information

Matrix Solutions to Linear Systems of ODEs

Matrix Solutions to Linear Systems of ODEs Matrix Solutions to Linear Systems of ODEs James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 3, 216 Outline 1 Symmetric Systems of

More information

Getting Started With The Predator - Prey Model: Nullclines

Getting Started With The Predator - Prey Model: Nullclines Getting Started With The Predator - Prey Model: Nullclines James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline The Predator

More information

Integration by Parts Logarithms and More Riemann Sums!

Integration by Parts Logarithms and More Riemann Sums! Integration by Parts Logarithms and More Riemann Sums! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 16, 2013 Outline 1 IbyP with

More information

Advanced Protein Models again: adding regulation

Advanced Protein Models again: adding regulation Advanced Protein Models again: adding regulation James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 1, 2014 Outline 1 Simple Regulations

More information

MatLab Code for Simple Convex Minimization

MatLab Code for Simple Convex Minimization MatLab Code for Simple Convex Minimization, 1-8, 2017 Draft Version April 25, 2018 MatLab Code for Simple Convex Minimization James K. Peterson 1 * Abstract We look at MatLab code to solve a simple L 1

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline 1 Domains of Continuous Functions 2 The

More information

Algebraic Properties of Solutions of Linear Systems

Algebraic Properties of Solutions of Linear Systems Algebraic Properties of Solutions of Linear Systems In this chapter we will consider simultaneous first-order differential equations in several variables, that is, equations of the form f 1t,,,x n d f

More information

Newton s Cooling Model in Matlab and the Cooling Project!

Newton s Cooling Model in Matlab and the Cooling Project! Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton

More information

Example. Mathematics 255: Lecture 17. Example. Example (cont d) Consider the equation. d 2 y dt 2 + dy

Example. Mathematics 255: Lecture 17. Example. Example (cont d) Consider the equation. d 2 y dt 2 + dy Mathematics 255: Lecture 17 Undetermined Coefficients Dan Sloughter Furman University October 10, 2008 6y = 5e 4t. so the general solution of 0 = r 2 + r 6 = (r + 3)(r 2), 6y = 0 y(t) = c 1 e 3t + c 2

More information

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline 1 Riemann Sums 2 Riemann Sums In MatLab 3 Graphing

More information

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline Riemann Sums Riemann Sums In MatLab Graphing

More information

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0 Math 2250 Lab 4 Name/Unid: 1. (35 points) Leslie Leroy Irvin bails out of an airplane at the altitude of 16,000 ft, falls freely for 20 s, then opens his parachute. Assuming linear air resistance ρv ft/s

More information

Lecture 5b: Starting Matlab

Lecture 5b: Starting Matlab Lecture 5b: Starting Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 7, 2013 Outline 1 Resources 2 Starting Matlab 3 Homework

More information

Predator - Prey Model Trajectories are periodic

Predator - Prey Model Trajectories are periodic Predator - Prey Model Trajectories are periodic James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 4, 2013 Outline 1 Showing The PP

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 9, 2018 Outline 1 Extremal Values 2

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 2017 Outline Extremal Values The

More information

The Method of Laplace Transforms.

The Method of Laplace Transforms. The Method of Laplace Transforms. James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University May 25, 217 Outline 1 The Laplace Transform 2 Inverting

More information

Understand the existence and uniqueness theorems and what they tell you about solutions to initial value problems.

Understand the existence and uniqueness theorems and what they tell you about solutions to initial value problems. Review Outline To review for the final, look over the following outline and look at problems from the book and on the old exam s and exam reviews to find problems about each of the following topics.. Basics

More information

Old Math 330 Exams. David M. McClendon. Department of Mathematics Ferris State University

Old Math 330 Exams. David M. McClendon. Department of Mathematics Ferris State University Old Math 330 Exams David M. McClendon Department of Mathematics Ferris State University Last updated to include exams from Fall 07 Contents Contents General information about these exams 3 Exams from Fall

More information

Regression and Covariance

Regression and Covariance Regression and Covariance James K. Peterson Department of Biological ciences and Department of Mathematical ciences Clemson University April 16, 2014 Outline A Review of Regression Regression and Covariance

More information

Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs

Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs First Order DE 2.4 Linear vs. Nonlinear DE We recall the general form of the First Oreder DEs (FODE): dy = f(t, y) (1) dt where f(t, y) is a function

More information

Exam 2 Study Guide: MATH 2080: Summer I 2016

Exam 2 Study Guide: MATH 2080: Summer I 2016 Exam Study Guide: MATH 080: Summer I 016 Dr. Peterson June 7 016 First Order Problems Solve the following IVP s by inspection (i.e. guessing). Sketch a careful graph of each solution. (a) u u; u(0) 0.

More information

Mathematical Induction

Mathematical Induction Mathematical Induction James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 12, 2017 Outline Introduction to the Class Mathematical Induction

More information

Predator - Prey Model Trajectories are periodic

Predator - Prey Model Trajectories are periodic Predator - Prey Model Trajectories are periodic James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 4, 2013 Outline Showing The PP Trajectories

More information

Uniform Convergence and Series of Functions

Uniform Convergence and Series of Functions Uniform Convergence and Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 7, 017 Outline Uniform Convergence Tests

More information

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline Complex Numbers Complex Number Calculations Complex

More information

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline 1 Complex Numbers 2 Complex Number Calculations

More information

Math Ordinary Differential Equations

Math Ordinary Differential Equations Math 411 - Ordinary Differential Equations Review Notes - 1 1 - Basic Theory A first order ordinary differential equation has the form x = f(t, x) (11) Here x = dx/dt Given an initial data x(t 0 ) = x

More information

ACM/CMS 107 Linear Analysis & Applications Fall 2016 Assignment 4: Linear ODEs and Control Theory Due: 5th December 2016

ACM/CMS 107 Linear Analysis & Applications Fall 2016 Assignment 4: Linear ODEs and Control Theory Due: 5th December 2016 ACM/CMS 17 Linear Analysis & Applications Fall 216 Assignment 4: Linear ODEs and Control Theory Due: 5th December 216 Introduction Systems of ordinary differential equations (ODEs) can be used to describe

More information

Ordinary Differential Equations (ODEs) Background. Video 17

Ordinary Differential Equations (ODEs) Background. Video 17 Ordinary Differential Equations (ODEs) Background Video 17 Daniel J. Bodony Department of Aerospace Engineering University of Illinois at Urbana-Champaign In this video you will learn... 1 What ODEs are

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline Domains of Continuous Functions The Intermediate

More information

Linear algebra and differential equations (Math 54): Lecture 20

Linear algebra and differential equations (Math 54): Lecture 20 Linear algebra and differential equations (Math 54): Lecture 20 Vivek Shende April 7, 2016 Hello and welcome to class! Last time We started discussing differential equations. We found a complete set of

More information

Differentiating Series of Functions

Differentiating Series of Functions Differentiating Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 30, 017 Outline 1 Differentiating Series Differentiating

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

What if the characteristic equation has a double root?

What if the characteristic equation has a double root? MA 360 Lecture 17 - Summary of Recurrence Relations Friday, November 30, 018. Objectives: Prove basic facts about basic recurrence relations. Last time, we looked at the relational formula for a sequence

More information

More Protein Synthesis and a Model for Protein Transcription Error Rates

More Protein Synthesis and a Model for Protein Transcription Error Rates More Protein Synthesis and a Model for Protein James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 3, 2013 Outline 1 Signal Patterns Example

More information

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method

Outline. Additional Nonlinear Systems. Abstract. Finding Equilibrium Points Numerically. Newton s Method Outline Finding Equilibrium Points Numerically Additional Nonlinear Systems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University June 13, 2017

More information

Section 7.4 Runge-Kutta Methods

Section 7.4 Runge-Kutta Methods Section 7.4 Runge-Kutta Methods Key terms: Taylor methods Taylor series Runge-Kutta; methods linear combinations of function values at intermediate points Alternatives to second order Taylor methods Fourth

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 Geometric Series

More information

SMA 208: Ordinary differential equations I

SMA 208: Ordinary differential equations I SMA 208: Ordinary differential equations I First Order differential equations Lecturer: Dr. Philip Ngare (Contacts: pngare@uonbi.ac.ke, Tue 12-2 PM) School of Mathematics, University of Nairobi Feb 26,

More information

Selected Solutions: 3.5 (Undetermined Coefficients)

Selected Solutions: 3.5 (Undetermined Coefficients) Selected Solutions: 3.5 (Undetermined Coefficients) In Exercises 1-10, we want to apply the ideas from the table to specific DEs, and solve for the coefficients as well. If you prefer, you might start

More information

Riemann Integration Theory

Riemann Integration Theory Riemann Integration Theory James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 3, 2017 Outline 1 Uniform Partition Riemann Sums 2 Refinements

More information

Solutions to Homework 5, Introduction to Differential Equations, 3450: , Dr. Montero, Spring y 4y = 48t 3.

Solutions to Homework 5, Introduction to Differential Equations, 3450: , Dr. Montero, Spring y 4y = 48t 3. Solutions to Homework 5, Introduction to Differential Equations, 3450:335-003, Dr. Montero, Spring 2009 Problem 1. Find a particular solution to the differential equation 4y = 48t 3. Solution: First we

More information

Homework 3 Solutions

Homework 3 Solutions 18-290 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 2018 Homework 3 Solutions Part One 1. (25 points) The following systems have x(t) or x[n] as input and y(t) or y[n] as output. For each

More information

Lecture 31. Basic Theory of First Order Linear Systems

Lecture 31. Basic Theory of First Order Linear Systems Math 245 - Mathematics of Physics and Engineering I Lecture 31. Basic Theory of First Order Linear Systems April 4, 2012 Konstantin Zuev (USC) Math 245, Lecture 31 April 4, 2012 1 / 10 Agenda Existence

More information

Graded Project #1. Part 1. Explicit Runge Kutta methods. Goals Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo

Graded Project #1. Part 1. Explicit Runge Kutta methods. Goals Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo 2008-11-07 Graded Project #1 Differential Equations FMN130 Gustaf Söderlind and Carmen Arévalo This homework is due to be handed in on Wednesday 12 November 2008 before 13:00 in the post box of the numerical

More information

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012

Polytechnic Institute of NYU MA 2132 Final Practice Answers Fall 2012 Polytechnic Institute of NYU MA Final Practice Answers Fall Studying from past or sample exams is NOT recommended. If you do, it should be only AFTER you know how to do all of the homework and worksheet

More information

Derivatives and the Product Rule

Derivatives and the Product Rule Derivatives and the Product Rule James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline 1 Differentiability 2 Simple Derivatives

More information

Convergence of Sequences

Convergence of Sequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 2 Homework Definition Let (a n ) n k be a sequence of real numbers.

More information

Basic Linear Algebra in MATLAB

Basic Linear Algebra in MATLAB Basic Linear Algebra in MATLAB 9.29 Optional Lecture 2 In the last optional lecture we learned the the basic type in MATLAB is a matrix of double precision floating point numbers. You learned a number

More information

Lecture 5: Special Functions and Operations

Lecture 5: Special Functions and Operations Lecture 5: Special Functions and Operations Feedback of Assignment2 Rotation Transformation To rotate by angle θ counterclockwise, set your transformation matrix A as [ ] cos θ sin θ A =. sin θ cos θ We

More information

The Derivative of a Function

The Derivative of a Function The Derivative of a Function James K Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 1, 2017 Outline A Basic Evolutionary Model The Next Generation

More information

Antiderivatives! Outline. James K. Peterson. January 28, Antiderivatives. Simple Fractional Power Antiderivatives

Antiderivatives! Outline. James K. Peterson. January 28, Antiderivatives. Simple Fractional Power Antiderivatives Antiderivatives! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline Antiderivatives Simple Fractional Power Antiderivatives

More information

The SIR Disease Model Trajectories and MatLab

The SIR Disease Model Trajectories and MatLab The SIR Disease Model Trajectories and MatLab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 17, 2013 Outline Reviewing the SIR

More information

A First Course in Elementary Differential Equations: Problems and Solutions. Marcel B. Finan Arkansas Tech University c All Rights Reserved

A First Course in Elementary Differential Equations: Problems and Solutions. Marcel B. Finan Arkansas Tech University c All Rights Reserved A First Course in Elementary Differential Equations: Problems and Solutions Marcel B. Finan Arkansas Tech University c All Rights Reserved 1 4 The Method of Variation of Parameters Problem 4.1 Solve y

More information

Constrained Optimization in Two Variables

Constrained Optimization in Two Variables in Two Variables James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 17, 216 Outline 1 2 What Does the Lagrange Multiplier Mean? Let

More information

Fourier Series Code. James K. Peterson. April 9, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Fourier Series Code. James K. Peterson. April 9, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Fourier Series Code James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 9, 2018 Outline 1 We will need to approximate Fourier series expansions

More information

First Order Differential Equations Lecture 3

First Order Differential Equations Lecture 3 First Order Differential Equations Lecture 3 Dibyajyoti Deb 3.1. Outline of Lecture Differences Between Linear and Nonlinear Equations Exact Equations and Integrating Factors 3.. Differences between Linear

More information

Lecture 9. Systems of Two First Order Linear ODEs

Lecture 9. Systems of Two First Order Linear ODEs Math 245 - Mathematics of Physics and Engineering I Lecture 9. Systems of Two First Order Linear ODEs January 30, 2012 Konstantin Zuev (USC) Math 245, Lecture 9 January 30, 2012 1 / 15 Agenda General Form

More information

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0 Math 2250 Lab 4 Name/Unid: 1. (25 points) A man bails out of an airplane at the altitute of 12,000 ft, falls freely for 20 s, then opens his parachute. Assuming linear air resistance ρv ft/s 2, taking

More information

Antiderivatives! James K. Peterson. January 28, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Antiderivatives! James K. Peterson. January 28, Department of Biological Sciences and Department of Mathematical Sciences Clemson University ! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline 1 2 Simple Fractional Power Abstract This lecture is going to talk

More information

1 Solution to Homework 4

1 Solution to Homework 4 Solution to Homework Section. 5. The characteristic equation is r r + = (r )(r ) = 0 r = or r =. y(t) = c e t + c e t y = c e t + c e t. y(0) =, y (0) = c + c =, c + c = c =, c =. To find the maximum value

More information

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP

MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP MAT 275 Laboratory 4 MATLAB solvers for First-Order IVP In this laboratory session we will learn how to. Use MATLAB solvers for solving scalar IVP 2. Use MATLAB solvers for solving higher order ODEs and

More information

ODE Homework 1. Due Wed. 19 August 2009; At the beginning of the class

ODE Homework 1. Due Wed. 19 August 2009; At the beginning of the class ODE Homework Due Wed. 9 August 2009; At the beginning of the class. (a) Solve Lẏ + Ry = E sin(ωt) with y(0) = k () L, R, E, ω are positive constants. (b) What is the limit of the solution as ω 0? (c) Is

More information

Lectures - Week 10 Introduction to Ordinary Differential Equations (ODES) First Order Linear ODEs

Lectures - Week 10 Introduction to Ordinary Differential Equations (ODES) First Order Linear ODEs Lectures - Week 10 Introuction to Orinary Differential Equations (ODES) First Orer Linear ODEs When stuying ODEs we are consiering functions of one inepenent variable, e.g., f(x), where x is the inepenent

More information

Page 684. Lecture 40: Coordinate Transformations: Time Transformations Date Revised: 2009/02/02 Date Given: 2009/02/02

Page 684. Lecture 40: Coordinate Transformations: Time Transformations Date Revised: 2009/02/02 Date Given: 2009/02/02 Page 684 Lecture 40: Coordinate Transformations: Time Transformations Date Revised: 2009/02/02 Date Given: 2009/02/02 Time Transformations Section 12.5 Symmetries: Time Transformations Page 685 Time Translation

More information

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x =

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x = 2.6 #10: Determine if the equation is exact. If so, solve it. Math 315-01 Homework 3 Solutions (1 y sin x) dx + (cos x) dy = 0 Solution: Let P (x, y) = 1 y sin x and Q(x, y) = cos x. Note P = sin x = Q

More information

SOLVING DIFFERENTIAL EQUATIONS. Amir Asif. Department of Computer Science and Engineering York University, Toronto, ON M3J1P3

SOLVING DIFFERENTIAL EQUATIONS. Amir Asif. Department of Computer Science and Engineering York University, Toronto, ON M3J1P3 SOLVING DIFFERENTIAL EQUATIONS Amir Asif Department of Computer Science and Engineering York University, Toronto, ON M3J1P3 ABSTRACT This article reviews a direct method for solving linear, constant-coefficient

More information

Constrained Optimization in Two Variables

Constrained Optimization in Two Variables Constrained Optimization in Two Variables James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 17, 216 Outline Constrained Optimization

More information

20D - Homework Assignment 4

20D - Homework Assignment 4 Brian Bowers (TA for Hui Sun) MATH 0D Homework Assignment November, 03 0D - Homework Assignment First, I will give a brief overview of how to use variation of parameters. () Ensure that the differential

More information

Math 4B Notes. Written by Victoria Kala SH 6432u Office Hours: T 12:45 1:45pm Last updated 7/24/2016

Math 4B Notes. Written by Victoria Kala SH 6432u Office Hours: T 12:45 1:45pm Last updated 7/24/2016 Math 4B Notes Written by Victoria Kala vtkala@math.ucsb.edu SH 6432u Office Hours: T 2:45 :45pm Last updated 7/24/206 Classification of Differential Equations The order of a differential equation is the

More information

Section 2.4 Linear Equations

Section 2.4 Linear Equations Section 2.4 Linear Equations Key Terms: Linear equation Homogeneous linear equation Nonhomogeneous (inhomogeneous) linear equation Integrating factor General solution Variation of parameters A first-order

More information

21-256: Partial differentiation

21-256: Partial differentiation 21-256: Partial differentiation Clive Newstead, Thursday 5th June 2014 This is a summary of the important results about partial derivatives and the chain rule that you should know. Partial derivatives

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2017 Outline Geometric Series The

More information

Short Review of Basic Mathematics

Short Review of Basic Mathematics Short Review of Basic Mathematics Tomas Co January 1, 1 c 8 Tomas Co, all rights reserve Contents 1 Review of Functions 5 11 Mathematical Ientities 5 1 Drills 7 1 Answers to Drills 8 Review of ODE Solutions

More information

Dr. Allen Back. Oct. 6, 2014

Dr. Allen Back. Oct. 6, 2014 Dr. Allen Back Oct. 6, 2014 Distribution Min=48 Max=100 Q1=74 Median=83 Q3=91.5 mean = 81.48 std. dev. = 12.5 Distribution Distribution: (The letters will not be directly used.) Scores Freq. 100 2 98-99

More information

1 Quadratic Functions

1 Quadratic Functions Unit 1 Quadratic Functions Lecture Notes Introductory Algebra Page 1 of 8 1 Quadratic Functions In this unit we will learn many of the algebraic techniques used to work with the quadratic function fx)

More information

AM205: Assignment 3 (due 5 PM, October 20)

AM205: Assignment 3 (due 5 PM, October 20) AM25: Assignment 3 (due 5 PM, October 2) For this assignment, first complete problems 1, 2, 3, and 4, and then complete either problem 5 (on theory) or problem 6 (on an application). If you submit answers

More information

Convergence of Sequences

Convergence of Sequences Convergence of Sequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 12, 2018 Outline Convergence of Sequences Definition Let

More information

Integration and Differentiation Limit Interchange Theorems

Integration and Differentiation Limit Interchange Theorems Integration and Differentiation Limit Interchange Theorems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 11, 2018 Outline 1 A More

More information

HW2 Solutions. MATH 20D Fall 2013 Prof: Sun Hui TA: Zezhou Zhang (David) October 14, Checklist: Section 2.6: 1, 3, 6, 8, 10, 15, [20, 22]

HW2 Solutions. MATH 20D Fall 2013 Prof: Sun Hui TA: Zezhou Zhang (David) October 14, Checklist: Section 2.6: 1, 3, 6, 8, 10, 15, [20, 22] HW2 Solutions MATH 20D Fall 2013 Prof: Sun Hui TA: Zezhou Zhang (David) October 14, 2013 Checklist: Section 2.6: 1, 3, 6, 8, 10, 15, [20, 22] Section 3.1: 1, 2, 3, 9, 16, 18, 20, 23 Section 3.2: 1, 2,

More information