374: Solving Homogeneous Linear Differential Equations with Constant Coefficients

Size: px
Start display at page:

Download "374: Solving Homogeneous Linear Differential Equations with Constant Coefficients"

Transcription

1 374: Solving Homogeneous Linear Differential Equations with Constant Coefficients Enter this Clear command to make sure all variables we may use are cleared out of memory. In[1]:= Clearx, y, c1, c2, c3, c4, c5, c6, Y Homogeneous Linear Differential Equations Consider the nth order linear homogeneous differential equation with constant coefficients of the form b 0 y n b n-1 y ' + b n y = 0. (1) The general solution to (1) is y = c 1 y 1 + c 2 y c n y n, where y 1, y 2,..., y n is a linearly independent set of solutions of (1). To find the solutions y 1, y 2,..., y n, we write (1) in the form f D y = 0 where f D = b 0 D n b n-1 D + b n and find the roots of the auxiliary equation f m = 0. To check that the n solutions y 1, y 2,..., y n that we find are linearly independent, we can compute the Wronskian of y 1, y 2,..., y n. Example 1: Solve y 6-11 y y y''' y'' - 65 y' = 0 Find the general solution. This differential equation can be written in differential operator form as D 6-11 D D D D 2-65 D y = 0. Thus, the auxiliary equation is m 6-11 m m m m 2-65 m = 0. To find the roots of the auxiliary equation, we can use Mathematica's Factor or Solve commands. Factor will attempt to factor a polynomial into a product of binomial and irreducible quadratic terms. Solve will solve an equation for specified variables. Notice that in the Solve command, we include the equal sign (the syntax in Mathematica is = =). Factor left-hand side of the auxiliary equation: In[2]:= Out[2]= Factorm^6 11 m^5 92 m^4 220 m^3 203 m^2 65 m 1 m 3 m 65 8m m 2 Find the roots of the auxiliary equation and form the general solution: In[3]:= Out[3]= Solvem^6 11 m^5 92 m^4 220 m^3 203 m^2 65 m 0, m m 0, m 1, m 1, m 1, m 4 7, m 4 7 Thus, the roots of the auxiliary equation are: m = 0, 1, 1, 1, 4 ± 7 Â. The general solution to this differential equation is: y = c 1 + c 2 x + c 3 x x + c 4 x 2 x + c 5 4 x cos 7 x + c 6 4 x sin 7 x.

2 2 374SolvingHomogeneousLinearEquationsWithConstantCoefficientsFall2017.nb Check linear independence of the "different" solutions that make up the general solution via the Wronskian. Check that the six "different" functions found are linearly independent and that the given general solution is actually a solution of the differential equation! The following set of commands saves the six functions in memory as FS, sets up the n x n matrix with rows corresponding to the functions and the first n-1 derivatives of each function, and defines the Wronskian to be the determinant of this matrix. To evaluate the Wronskian function at x, enter W[x]. Save the set of solutions in memory: In[4]:= FS 1, E^x, x E^x, x^2 E^x, E^4 x Cos7 x, E^4 x Sin7 x; Construct the n x n matrix of functions and derivatives up to the (n-1)st derivative: In[5]:= TableTableDFSi, x, j, i, 1, LengthFS, j, 0, LengthFS 1 MatrixForm Out[5]//MatrixForm= 1 x x x x x 2 4x Cos7 x 0 x x x x 2 x x x x 2 4 4x Cos7 x 7 4x Sin7 x 7 4x Cos 0 x 2 x x x 2 x 4 x x x x x Cos7 x 56 4x Sin7 x 56 4x Cos 0 x 3 x x x 6 x 6 x x x x x Cos7 x 7 4x Sin7 x 7 4x Cos 0 x 4 x x x 12 x 8 x x x x x Cos7 x x Sin7 x x Cos 0 x 5 x x x 20 x 10 x x x x x Cos7 x x Sin7 x x Cos In[6]:= The Wronskian is the determinant of this n x n matrix: Wx_ : Simplify DetTableTableDFSi, x, j, i, 1, LengthFS, j, 0, LengthFS 1 Check that the Wronskian is defined. If it is non-zero on an interval, the functions are linearly independent on that interval! In[7]:= Out[7]= Wx x Check that the general solution really is a solution to the differential equation. Finally, we can check that our general solution is indeed a solution to the differential equation by defining the general solution as a function in Mathematica, substituting the general solution into the left-hand side of the differential equation, and simplifying to see if we get the right-hand side! Define our general solution as a function in Mathematica: In[8]:= In[9]:= Out[9]= yx_ : c1 1 c2 E^x c3 x E^x c4 x^2 E^x c5 E^4 x Cos7 x c6 E^4 x Sin7 x Check that we defined the function correctly: yx c1 c2 x c3 x x c4 x x 2 c5 4x Cos7 x c6 4x Sin7 x Substitute our solution into the left-hand side of the differential equation:

3 374SolvingHomogeneousLinearEquationsWithConstantCoefficientsFall2017.nb 3 In[10]:= Out[10]= In[11]:= Out[11]= 0 Dyx, x, 6 11 Dyx, x, 5 92 Dyx, x, y'''x 203 y''x 65 y'x c2 x 6c3 x 30 c4 x c3 x x 12 c4 x x c4 x x c5 4x Cos7 x 7336 c6 4x Cos7 x 7336 c5 4x Sin7 x c6 4x Sin7 x 92 c2 x 4c3 x 12 c4 x c3 x x 8c4 x x c4 x x c5 4x Cos7 x 3696 c6 4x Cos7 x 3696 c5 4x Sin7 x 2047 c6 4x Sin7 x 220 c2 x 3c3 x 6c4 x c3 x x 6c4 x x c4 x x c5 4x Cos7 x 7c6 4x Cos7 x 7c5 4x Sin7 x 524 c6 4x Sin7 x 203 c2 x 2c3 x 2c4 x c3 x x 4c4 x x c4 x x 2 33 c5 4x Cos7 x 56 c6 4x Cos7 x 56 c5 4x Sin7 x 33 c6 4x Sin7 x 65 c2 x c3 x c3 x x 2c4 x x c4 x x 2 4c5 4x Cos7 x 7c6 4x Cos7 x 7c5 4x Sin7 x 4c6 4x Sin7 x 11 c2 x 5c3 x 20 c4 x c3 x x 10 c4 x x c4 x x c5 4x Cos7 x c6 4x Cos7 x c5 4x Sin7 x c6 4x Sin7 x Simplify our calculation (% means the last output). Simplify Example 2: Solve the initial value problem (IVP): y 6-11 y y y''' y'' - 65 y' = 0; y0 = 1; y' 0 = 0; y'' 0 =-1; y''' 0 = 5; y 4 0 =-2; y 5 0 = 3 Since on any interval, this differential equation is normal, it follows from Theorem 4.2 (Existence and Uniqueness) that with x 0 = 0 and y 0 = 1, y 1 = 0, y 2 =-1, y 3 = 5, y 4 =-2, y 5 = 3, this IVP has a unique solution. We've already found the general solution to the homogeneous problem, so all we have to do is apply our initial conditions to the general solution we found above in Example 1. Check to make sure our function for the general solution y, which we found above, is defined correctly: In[12]:= Out[12]= yx c1 c2 x c3 x x c4 x x 2 c5 4x Cos7 x c6 4x Sin7 x Find the choices of coefficients c 1, c 2,..., c 6 for the solution to this IVP. Apply the initial conditions at x = 0 to get a system of six equations in the six unknown coefficients c 1, c 2,..., c 6. Here are two ways to enter the same initial data and solve the resulting system. The first command uses prime notation for all the derivatives and the second command uses the replacement operator (/.) for the higher ordered derivatives. In the second command, the fourth and fifth derivatives of y are computed first, after which x is replaced by 0. In[13]:= Solvey0 1, y'0 0, y''0 1, y'''0 5, y''''0 2, y'''''0 3, c1, c2, c3, c4, c5, c6 Out[13]= c ,c2 13,c ,c4,c5 6427,c6 6161

4 4 374SolvingHomogeneousLinearEquationsWithConstantCoefficientsFall2017.nb In[14]:= Solvey0 1, y'0 0, y''0 1, y'''0 5, Dyx, x, 4. x 0 2, Dyx, x, 5. x 0 3, c1, c2, c3, c4, c5, c6 Out[14]= c ,c2 13,c ,c4,c5 6427,c Define our solution and check that it really is the solution to our IVP. In[15]:= Yx_ : E^x 9163 x E^x 571 x^2 E^x 6427 E^4 x Cos7 x 6161 E^4 x Sin7 x Check to make sure Y is defined correctly. In[16]:= Yx Out[16]= x 9163 x x x Cos7 x x Sin7 x Check that Y[x] is the solution to this IVP: In[17]:= Out[17]= DYx, x, 6 11 DYx, x, 5 92 DYx, x, Y'''x 203 Y''x 65 Y'x x x x x x x x x x x Cos7 x x Cos7 x x Cos7 x x Sin7 x x Sin7 x x Sin7 x 5295 x 1767 x x x Cos7 x x Sin7 x x x x x x x x Cos7 x x Cos7 x x Sin7 x x Sin7 x In[18]:= Out[18]= 0 Simplify In[19]:= Out[19]= 1 Y0 In[20]:= Out[20]= 0 Y'0 In[21]:= Out[21]= Y''0 1

5 374SolvingHomogeneousLinearEquationsWithConstantCoefficientsFall2017.nb 5 In[22]:= Out[22]= 5 Y'''0 In[23]:= DYx, x, 4. x 0 Out[23]= 2 In[24]:= DYx, x, 5. x 0 Out[24]= 3 In[25]:= PlotYx, x, 1, Out[25]= Using DSolve to Solve Differential Equations We can use the command DSolve to solve differential equations! The next two commands show how to solve Examples 1 and 2 using this command. The Clear command resets all variables we've used. If you are getting errors, make sure you enter this command. If you still get errors, close this notebook, restart Mathematica, ignore the first two sections and start with this section! Using DSolve to solve the differential equation: y 6-11 y y y''' y'' - 65 y' = 0 In[26]:= Clearx, y, c1, c2, c3, c4, c5, c6, Y In[27]:= DSolveDyx, x, 6 11 Dyx, x, 5 92 Dyx, x, y'''x 203 y''x 65 y'x 0, yx, x Out[27]= yx C x 65 C3 1 x C4 2 2xx 2 C5 3x 7C14C2 Cos7 x 3x 4C17C2 Sin7 x Compare this solution to the general solution we got above. Are they the same?

6 6 374SolvingHomogeneousLinearEquationsWithConstantCoefficientsFall2017.nb In[28]:= ExpandC x 65 C3 1 x C4 2 2xx 2 C5 3x 7C14C2 Cos7 x 3x 4C17C2 Sin7 x Out[28]= x C3 x C4 x xc42 x C5 2 x xc5 x x 2 C5 C x C1 Cos7 x x C2 Cos7 x x C1 Sin7 x x C2 Sin7 x Using DSolve to solve the IVP : y 6-11 y y y''' y'' - 65 y' = 0; y0 = 1; y' 0 = 0; y'' 0 =-1; y''' 0 = 5; y 4 0 =-2; y 5 0 = 3 In[29]:= Out[29]= DSolveDyx, x, 6 11 Dyx, x, 5 92 Dyx, x, y'''x 203 y''x 65 y'x 0, y0 1, y'0 0, y''0 1, y'''0 5, y''''0 2, y'''''0 3, yx, x 1 yx x x x x x x Cos7 x x Sin7 x Compare this solution to the IVP solution we got above. Are they the same? In[30]:= 1 Expand x x x x x x Cos7 x x Sin7 x Out[30]= x 9163 x x x Cos7 x x Sin7 x Homework The commands used above can also be used to solve a non-homogeneous linear differential equation. Using commands such as the ones given above, solve the following differential equation: D 2-4 y = 2 x + 2.

Homework #6 Solutions

Homework #6 Solutions Problems Section.1: 6, 4, 40, 46 Section.:, 8, 10, 14, 18, 4, 0 Homework #6 Solutions.1.6. Determine whether the functions f (x) = cos x + sin x and g(x) = cos x sin x are linearly dependent or linearly

More information

Chapter 4. Higher-Order Differential Equations

Chapter 4. Higher-Order Differential Equations Chapter 4 Higher-Order Differential Equations i THEOREM 4.1.1 (Existence of a Unique Solution) Let a n (x), a n,, a, a 0 (x) and g(x) be continuous on an interval I and let a n (x) 0 for every x in this

More information

3.4. ZEROS OF POLYNOMIAL FUNCTIONS

3.4. ZEROS OF POLYNOMIAL FUNCTIONS 3.4. ZEROS OF POLYNOMIAL FUNCTIONS What You Should Learn Use the Fundamental Theorem of Algebra to determine the number of zeros of polynomial functions. Find rational zeros of polynomial functions. Find

More information

Chapter 13: General Solutions to Homogeneous Linear Differential Equations

Chapter 13: General Solutions to Homogeneous Linear Differential Equations Worked Solutions 1 Chapter 13: General Solutions to Homogeneous Linear Differential Equations 13.2 a. Verifying that {y 1, y 2 } is a fundamental solution set: We have y 1 (x) = cos(2x) y 1 (x) = 2 sin(2x)

More information

Theorem 3: The solution space to the second order homogeneous linear differential equation y p x y q x y = 0 is 2-dimensional.

Theorem 3: The solution space to the second order homogeneous linear differential equation y p x y q x y = 0 is 2-dimensional. Unlike in the previous example, and unlike what was true for the first order linear differential equation y p x y = q x there is not a clever integrating factor formula that will always work to find the

More information

Assignment # 7, Math 370, Fall 2018 SOLUTIONS: y = e x. y = e 3x + 4xe 3x. y = e x cosx.

Assignment # 7, Math 370, Fall 2018 SOLUTIONS: y = e x. y = e 3x + 4xe 3x. y = e x cosx. Assignment # 7, Math 370, Fall 2018 SOLUTIONS: Problem 1: Solve the equations (a) y 8y + 7y = 0, (i) y(0) = 1, y (0) = 1. Characteristic equation: α 2 8α+7 = 0, = 64 28 = 36 so α 1,2 = (8 ±6)/2 and α 1

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

Math 253 Homework due Wednesday, March 9 SOLUTIONS

Math 253 Homework due Wednesday, March 9 SOLUTIONS Math 53 Homework due Wednesday, March 9 SOLUTIONS 1. Do Section 8.8, problems 11,, 15, 17 (these problems have to do with Taylor s Inequality, and they are very similar to what we did on the last homework.

More information

Math 2142 Homework 5 Part 1 Solutions

Math 2142 Homework 5 Part 1 Solutions Math 2142 Homework 5 Part 1 Solutions Problem 1. For the following homogeneous second order differential equations, give the general solution and the particular solution satisfying the given initial conditions.

More information

Review for Exam 2. Review for Exam 2.

Review for Exam 2. Review for Exam 2. Review for Exam 2. 5 or 6 problems. No multiple choice questions. No notes, no books, no calculators. Problems similar to homeworks. Exam covers: Regular-singular points (5.5). Euler differential equation

More information

10. e tan 1 (y) 11. sin 3 x

10. e tan 1 (y) 11. sin 3 x MATH B FINAL REVIEW DISCLAIMER: WHAT FOLLOWS IS A LIST OF PROBLEMS, CONCEPTUAL QUESTIONS, TOPICS, AND SAMPLE PROBLEMS FROM THE TEXTBOOK WHICH COMPRISE A HEFTY BUT BY NO MEANS EXHAUSTIVE LIST OF MATERIAL

More information

MATH 3321 Sample Questions for Exam 3. 3y y, C = Perform the indicated operations, if possible: (a) AC (b) AB (c) B + AC (d) CBA

MATH 3321 Sample Questions for Exam 3. 3y y, C = Perform the indicated operations, if possible: (a) AC (b) AB (c) B + AC (d) CBA MATH 33 Sample Questions for Exam 3. Find x and y so that x 4 3 5x 3y + y = 5 5. x = 3/7, y = 49/7. Let A = 3 4, B = 3 5, C = 3 Perform the indicated operations, if possible: a AC b AB c B + AC d CBA AB

More information

VANDERBILT UNIVERSITY. MATH 2610 ORDINARY DIFFERENTIAL EQUATIONS Practice for test 1 solutions

VANDERBILT UNIVERSITY. MATH 2610 ORDINARY DIFFERENTIAL EQUATIONS Practice for test 1 solutions VANDERBILT UNIVERSITY MATH 2610 ORDINARY DIFFERENTIAL EQUATIONS Practice for test 1 solutions The first test will cover all material discussed up to (including) section 4.5. Important: The solutions below

More information

Work sheet / Things to know. Chapter 3

Work sheet / Things to know. Chapter 3 MATH 251 Work sheet / Things to know 1. Second order linear differential equation Standard form: Chapter 3 What makes it homogeneous? We will, for the most part, work with equations with constant coefficients

More information

MathB65 Ch 4 VII, VIII, IX.notebook. November 06, 2017

MathB65 Ch 4 VII, VIII, IX.notebook. November 06, 2017 Chapter 4: Polynomials I. Exponents & Their Properties II. Negative Exponents III. Scientific Notation IV. Polynomials V. Addition & Subtraction of Polynomials VI. Multiplication of Polynomials VII. Greatest

More information

is any vector v that is a sum of scalar multiples of those vectors, i.e. any v expressible as v = c 1 v n ... c n v 2 = 0 c 1 = c 2

is any vector v that is a sum of scalar multiples of those vectors, i.e. any v expressible as v = c 1 v n ... c n v 2 = 0 c 1 = c 2 Math 225-4 Week 8 Finish sections 42-44 and linear combination concepts, and then begin Chapter 5 on linear differential equations, sections 5-52 Mon Feb 27 Use last Friday's notes to talk about linear

More information

CHAPTER 5. Higher Order Linear ODE'S

CHAPTER 5. Higher Order Linear ODE'S A SERIES OF CLASS NOTES FOR 2005-2006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 2 A COLLECTION OF HANDOUTS ON SCALAR LINEAR ORDINARY

More information

Theory of Higher-Order Linear Differential Equations

Theory of Higher-Order Linear Differential Equations Chapter 6 Theory of Higher-Order Linear Differential Equations 6.1 Basic Theory A linear differential equation of order n has the form a n (x)y (n) (x) + a n 1 (x)y (n 1) (x) + + a 0 (x)y(x) = b(x), (6.1.1)

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

Section September 6, If n = 3, 4, 5,..., the polynomial is called a cubic, quartic, quintic, etc.

Section September 6, If n = 3, 4, 5,..., the polynomial is called a cubic, quartic, quintic, etc. Section 2.1-2.2 September 6, 2017 1 Polynomials Definition. A polynomial is an expression of the form a n x n + a n 1 x n 1 + + a 1 x + a 0 where each a 0, a 1,, a n are real numbers, a n 0, and n is a

More information

Higher-order differential equations

Higher-order differential equations Higher-order differential equations Peyam Tabrizian Wednesday, November 16th, 2011 This handout is meant to give you a couple more example of all the techniques discussed in chapter 6, to counterbalance

More information

5.1 Second order linear differential equations, and vector space theory connections.

5.1 Second order linear differential equations, and vector space theory connections. Math 2250-004 Wed Mar 1 5.1 Second order linear differential equations, and vector space theory connections. Definition: A vector space is a collection of objects together with and "addition" operation

More information

Chapter Homogeneous System with Constant Coeffici

Chapter Homogeneous System with Constant Coeffici Chapter 7 7.5 Homogeneous System with Constant Coefficients Homogeneous System with constant coefficients We consider homogeneous linear systems: x = Ax A is an n n matrix with constant entries () As in

More information

Higher Order Linear ODEs

Higher Order Linear ODEs c03.qxd 6/18/11 2:57 PM Page 57 CHAPTER 3 Higher Order Linear ODEs Chapters 1 and 2 demonstrate and illustrate that first- and second-order ODEs are, by far, the most important ones in usual engineering

More information

Combining Like Terms in Polynomials

Combining Like Terms in Polynomials Section 1 6: Combining Like Terms in Polynomials Polynomials A polynomial is an expression that has two or more terms each separated by a + or sign. If the expression has only one term it is called a monomial.

More information

HP-15C Nth-degree Polynomial Fitting

HP-15C Nth-degree Polynomial Fitting HP-15C Nth-degree Polynomial Fitting Valentín Albillo (Ex-PPC #4747, HPCC #1075) It frequently happens, both in theoretical problems and in real-life applications, that we ve got a series of data points

More information

Linear Independence. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics

Linear Independence. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics Linear Independence MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Introduction Given a set of vectors {v 1, v 2,..., v r } and another vector v span{v 1, v 2,...,

More information

Worksheet # 2: Higher Order Linear ODEs (SOLUTIONS)

Worksheet # 2: Higher Order Linear ODEs (SOLUTIONS) Name: November 8, 011 Worksheet # : Higher Order Linear ODEs (SOLUTIONS) 1. A set of n-functions f 1, f,..., f n are linearly independent on an interval I if the only way that c 1 f 1 (t) + c f (t) +...

More information

Math 3 Variable Manipulation Part 4 Polynomials B COMPLEX NUMBERS A Complex Number is a combination of a Real Number and an Imaginary Number:

Math 3 Variable Manipulation Part 4 Polynomials B COMPLEX NUMBERS A Complex Number is a combination of a Real Number and an Imaginary Number: Math 3 Variable Manipulation Part 4 Polynomials B COMPLEX NUMBERS A Complex Number is a combination of a Real Number and an Imaginary Number: 1 Examples: 1 + i 39 + 3i 0.8.i + πi + i/ A Complex Number

More information

CHAPTER 2. Techniques for Solving. Second Order Linear. Homogeneous ODE s

CHAPTER 2. Techniques for Solving. Second Order Linear. Homogeneous ODE s A SERIES OF CLASS NOTES FOR 005-006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES A COLLECTION OF HANDOUTS ON SCALAR LINEAR ORDINARY DIFFERENTIAL

More information

4. Higher Order Linear DEs

4. Higher Order Linear DEs 4. Higher Order Linear DEs Department of Mathematics & Statistics ASU Outline of Chapter 4 1 General Theory of nth Order Linear Equations 2 Homogeneous Equations with Constant Coecients 3 The Method of

More information

Introduction to Mathematica

Introduction to Mathematica Introduction to Mathematica Seth F. Oppenheimer The purpose of this handout is to familiarize you with Mathematica. The Mathematics and Statistics Department computer lab is on the fourth floor of Allen

More information

Math 2Z03 - Tutorial # 4. Oct. 5th, 6th, 7th, 2015

Math 2Z03 - Tutorial # 4. Oct. 5th, 6th, 7th, 2015 Math 2Z03 - Tutorial # 4 Oct. 5th, 6th, 7th, 2015 Tutorial Info: Tutorial Website: http://ms.mcmaster.ca/ dedieula/2z03.html Office Hours: Mondays 3pm - 5pm (in the Math Help Centre) Tutorial #4: 3.1 Theory

More information

MATH 312 Section 4.3: Homogeneous Linear Equations with Constant Coefficients

MATH 312 Section 4.3: Homogeneous Linear Equations with Constant Coefficients MATH 312 Section 4.3: Homogeneous Linear Equations with Constant Coefficients Prof. Jonathan Duncan Walla Walla College Spring Quarter, 2007 Outline 1 Getting Started 2 Second Order Equations Two Real

More information

Direction: You are required to complete this test by Monday (April 24, 2006). In order to

Direction: You are required to complete this test by Monday (April 24, 2006). In order to Test 4 April 20, 2006 Name Math 522 Student Number Direction: You are required to complete this test by Monday (April 24, 2006). In order to receive full credit, answer each problem completely and must

More information

Chapter 3. Reading assignment: In this chapter we will cover Sections dx 1 + a 0(x)y(x) = g(x). (1)

Chapter 3. Reading assignment: In this chapter we will cover Sections dx 1 + a 0(x)y(x) = g(x). (1) Chapter 3 3 Introduction Reading assignment: In this chapter we will cover Sections 3.1 3.6. 3.1 Theory of Linear Equations Recall that an nth order Linear ODE is an equation that can be written in the

More information

Only this exam and a pen or pencil should be on your desk.

Only this exam and a pen or pencil should be on your desk. Lin. Alg. & Diff. Eq., Spring 16 Student ID Circle your section: 31 MWF 8-9A 11 LATIMER LIANG 33 MWF 9-1A 11 LATIMER SHAPIRO 36 MWF 1-11A 37 CORY SHAPIRO 37 MWF 11-1P 736 EVANS WORMLEIGHTON 39 MWF -5P

More information

P.1: Algebraic Expressions, Mathematical Models, and Real Numbers

P.1: Algebraic Expressions, Mathematical Models, and Real Numbers Chapter P Prerequisites: Fundamental Concepts of Algebra Pre-calculus notes Date: P.1: Algebraic Expressions, Mathematical Models, and Real Numbers Algebraic expression: a combination of variables and

More information

LESSON 7.1 FACTORING POLYNOMIALS I

LESSON 7.1 FACTORING POLYNOMIALS I LESSON 7.1 FACTORING POLYNOMIALS I LESSON 7.1 FACTORING POLYNOMIALS I 293 OVERVIEW Here s what you ll learn in this lesson: Greatest Common Factor a. Finding the greatest common factor (GCF) of a set of

More information

SECOND-ORDER LINEAR ODEs. Generalities. Structure of general solution. Equations with constant coefficients

SECOND-ORDER LINEAR ODEs. Generalities. Structure of general solution. Equations with constant coefficients SECOND-ORDER LINEAR ODEs f +p(x)f +q(x)f = h(x) Generalities Structure of general solution Equations with constant coefficients Second order linear equations General form : d f df + p( x) + q( x) f = h(

More information

Math 240 Calculus III

Math 240 Calculus III DE Higher Order Calculus III Summer 2015, Session II Tuesday, July 28, 2015 Agenda DE 1. of order n An example 2. constant-coefficient linear Introduction DE We now turn our attention to solving linear

More information

We will work with two important rules for radicals. We will write them for square roots but they work for any root (cube root, fourth root, etc.).

We will work with two important rules for radicals. We will write them for square roots but they work for any root (cube root, fourth root, etc.). College algebra We will review simplifying radicals, exponents and their rules, multiplying polynomials, factoring polynomials, greatest common denominators, and solving rational equations. Pre-requisite

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

Calculus I Homework: The Tangent and Velocity Problems Page 1

Calculus I Homework: The Tangent and Velocity Problems Page 1 Calculus I Homework: The Tangent and Velocity Problems Page 1 Questions Example The point P (1, 1/2) lies on the curve y = x/(1 + x). a) If Q is the point (x, x/(1 + x)), use Mathematica to find the slope

More information

Chapter One: Pre-Geometry

Chapter One: Pre-Geometry Chapter One: Pre-Geometry Index: A: Solving Equations B: Factoring (GCF/DOTS) C: Factoring (Case Two leading into Case One) D: Factoring (Case One) E: Solving Quadratics F: Parallel and Perpendicular Lines

More information

Key Point. The nth order linear homogeneous equation with constant coefficients

Key Point. The nth order linear homogeneous equation with constant coefficients General Solutions of Higher-Order Linear Equations In section 3.1, we saw the following fact: Key Point. The nth order linear homogeneous equation with constant coefficients a n y (n) +... + a 2 y + a

More information

MathB65 Ch 4 IV, V, VI.notebook. October 31, 2017

MathB65 Ch 4 IV, V, VI.notebook. October 31, 2017 Part 4: Polynomials I. Exponents & Their Properties II. Negative Exponents III. Scientific Notation IV. Polynomials V. Addition & Subtraction of Polynomials VI. Multiplication of Polynomials VII. Greatest

More information

0.1 Problems to solve

0.1 Problems to solve 0.1 Problems to solve Homework Set No. NEEP 547 Due September 0, 013 DLH Nonlinear Eqs. reducible to first order: 1. 5pts) Find the general solution to the differential equation: y = [ 1 + y ) ] 3/. 5pts)

More information

Primitive Polynomial Testing

Primitive Polynomial Testing PrimitivePolynomialSearchExample.nb 1 Primitive Polynomial Testing Sean E. O'Connor artifex@seanerikoconnor.freeservers.com Abstract We describe methods for testing whether a polynomial is primitive or

More information

= 2e t e 2t + ( e 2t )e 3t = 2e t e t = e t. Math 20D Final Review

= 2e t e 2t + ( e 2t )e 3t = 2e t e t = e t. Math 20D Final Review Math D Final Review. Solve the differential equation in two ways, first using variation of parameters and then using undetermined coefficients: Corresponding homogenous equation: with characteristic equation

More information

Examples: Solving nth Order Equations

Examples: Solving nth Order Equations Atoms L. Euler s Theorem The Atom List First Order. Solve 2y + 5y = 0. Examples: Solving nth Order Equations Second Order. Solve y + 2y + y = 0, y + 3y + 2y = 0 and y + 2y + 5y = 0. Third Order. Solve

More information

Multiplication of Polynomials

Multiplication of Polynomials Summary 391 Chapter 5 SUMMARY Section 5.1 A polynomial in x is defined by a finite sum of terms of the form ax n, where a is a real number and n is a whole number. a is the coefficient of the term. n is

More information

CHAPTER 2 Review of Algebra

CHAPTER 2 Review of Algebra CHAPTER 2 Review of Algebra 2.1 Real Numbers The text assumes that you know these sets of numbers. You are asked to characterize each set in Problem 1 of Chapter 1 review. Name Symbol Set Examples Counting

More information

Polynomial and Rational Functions. Copyright Cengage Learning. All rights reserved.

Polynomial and Rational Functions. Copyright Cengage Learning. All rights reserved. 2 Polynomial and Rational Functions Copyright Cengage Learning. All rights reserved. 2.3 Real Zeros of Polynomial Functions Copyright Cengage Learning. All rights reserved. What You Should Learn Use long

More information

PRELIMINARY THEORY LINEAR EQUATIONS

PRELIMINARY THEORY LINEAR EQUATIONS 4.1 PRELIMINARY THEORY LINEAR EQUATIONS 117 4.1 PRELIMINARY THEORY LINEAR EQUATIONS REVIEW MATERIAL Reread the Remarks at the end of Section 1.1 Section 2.3 (especially page 57) INTRODUCTION In Chapter

More information

10-2 Arithmetic Sequences and Series

10-2 Arithmetic Sequences and Series Determine the common difference, and find the next four terms of each arithmetic sequence. 1. 20, 17, 14, 17 20 = 3 14 17 = 3 The common difference is 3. Add 3 to the third term to find the fourth term,

More information

MATHEMATICS FOR ENGINEERS & SCIENTISTS 23

MATHEMATICS FOR ENGINEERS & SCIENTISTS 23 MATHEMATICS FOR ENGINEERS & SCIENTISTS 3.5. Second order linear O.D.E.s: non-homogeneous case.. We ll now consider non-homogeneous second order linear O.D.E.s. These are of the form a + by + c rx) for

More information

Math 334 A1 Homework 3 (Due Nov. 5 5pm)

Math 334 A1 Homework 3 (Due Nov. 5 5pm) Math 334 A1 Homework 3 Due Nov. 5 5pm No Advanced or Challenge problems will appear in homeworks. Basic Problems Problem 1. 4.1 11 Verify that the given functions are solutions of the differential equation,

More information

Notes 16 Linearly Independence and Wronskians

Notes 16 Linearly Independence and Wronskians ECE 6382 Fall 2017 David R. Jackson otes 16 Linearly Independence and Wronskians otes are from D. R. Wilton, Dept. of ECE 1 Linear Independence Definition: { φ } A set of functions ( x), n = 1, 2,, is

More information

LESSON #1: VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II

LESSON #1: VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II 1 LESSON #1: VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II Mathematics has developed a language all to itself in order to clarify concepts and remove ambiguity from the analysis of problems.

More information

Chapter 4: Higher Order Linear Equations

Chapter 4: Higher Order Linear Equations Chapter 4: Higher Order Linear Equations MATH 351 California State University, Northridge April 7, 2014 MATH 351 (Differential Equations) Ch 4 April 7, 2014 1 / 11 Sec. 4.1: General Theory of nth Order

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

24. x 2 y xy y sec(ln x); 1 e x y 1 cos(ln x), y 2 sin(ln x) 25. y y tan x 26. y 4y sec 2x 28.

24. x 2 y xy y sec(ln x); 1 e x y 1 cos(ln x), y 2 sin(ln x) 25. y y tan x 26. y 4y sec 2x 28. 16 CHAPTER 4 HIGHER-ORDER DIFFERENTIAL EQUATIONS 11. y 3y y 1 4. x yxyy sec(ln x); 1 e x y 1 cos(ln x), y sin(ln x) ex 1. y y y 1 x 13. y3yy sin e x 14. yyy e t arctan t 15. yyy e t ln t 16. y y y 41x

More information

y + 3y = 0, y(0) = 2, y (0) = 3

y + 3y = 0, y(0) = 2, y (0) = 3 MATH 3 HOMEWORK #3 PART A SOLUTIONS Problem 311 Find the solution of the given initial value problem Sketch the graph of the solution and describe its behavior as t increases y + 3y 0, y(0), y (0) 3 Solution

More information

MEMORIAL UNIVERSITY OF NEWFOUNDLAND

MEMORIAL UNIVERSITY OF NEWFOUNDLAND MEMORIAL UNIVERSITY OF NEWFOUNDLAND DEPARTMENT OF MATHEMATICS AND STATISTICS Section 5. Math 090 Fall 009 SOLUTIONS. a) Using long division of polynomials, we have x + x x x + ) x 4 4x + x + 0x x 4 6x

More information

Math 10-C Polynomials Concept Sheets

Math 10-C Polynomials Concept Sheets Math 10-C Polynomials Concept Sheets Concept 1: Polynomial Intro & Review A polynomial is a mathematical expression with one or more terms in which the exponents are whole numbers and the coefficients

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

Additional Homework Problems

Additional Homework Problems Math 216 2016-2017 Fall Additional Homework Problems 1 In parts (a) and (b) assume that the given system is consistent For each system determine all possibilities for the numbers r and n r where r is the

More information

6 - Theory of Higher-Order Linear Differential Equations

6 - Theory of Higher-Order Linear Differential Equations 6 - Theory of Higher-Order Linear Differential Equations 6.1 Basic Theory of Linear Differential Equations Homework: p. 325-326 #1, 7, 15, 19 ü Introduction A linear differential equation of order n is

More information

3. Identify and find the general solution of each of the following first order differential equations.

3. Identify and find the general solution of each of the following first order differential equations. Final Exam MATH 33, Sample Questions. Fall 7. y = Cx 3 3 is the general solution of a differential equation. Find the equation. Answer: y = 3y + 9 xy. y = C x + C x is the general solution of a differential

More information

Chapter 3 Higher Order Linear ODEs

Chapter 3 Higher Order Linear ODEs Chapter 3 Higher Order Linear ODEs Advanced Engineering Mathematics Wei-Ta Chu National Chung Cheng University wtchu@cs.ccu.edu.tw 1 2 3.1 Homogeneous Linear ODEs 3 Homogeneous Linear ODEs An ODE is of

More information

Ma 221. The material below was covered during the lecture given last Wed. (1/29/14). Homogeneous Linear Equations with Constant Coefficients

Ma 221. The material below was covered during the lecture given last Wed. (1/29/14). Homogeneous Linear Equations with Constant Coefficients Ma 1 The material below was covered during the lecture given last Wed. (1/9/1). Homogeneous Linear Equations with Constant Coefficients We shall now discuss the problem of solving the homogeneous equation

More information

Section 7.4: Inverse Laplace Transform

Section 7.4: Inverse Laplace Transform Section 74: Inverse Laplace Transform A natural question to ask about any function is whether it has an inverse function We now ask this question about the Laplace transform: given a function F (s), will

More information

Instructor: Richard Getso Course: Math 200.P10 TR 1:00 PM Spring 2016 (Getso)

Instructor: Richard Getso Course: Math 200.P10 TR 1:00 PM Spring 2016 (Getso) 1/8/016 Practice Test 1 (Chapter 11) Richard Getso Student: Richard Getso Date: 1/8/16 Instructor: Richard Getso Course: Math 00.P10 TR 1:00 PM Spring 016 (Getso) Assignment: Practice Test 1 (Chapter 11)

More information

LESSON 7.2 FACTORING POLYNOMIALS II

LESSON 7.2 FACTORING POLYNOMIALS II LESSON 7.2 FACTORING POLYNOMIALS II LESSON 7.2 FACTORING POLYNOMIALS II 305 OVERVIEW Here s what you ll learn in this lesson: Trinomials I a. Factoring trinomials of the form x 2 + bx + c; x 2 + bxy +

More information

Work sheet / Things to know. Chapter 3

Work sheet / Things to know. Chapter 3 MATH 251 Work sheet / Things to know 1. Second order linear differential equation Standard form: Chapter 3 What makes it homogeneous? We will, for the most part, work with equations with constant coefficients

More information

Prerequisites. Copyright Cengage Learning. All rights reserved.

Prerequisites. Copyright Cengage Learning. All rights reserved. Prerequisites P Copyright Cengage Learning. All rights reserved. P.4 FACTORING POLYNOMIALS Copyright Cengage Learning. All rights reserved. What You Should Learn Remove common factors from polynomials.

More information

Green s Functions with Reflection

Green s Functions with Reflection Green s Functions with Reflection User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Fernando Adrián Fernández Tojo (USC) Beatriz Máquez Villamarín (USC) Universidade de Santiago

More information

2326 Problem Sheet 1. Solutions 1. First Order Differential Equations. Question 1: Solve the following, given an explicit solution if possible:

2326 Problem Sheet 1. Solutions 1. First Order Differential Equations. Question 1: Solve the following, given an explicit solution if possible: 2326 Problem Sheet. Solutions First Order Differential Equations Question : Solve the following, given an explicit solution if possible:. 2 x = 4x3, () = 3, ( ) The given equation is a first order linear

More information

Extending the Number System

Extending the Number System Analytical Geometry Extending the Number System Extending the Number System Remember how you learned numbers? You probably started counting objects in your house as a toddler. You learned to count to ten

More information

Primitive Polynomial Search Example

Primitive Polynomial Search Example PrimitivePolynomialSearchExample.nb 1 Primitive Polynomial Search Example Abstract Sean E. O'Connor seanerikoconnor!at!gmail!dot!com We describe methods for testing whether a polynomial is primitive or

More information

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Power Series for Functions We can create a Power Series (or polynomial series) that can approximate a function around

More information

ME 406 Using Eigenvector Methods with Mathematica to Solve Linear Autonomous Systems of First Order Differential Equations

ME 406 Using Eigenvector Methods with Mathematica to Solve Linear Autonomous Systems of First Order Differential Equations ME 406 Using Eigenvector Methods with Mathematica to Solve Linear Autonomous Systems of First Order Differential Equations 1. Introduction In this notebook, we use the methods of linear algebra -- specifically

More information

MA22S3 Summary Sheet: Ordinary Differential Equations

MA22S3 Summary Sheet: Ordinary Differential Equations MA22S3 Summary Sheet: Ordinary Differential Equations December 14, 2017 Kreyszig s textbook is a suitable guide for this part of the module. Contents 1 Terminology 1 2 First order separable 2 2.1 Separable

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II

VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II Name: Date: VARIABLES, TERMS, AND EXPRESSIONS COMMON CORE ALGEBRA II Mathematics has developed a language all to itself in order to clarify concepts and remove ambiguity from the analysis of problems.

More information

We begin exploring Euler s method by looking at direction fields. Consider the direction field below.

We begin exploring Euler s method by looking at direction fields. Consider the direction field below. Emma Reid- MA 66, Lesson 9 (SU 17) Euler s Method (.7) So far in this course, we have seen some very special types of first order ODEs. We ve seen methods to solve linear, separable, homogeneous, Bernoulli,

More information

Section 6.5 A General Factoring Strategy

Section 6.5 A General Factoring Strategy Difference of Two Squares: a 2 b 2 = (a + b)(a b) NOTE: Sum of Two Squares, a 2 b 2, is not factorable Sum and Differences of Two Cubes: a 3 + b 3 = (a + b)(a 2 ab + b 2 ) a 3 b 3 = (a b)(a 2 + ab + b

More information

Quick-and-Easy Factoring. of lower degree; several processes are available to fi nd factors.

Quick-and-Easy Factoring. of lower degree; several processes are available to fi nd factors. Lesson 11-3 Quick-and-Easy Factoring BIG IDEA Some polynomials can be factored into polynomials of lower degree; several processes are available to fi nd factors. Vocabulary factoring a polynomial factored

More information

What if the characteristic equation has complex roots?

What if the characteristic equation has complex roots? MA 360 Lecture 18 - Summary of Recurrence Relations (cont. and Binomial Stuff Thursday, November 13, 01. Objectives: Examples of Recurrence relation solutions, Pascal s triangle. A quadratic equation What

More information

Know the meaning of the basic concepts: ring, field, characteristic of a ring, the ring of polynomials R[x].

Know the meaning of the basic concepts: ring, field, characteristic of a ring, the ring of polynomials R[x]. The second exam will be on Friday, October 28, 2. It will cover Sections.7,.8, 3., 3.2, 3.4 (except 3.4.), 4. and 4.2 plus the handout on calculation of high powers of an integer modulo n via successive

More information

Section 9.8 Higher Order Linear Equations

Section 9.8 Higher Order Linear Equations Section 9.8 Higher Order Linear Equations Key Terms: Higher order linear equations Equivalent linear systems for higher order equations Companion matrix Characteristic polynomial and equation A linear

More information

Higher Order Linear Equations Lecture 7

Higher Order Linear Equations Lecture 7 Higher Order Linear Equations Lecture 7 Dibyajyoti Deb 7.1. Outline of Lecture General Theory of nth Order Linear Equations. Homogeneous Equations with Constant Coefficients. 7.2. General Theory of nth

More information

Boyce - DiPrima 7.9, Nonhomogeneous Linear Systems

Boyce - DiPrima 7.9, Nonhomogeneous Linear Systems Boyce - DiPrima 7.9, Nonhomogeneous Linear Systems Section 7.9, pp. 49--440:, 7, 11, 15 (vop) Additional problems: 1 (diagonalization) Initialization In[77]:= In[78]:= Import"ColorNames.m" DiffEqs` Example

More information

CHAPTER 1. Theory of Second Order. Linear ODE s

CHAPTER 1. Theory of Second Order. Linear ODE s A SERIES OF CLASS NOTES FOR 2005-2006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 2 A COLLECTION OF HANDOUTS ON SCALAR LINEAR ORDINARY

More information

Nonconstant Coefficients

Nonconstant Coefficients Chapter 7 Nonconstant Coefficients We return to second-order linear ODEs, but with nonconstant coefficients. That is, we consider (7.1) y + p(t)y + q(t)y = 0, with not both p(t) and q(t) constant. The

More information

Algebra 2. Factoring Polynomials

Algebra 2. Factoring Polynomials Algebra 2 Factoring Polynomials Algebra 2 Bell Ringer Martin-Gay, Developmental Mathematics 2 Algebra 2 Bell Ringer Answer: A Martin-Gay, Developmental Mathematics 3 Daily Learning Target (DLT) Tuesday

More information

Algebra I Polynomials

Algebra I Polynomials Slide 1 / 217 Slide 2 / 217 Algebra I Polynomials 2014-04-24 www.njctl.org Slide 3 / 217 Table of Contents Definitions of Monomials, Polynomials and Degrees Adding and Subtracting Polynomials Multiplying

More information

MA Ordinary Differential Equations

MA Ordinary Differential Equations MA 108 - Ordinary Differential Equations Santanu Dey Department of Mathematics, Indian Institute of Technology Bombay, Powai, Mumbai 76 dey@math.iitb.ac.in March 26, 2014 Outline of the lecture Method

More information

2. Determine whether the following pair of functions are linearly dependent, or linearly independent:

2. Determine whether the following pair of functions are linearly dependent, or linearly independent: Topics to be covered on the exam include: Recognizing, and verifying solutions to homogeneous second-order linear differential equations, and their corresponding Initial Value Problems Recognizing and

More information