Application 8.3 Automating the Frobenius Series Method

Size: px
Start display at page:

Download "Application 8.3 Automating the Frobenius Series Method"

Transcription

1 Application 8.3 Automating the Frobenius Series Method Here we illustrate the use of a computer algebra system to apply the method of Frobenius. In the paragraphs that follow, we consider the differential equation + + = () y 3 y ( ) y of Eample 4 in Section 8.3 of the tet, where we found the two indicial roots r = and r =. We carry through the formal Frobenius method starting with the larger indicial root r, and you can then apply the same process to derive the second Frobenius series solution (found manually in the tet) corresponding to r. In the following eamples, use this method to derive Frobenius series solutions that can be checked against the given known general solutions... y y y =, y y y =, y ( ) = Acos + y ( ) = Acos y + y + y =, y ( ) = Acos + 4. y y y + + =, y ( ) = ( Acos + ) + + =, y ( ) = ( Acos + ) 5. 4y 6 y y y y y (4 ) =, y ( ) = ( Acos + ) y y y =, y ( ) = ( Acos + ) 8. + =, y y y y ( ) = A( ) + B( + e ) The net three problems involve the arctangent series 8 Chapter 8

2 tan = =, y ( ) = ( A+ Btan ) 3 ( ) y ( 4 ) y y =, y ( ) = ( A+ Btan ) ( ) y (3 5 ) y y =, y ( ) = ( A+ Btan ) ( ) y (3 7 ) y 8 y Using Maple Beginning with the indicial root r := /: we first write the initial k+ terms of a proposed Frobenius series solution: k := 6: a := array(..k): y := ^(/)*sum( a[n]*^(n), n =..k); ( ) y: = a + a + a + a + a + a + a Then we substitute this series (partial sum) into the left-hand side of Equation (), de := *^*diff(y,$) + 3**diff(y,) - (^+)*y: eq := simplify(de); 3 ( deq : = 5a 4a 7a 44a 65a 9a a + a + a + a + a + a + a ) 3/ Noting the factor, we multiply by powers of. 3/ and then collect coefficients of like eq := collect( ^(-3/)*eq, ); deq : = a a + ( a + 9 a ) + ( a + 65 a ) ( a + 44 a ) + ( a + 7 a ) + (4 a a ) + 5a Application 8.3 9

3 Net we set up the equations the successive coefficients must satisfy. We do this by defining an array and then filling the elements of this array by equating (in turn) each of the series coefficients to zero. eqs := array(..5): for n from to 5 do eqs[n] := coeff(eq,,n) = : od: coeffeqs := convert(eqs, set); { coeffeqs : = 5 a =, a + 44 a4 =, a3+ 65 a5 =, 9 a a =, 4 a a =, a + 7 a = We have here a collection of si linear equations relating the seven coefficients a through a 6. Hence we should be able to solve for the successive coefficients in terms of a : succcoeffs := convert([seq(a[n], n=..6)], set); { } succcoeffs: = a, a, a, a, a, a ourcoeffs := solve(coeffeqs, succcoeffs); ourcoeffs : = a =, a3 =, a5 =, a = a, a4 = a, a6 = a Finally we substitute all these coefficients back into the original series. partsoln := subs(ourcoeffs, y); 4 6 partsoln : = a + a + a + a } Note that (after factoring out a ) this result agrees with the first particular solution found in the tet. y 4 6 = / ( ) a Using Mathematica Beginning with the indicial root 3 Chapter 8

4 r = /; we first write the initial k+ terms of a proposed Frobenius series solution: k = 6; y = ^r (Sum[ a[n] ^n, {n,,k} ] + O[]^(k+)) a() a() a() a(3) a(4) a(5) 3/ 5/ 7/ 9/ / a O 3/ 5/ (6) + ( ) Then we substitute this series into the differential equation in (), deq = ^ D[y,,] + 3 D[y, ] - (^ + )y == 3/ 5/ 7/ 5 a() + (4 a() a()) + (7 a(3) a()) + 9/ / (44 a(4) a()) + (65 a(5) a(3)) + 3/ 5/ (9 a(6) a(4)) + O( ) == Mathematica has automatically collected like powers for us, and we can use the LogicalEpand command to etract the equations that the successive coefficients satisfy. coeffeqns = LogicalEpand[ deq ] 5 a() == 4 a() a() == 7 a(3) a() == 44 a(4) a() == 65 a(5) a(3) == 9 a(6) a(4) == We have here a collection of si linear equations relating the seven coefficients a = a() through a 6 = a(6). Hence we should be able to solve for the successive coefficients succcoeffs = Table[ a[n], {n,, 6} ] { a(), a(), a(3), a(4), a(5), a (6)} in terms of a(): ourcoeffs = Solve[coeffEqns, succcoeffs] a() a() a() a(), a(), a(3), a(4), a(5), a(6) Finally we substitute all these coefficients back into the original series. Application 8.3 3

5 partsoln = y /. ourcoeffs // First 3/ 5/ 9/ a() 5/ a() + a() + a() + + O( ) Note that (after factoring out found in the tet. y a / / ( ) a ) this result agrees with the first particular solution 4 6 = Using MATLAB Beginning with the indicial root r =, we first write the initial seven terms of a proposed Frobenius series solution: syms y a a a a3 a4 a5 a6 y = ^(/)*(a+a*+a*^+a3*^3+a4*^4+a5*^5+a6*^6); pretty(y) / (a + a + a + a3 + a4 + a5 + a6 ) Then we substitute this series (partial sum) into the left-hand side of Equation (): de = *^*diff(y,) + 3**diff(y) - (^ + )*y; simple(de) ans = -^(3/)*(^6*a5+^7*a6+*a+^4*a3+^3*a+^*a +^5*a4-65*a5*^4-44*a4*^3-7*a3*^ -4*a*-5*a-9*a6*^5) Noting the like powers of. 3/ factor, we multiply by 3/ and then collect coefficients of de = collect(simplify(^(-3/)*de)) de = -^7*a6-^6*a5+ (9*a6-a4)*^5 + (-a3+65*a5)*^4 + (-a+44*a4)*^3 + (-a+7*a3)*^ + (4*a-a)* + 5*a 3 Chapter 8

6 Net we set up the equations the original coefficients in our Frobenius series must satisfy. By cutting and pasting it is a simple matter to pick out the successive coefficients in de and equate each of them to zero. eq = 5*a; eq = 4*a-a; eq3 = -a+7*a3; eq4 = -a+44*a4; eq5 = -a3+65*a5; eq6 = 9*a6-a4; We have here a collection of si linear equations relating the seven coefficients a through a6. Hence we should be able to solve for the successive coefficients a through a6 in terms of a: soln = solve(eq,eq,eq3,eq4,eq5,eq6, a,a,a3,a4,a5,a6); coeffs = [soln.a,soln.a,soln.a3,soln.a4,soln.a5,soln.a6] coeffs = [, /4*a,, /66*a,, /5544*a] Finally we substitute all these coefficients back into the original series y: y = subs(y, [a,a,a3,a4,a5,a6], coeffs); pretty(y) / 4 6 (a + /4 a + /66 a + /5544 a ) Note that (after factoring out a ) this result agrees with the first particular solution found in the tet. y 4 6 = a / ( ) Application

Application 6.5B Period Doubling and Chaos in Mechanical Systems

Application 6.5B Period Doubling and Chaos in Mechanical Systems Application 6.5B Period Doubling and Chaos in Mechanical Systems The first objective of this section is the application of the DE plotting techniques of the Section 6. and 6.4 applications to the investigation

More information

1.5 Application Linear Equations and Temperature Oscillations

1.5 Application Linear Equations and Temperature Oscillations 1.5 Application Linear Equations and Temperature Oscillations Section 1.5 of the text describes the following 4-step algorithm for solving the linear first-order differential equation 1. Begin by calculating

More information

Linear differential equation Expansion at irregular singular point

Linear differential equation Expansion at irregular singular point Linear differential equation Epansion at irregular singular point Epansion around 0 for y'' 1 y 0. Eample in Bender & Orszag Section.4. Initial change of variable y e s If we replace y by e s : y[_]:=ep[s[]]

More information

Ch 5.7: Series Solutions Near a Regular Singular Point, Part II

Ch 5.7: Series Solutions Near a Regular Singular Point, Part II Ch 5.7: Series Solutions Near a Regular Singular Point, Part II! Recall from Section 5.6 (Part I): The point x 0 = 0 is a regular singular point of with and corresponding Euler Equation! We assume solutions

More information

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.1 SYSTEMS OF LINEAR EQUATIONS LINEAR EQUATION,, 1 n A linear equation in the variables equation that can be written in the form a a a b 1 1 2 2 n n a a is an where

More information

Project 6.2 Phase Plane Portraits of Almost Linear Systems

Project 6.2 Phase Plane Portraits of Almost Linear Systems Project 6.2 Phase Plane Portraits of Almost Linear Sstems Interesting and complicated phase portraits often result from simple nonlinear perturbations of linear sstems. For instance, the figure below shows

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

Long and Synthetic Division of Polynomials

Long and Synthetic Division of Polynomials Long and Synthetic Division of Polynomials Long and synthetic division are two ways to divide one polynomial (the dividend) by another polynomial (the divisor). These methods are useful when both polynomials

More information

Linear Systems of Differential Equations

Linear Systems of Differential Equations Chapter 5 Linear Systems of Differential Equations Project 5. Automatic Solution of Linear Systems Calculations with numerical matrices of order greater than 3 are most frequently carried out with the

More information

AMS 27L LAB #6 Winter 2009

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

More information

192 Calculus and Structures

192 Calculus and Structures 9 Calculus and Structures CHAPTER PRODUCT, QUOTIENT, CHAIN RULE, AND TRIG FUNCTIONS Calculus and Structures 9 Copyright Chapter PRODUCT, QUTIENT, CHAIN RULE AND TRIG FUNTIONS. NEW FUNCTIONS FROM OLD ONES

More information

Project 6.3 Predator-Prey and Your Own Game Preserve

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

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

SOLVING LINEAR SYSTEMS

SOLVING LINEAR SYSTEMS SOLVING LINEAR SYSTEMS We want to solve the linear system a, x + + a,n x n = b a n, x + + a n,n x n = b n This will be done by the method used in beginning algebra, by successively eliminating unknowns

More information

07-Array Operations Part 2 text: Chapter Overview

07-Array Operations Part 2 text: Chapter Overview 07-rray Operations Part tet: Chapter.-.7 ECEGR 101 Engineering Problem Solving with Matlab Professor Henry Louie Overview Identity Matri Matri Inversion Linear Systems of Equations Element-by-Element Operations

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

Section 2.1 The Derivative and the Tangent Line Problem

Section 2.1 The Derivative and the Tangent Line Problem Chapter 2 Differentiation Course Number Section 2.1 The Derivative an the Tangent Line Problem Objective: In this lesson you learne how to fin the erivative of a function using the limit efinition an unerstan

More information

EENG 428 Introduction to Robotics Laboratory EXPERIMENT 3. Solving Algebraic and Differential Equations

EENG 428 Introduction to Robotics Laboratory EXPERIMENT 3. Solving Algebraic and Differential Equations EENG 48 Introduction to Robotics Laboratory EXPERIMENT 3 Solving Algebraic and Differential Equations Objectives: This experiment introduces using MATLAB for solving a system of algebraic equations, and

More information

Recall from our discussion of continuity in lecture a function is continuous at a point x = a if and only if

Recall from our discussion of continuity in lecture a function is continuous at a point x = a if and only if Computational Aspects of its. Keeping te simple simple. Recall by elementary functions we mean :Polynomials (including linear and quadratic equations) Eponentials Logaritms Trig Functions Rational Functions

More information

4.8 Partial Fraction Decomposition

4.8 Partial Fraction Decomposition 8 CHAPTER 4. INTEGRALS 4.8 Partial Fraction Decomposition 4.8. Need to Know The following material is assumed to be known for this section. If this is not the case, you will need to review it.. When are

More information

Handout 1 EXAMPLES OF SOLVING SYSTEMS OF LINEAR EQUATIONS

Handout 1 EXAMPLES OF SOLVING SYSTEMS OF LINEAR EQUATIONS 22M:33 J. Simon page 1 of 7 22M:33 Summer 06 J. Simon Example 1. Handout 1 EXAMPLES OF SOLVING SYSTEMS OF LINEAR EQUATIONS 2x 1 + 3x 2 5x 3 = 10 3x 1 + 5x 2 + 6x 3 = 16 x 1 + 5x 2 x 3 = 10 Step 1. Write

More information

Numerical Methods Lecture 2 Simultaneous Equations

Numerical Methods Lecture 2 Simultaneous Equations CGN 42 - Computer Methods Numerical Methods Lecture 2 Simultaneous Equations Topics: matrix operations solving systems of equations Matrix operations: Adding / subtracting Transpose Multiplication Adding

More information

Solving Differential Equations Using MATLAB

Solving Differential Equations Using MATLAB Solving Differential Equations Using MATLAB Abraham Asfaw aasfaw.student@manhattan.edu November 28, 2011 1 Introduction In this lecture, we will follow up on lecture 2 with a discussion of solutions to

More information

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor.

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. Lab on Taylor Polynomials This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. In this Lab we will approimate complicated unctions by simple unctions. The

More information

8.a: Integrating Factors in Differential Equations. y = 5y + t (2)

8.a: Integrating Factors in Differential Equations. y = 5y + t (2) 8.a: Integrating Factors in Differential Equations 0.0.1 Basics of Integrating Factors Until now we have dealt with separable differential equations. Net we will focus on a more specific type of differential

More information

Linear Algebra. Solving SLEs with Matlab. Matrix Inversion. Solving SLE s by Matlab - Inverse. Solving Simultaneous Linear Equations in MATLAB

Linear Algebra. Solving SLEs with Matlab. Matrix Inversion. Solving SLE s by Matlab - Inverse. Solving Simultaneous Linear Equations in MATLAB Linear Algebra Solving Simultaneous Linear Equations in MATLAB Solving SLEs with Matlab Matlab can solve some numerical SLE s A b Five techniques available:. method. method. method 4. method. method Matri

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, it is my epectation that you will have this packet completed. You will be way behind at the beginning of the year if you haven t attempted

More information

6.5 Trigonometric Equations

6.5 Trigonometric Equations 6. Trigonometric Equations In this section, we discuss conditional trigonometric equations, that is, equations involving trigonometric functions that are satisfied only by some values of the variable (or

More information

y + α x s y + β x t y = 0,

y + α x s y + β x t y = 0, 80 Chapter 5. Series Solutions of Second Order Linear Equations. Consider the differential equation y + α s y + β t y = 0, (i) where α = 0andβ = 0 are real numbers, and s and t are positive integers that

More information

Solution of systems of 1st order linear ODE's: Use of eigenvector expansion and the utility of finding the diagonal matrix that goes with the problem.

Solution of systems of 1st order linear ODE's: Use of eigenvector expansion and the utility of finding the diagonal matrix that goes with the problem. Solution of systems of st order linear ODE's: Use of eigenvector expansion and the utility of finding the diagonal matrix that goes with the problem. Solution of an initial value problem for a system of

More information

NATIONAL QUALIFICATIONS

NATIONAL QUALIFICATIONS Mathematics Higher Prelim Eamination 04/05 Paper Assessing Units & + Vectors NATIONAL QUALIFICATIONS Time allowed - hour 0 minutes Read carefully Calculators may NOT be used in this paper. Section A -

More information

1.2. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy

1.2. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy .. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy = f(x, y). In this section we aim to understand the solution

More information

x gm 250 L 25 L min y gm min

x gm 250 L 25 L min y gm min Name NetID MATH 308 Exam 2 Spring 2009 Section 511 Hand Computations P. Yasskin Solutions 1 /10 4 /30 2 /10 5 /30 3 /10 6 /15 Total /105 1. (10 points) Tank X initially contains 250 L of sugar water with

More information

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

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

More information

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox

MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox Laplace Transform and the Symbolic Math Toolbox 1 MAT 275 Laboratory 7 Laplace Transform and the Symbolic Math Toolbox In this laboratory session we will learn how to 1. Use the Symbolic Math Toolbox 2.

More information

Quick Overview: Complex Numbers

Quick Overview: Complex Numbers Quick Overview: Complex Numbers February 23, 2012 1 Initial Definitions Definition 1 The complex number z is defined as: z = a + bi (1) where a, b are real numbers and i = 1. Remarks about the definition:

More information

Fitting Integrands to Basic Rules

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

More information

Part 1: You are given the following system of two equations: x + 2y = 16 3x 4y = 2

Part 1: You are given the following system of two equations: x + 2y = 16 3x 4y = 2 Solving Systems of Equations Algebraically Teacher Notes Comment: As students solve equations throughout this task, have them continue to explain each step using properties of operations or properties

More information

1 x 2 and 1 y 2. 0 otherwise. c) Estimate by eye the value of x for which F(x) = x + y 0 x 1 and 0 y 1. 0 otherwise

1 x 2 and 1 y 2. 0 otherwise. c) Estimate by eye the value of x for which F(x) = x + y 0 x 1 and 0 y 1. 0 otherwise Eample 5 EX: Which of the following joint density functions have (correlation) ρ XY = 0? (Remember that ρ XY = 0 is possible with symmetry even if X and Y are not independent.) a) b) f (, y) = π ( ) 2

More information

Math for ML: review. Milos Hauskrecht 5329 Sennott Square, x people.cs.pitt.edu/~milos/courses/cs1675/

Math for ML: review. Milos Hauskrecht 5329 Sennott Square, x people.cs.pitt.edu/~milos/courses/cs1675/ Math for ML: review Milos Hauskrecht milos@pitt.edu 5 Sennott Square, -5 people.cs.pitt.edu/~milos/courses/cs75/ Administrivia Recitations Held on Wednesdays at :00am and :00pm This week: Matlab tutorial

More information

15-251: Great Theoretical Ideas In Computer Science Recitation 9 : Randomized Algorithms and Communication Complexity Solutions

15-251: Great Theoretical Ideas In Computer Science Recitation 9 : Randomized Algorithms and Communication Complexity Solutions 15-251: Great Theoretical Ideas In Computer Science Recitation 9 : Randomized Algorithms and Communication Complexity Solutions Definitions We say a (deterministic) protocol P computes f if (x, y) {0,

More information

f x and the x axis on an interval from x a and

f x and the x axis on an interval from x a and Unit 6: Chapter 8 Areas and Volumes & Density Functions Part 1: Areas To find the area bounded by a function bwe use the integral: f d b a b 0 f d f d. a b a f and the ais on an interval from a and. This

More information

2.3 Rectangular Components in Three-Dimensional Force Systems

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

More information

Chapter 9: Complex Numbers

Chapter 9: Complex Numbers Chapter 9: Comple Numbers 9.1 Imaginary Number 9. Comple Number - definition - argand diagram - equality of comple number 9.3 Algebraic operations on comple number - addition and subtraction - multiplication

More information

Integration by partial fractions

Integration by partial fractions Roberto s Notes on Integral Calculus Chapter : Integration methods Section 16 Integration by partial fractions The general case What you need to know already: How to apply the method of partial fractions

More information

in Trigonometry Name Section 6.1 Law of Sines Important Vocabulary

in Trigonometry Name Section 6.1 Law of Sines Important Vocabulary Name Chapter 6 Additional Topics in Trigonometry Section 6.1 Law of Sines Objective: In this lesson you learned how to use the Law of Sines to solve oblique triangles and how to find the areas of oblique

More information

Ordinary Differential Equations. Monday, October 10, 11

Ordinary Differential Equations. Monday, October 10, 11 Ordinary Differential Equations Monday, October 10, 11 Problems involving ODEs can always be reduced to a set of first order differential equations. For example, By introducing a new variable z, this can

More information

Algebra Review C H A P T E R. To solve an algebraic equation with one variable, find the value of the unknown variable.

Algebra Review C H A P T E R. To solve an algebraic equation with one variable, find the value of the unknown variable. C H A P T E R 6 Algebra Review This chapter reviews key skills and concepts of algebra that you need to know for the SAT. Throughout the chapter are sample questions in the style of SAT questions. Each

More information

Page x2 Choose the expression equivalent to ln ÄÄÄ.

Page x2 Choose the expression equivalent to ln ÄÄÄ. Page 1 1. 9x Choose the expression equivalent to ln ÄÄÄ. y a. ln 9 - ln + ln x - ln y b. ln(9x) - ln(y) c. ln(9x) + ln(y) d. None of these e. ln 9 + ln x ÄÄÄÄ ln + ln y. ÚÄÄÄÄÄÄ xû4x + 1 Find the derivative:

More information

Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields

Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Elementary Differential Equations and Boundary Value Problems, 10 th edition, by William E. Boyce and Richard C. DiPrima, 2013

More information

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra Sections 5.1 5.3 A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are

More information

THS Step By Step Calculus Chapter 1

THS Step By Step Calculus Chapter 1 Name: Class Period: Throughout this packet there will be blanks you are epected to fill in prior to coming to class. This packet follows your Larson Tetbook. Do NOT throw away! Keep in 3 ring binder until

More information

Differentiation of Logarithmic Functions

Differentiation of Logarithmic Functions Differentiation of Logarithmic Functions The rule for finding the derivative of a logarithmic function is given as: If y log a then dy or y. d a ( ln This rule can be proven by rewriting the logarithmic

More information

Lecture 18: Inner Product, Similarity, and Loops

Lecture 18: Inner Product, Similarity, and Loops Lecture 18: Inner Product, Similarity, and Loops University of Southern California Linguistics 285 USC Linguistics October 28, 2015 Linguistics 285 (USC Linguistics) Lecture 18: Inner Product, Similarity,

More information

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are real numbers. 1

More information

Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m

Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m LECTURE 7. MORE VIBRATIONS ` Figure XP3.1 (a) Mass in equilibrium, (b) Freebody diagram, (c) Kinematic constraint relation Example Problem 3.1 Figure XP3.1 illustrates a mass m that is in equilibrium and

More information

Revision Questions. Sequences, Series, Binomial and Basic Differentiation

Revision Questions. Sequences, Series, Binomial and Basic Differentiation Revision Questions Sequences, Series, Binomial and Basic Differentiation 1 ARITHMETIC SEQUENCES BASIC QUESTIONS 1) An arithmetic sequence is defined a=5 and d=3. Write down the first 6 terms. ) An arithmetic

More information

January 18, 2008 Steve Gu. Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB,

January 18, 2008 Steve Gu. Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB, Introduction to MATLAB January 18, 2008 Steve Gu Reference: Eta Kappa Nu, UCLA Iota Gamma Chapter, Introduction to MATLAB, Part I: Basics MATLAB Environment Getting Help Variables Vectors, Matrices, and

More information

ChE 400: Applied Chemical Engineering Calculations. Tutorial 5: Use of Matlab to Calculate Laplace Transforms

ChE 400: Applied Chemical Engineering Calculations. Tutorial 5: Use of Matlab to Calculate Laplace Transforms ChE 400: Applied Chemical Engineering Calculations Gerardine G. Botte This handout contains information about: How to calculate Laplace transform using Matlab How to calculate Inverse Laplace transform

More information

Second In-Class Exam Solutions Math 246, Professor David Levermore Thursday, 31 March 2011

Second In-Class Exam Solutions Math 246, Professor David Levermore Thursday, 31 March 2011 Second In-Class Exam Solutions Math 246, Professor David Levermore Thursday, 31 March 211 (1) [6] Give the interval of definition for the solution of the initial-value problem d 4 y dt 4 + 7 1 t 2 dy dt

More information

Algebra 2 Matrices. Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Find.

Algebra 2 Matrices. Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Find. Algebra 2 Matrices Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Find. Evaluate the determinant of the matrix. 2. 3. A matrix contains 48 elements.

More information

Worksheet Week 7 Section

Worksheet Week 7 Section Worksheet Week 7 Section 8.. 8.4. This worksheet is for improvement of your mathematical writing skill. Writing using correct mathematical epression and steps is really important part of doing math. Please

More information

Matrices and Determinants

Matrices and Determinants Math Assignment Eperts is a leading provider of online Math help. Our eperts have prepared sample assignments to demonstrate the quality of solution we provide. If you are looking for mathematics help

More information

Chapter 7 Trigonometric Identities and Equations 7-1 Basic Trigonometric Identities Pages

Chapter 7 Trigonometric Identities and Equations 7-1 Basic Trigonometric Identities Pages Trigonometric Identities and Equations 7- Basic Trigonometric Identities Pages 47 430. Sample answer: 45 3. tan, cot, cot tan cos cot, cot csc 5. Rosalinda is correct; there may be other values for which

More information

. Then 2 3 the circumference is 8π 25 in. 2(1) both of which violate the original assumptions. Therefore, we have no solution.

. Then 2 3 the circumference is 8π 25 in. 2(1) both of which violate the original assumptions. Therefore, we have no solution. WYSE MATH SECTIONAL 04 SOLUTIONS Ans B: (a) and (d) are equivalent Therefore since the determinant of the product of matrices is the product of their determinants, it too cannot be zero If three square

More information

First-Order ODEs. Chapter Separable Equations. We consider in this chapter differential equations of the form dy (1.1)

First-Order ODEs. Chapter Separable Equations. We consider in this chapter differential equations of the form dy (1.1) Chapter 1 First-Order ODEs We consider in this chapter differential equations of the form dy (1.1) = F (t, y), where F (t, y) is a known smooth function. We wish to solve for y(t). Equation (1.1) is called

More information

Rational Functions. A rational function is a function that is a ratio of 2 polynomials (in reduced form), e.g.

Rational Functions. A rational function is a function that is a ratio of 2 polynomials (in reduced form), e.g. Rational Functions A rational function is a function that is a ratio of polynomials (in reduced form), e.g. f() = p( ) q( ) where p() and q() are polynomials The function is defined when the denominator

More information

M. Matrices and Linear Algebra

M. Matrices and Linear Algebra M. Matrices and Linear Algebra. Matrix algebra. In section D we calculated the determinants of square arrays of numbers. Such arrays are important in mathematics and its applications; they are called matrices.

More information

Precalc Crash Course

Precalc Crash Course Notes for CETA s Summer Bridge August 2014 Prof. Lee Townsend Townsend s Math Mantra: What s the pattern? What s the rule? Apply the rule. Repeat. Precalc Crash Course Classic Errors 1) You can cancel

More information

Section 6: Summary Section 7

Section 6: Summary Section 7 Section 6: Summary Section 7 a n = 2 ( 2πnx cos b n = 2 ( 2πnx sin d = f(x dx f(x = d + n= [ a n cos f(x dx f(x dx ( ( ] 2πnx 2πnx + b n sin You can sometimes combine multiple integrals using symmetry

More information

Lesson 5: The Distributive Property

Lesson 5: The Distributive Property Exploratory Exercise Kim was working on an exercise in math when she ran across this problem. Distribute and simplify if possible. (3x + 5) Kim s dad said, I remember doing something like this in school.

More information

Modified formulas for bucking length factor for rigid steel frame structures

Modified formulas for bucking length factor for rigid steel frame structures IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-1684,p-ISSN: 2320-334X, Volume 12, Issue 3 Ver. II (May - Jun. 2015), PP 66-71 www.iosrjournals.org Modified formulas for bucking

More information

39. (a) Use trigonometric substitution to verify that. 40. The parabola y 2x divides the disk into two

39. (a) Use trigonometric substitution to verify that. 40. The parabola y 2x divides the disk into two 35. Prove the formula A r for the area of a sector of a circle with radius r and central angle. [Hint: Assume 0 and place the center of the circle at the origin so it has the equation. Then is the sum

More information

Section 3.3 Limits Involving Infinity - Asymptotes

Section 3.3 Limits Involving Infinity - Asymptotes 76 Section. Limits Involving Infinity - Asymptotes We begin our discussion with analyzing its as increases or decreases without bound. We will then eplore functions that have its at infinity. Let s consider

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES The functions that we have met so far can be described by expressing one variable explicitly in terms of another variable. y For example,, or y = x sin x,

More information

INTEGRATION OF RATIONAL FUNCTIONS BY PARTIAL FRACTIONS

INTEGRATION OF RATIONAL FUNCTIONS BY PARTIAL FRACTIONS INTEGRATION OF RATIONAL FUNCTIONS BY PARTIAL FRACTIONS. Introduction It is possible to integrate any rational function, constructed as the ratio of polynomials by epressing it as a sum of simpler fractions

More information

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra Sections 5.1 5.3 A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are

More information

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

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

More information

Linear System Theory

Linear System Theory Linear System Theory - Laplace Transform Prof. Robert X. Gao Department of Mechanical Engineering University of Connecticut Storrs, CT 06269 Outline What we ve learned so far: Setting up Modeling Equations

More information

Additional mathematics Form 4

Additional mathematics Form 4 Teaching & learning Additional mathematics Form 4 CHAPTER 4 NAME:. FORM : Date received : Date complete. Marks of the Topical Test :.. Prepared by : Additional Mathematics Department Sek Men Sains Muzaffar

More information

Gaussian integrals. Calvin W. Johnson. September 9, The basic Gaussian and its normalization

Gaussian integrals. Calvin W. Johnson. September 9, The basic Gaussian and its normalization Gaussian integrals Calvin W. Johnson September 9, 24 The basic Gaussian and its normalization The Gaussian function or the normal distribution, ep ( α 2), () is a widely used function in physics and mathematical

More information

1 Continuity and Limits of Functions

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

More information

Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind

Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind The Mathematica Journal Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind Christopher J. Winfield Madison Area Science and Technology We develop symbolic methods of asymptotic approximations

More information

Pre-Calculus Notes Section 12.2 Evaluating Limits DAY ONE: Lets look at finding the following limits using the calculator and algebraically.

Pre-Calculus Notes Section 12.2 Evaluating Limits DAY ONE: Lets look at finding the following limits using the calculator and algebraically. Pre-Calculus Notes Name Section. Evaluating Limits DAY ONE: Lets look at finding the following its using the calculator and algebraicall. 4 E. ) 4 QUESTION: As the values get closer to 4, what are the

More information

University of Alabama Department of Physics and Astronomy. PH 125 / LeClair Spring A Short Math Guide. Cartesian (x, y) Polar (r, θ)

University of Alabama Department of Physics and Astronomy. PH 125 / LeClair Spring A Short Math Guide. Cartesian (x, y) Polar (r, θ) University of Alabama Department of Physics and Astronomy PH 125 / LeClair Spring 2009 A Short Math Guide 1 Definition of coordinates Relationship between 2D cartesian (, y) and polar (r, θ) coordinates.

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

Euler-Maclaurin summation formula

Euler-Maclaurin summation formula Physics 4 Spring 6 Euler-Maclaurin summation formula Lecture notes by M. G. Rozman Last modified: March 9, 6 Euler-Maclaurin summation formula gives an estimation of the sum N in f i) in terms of the integral

More information

Statics: Lecture Notes for Sections 10.1,10.2,10.3 1

Statics: Lecture Notes for Sections 10.1,10.2,10.3 1 Chapter 10 MOMENTS of INERTIA for AREAS, RADIUS OF GYRATION Today s Objectives: Students will be able to: a) Define the moments of inertia (MoI) for an area. b) Determine the MoI for an area by integration.

More information

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23 Chapter 3 Limit and Continuity Contents 3. Definition of Limit 3 3.2 Basic Limit Theorems 8 3.3 One sided Limit 4 3.4 Infinite Limit, Limit at infinity and Asymptotes 5 3.4. Infinite Limit and Vertical

More information

Today. The geometry of homogeneous and nonhomogeneous matrix equations. Solving nonhomogeneous equations. Method of undetermined coefficients

Today. The geometry of homogeneous and nonhomogeneous matrix equations. Solving nonhomogeneous equations. Method of undetermined coefficients Today The geometry of homogeneous and nonhomogeneous matrix equations Solving nonhomogeneous equations Method of undetermined coefficients 1 Second order, linear, constant coeff, nonhomogeneous (3.5) Our

More information

Homework Solutions: , plus Substitutions

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

More information

Chapter 5: Introduction to Limits

Chapter 5: Introduction to Limits Chapter 5: Introduction to Limits Lesson 5.. 5-. 3. Decreases 4. Decreases 5. y = 5-3. a. y = k b. 3 = k! 3 4 = k c. y = 3 4!("3) # y = 3 4! 9 = 7 4 y = 3 4 Review and Preview 5.. 5-4. f () = f () = 5-5.

More information

5.4 Bessel s Equation. Bessel Functions

5.4 Bessel s Equation. Bessel Functions SEC 54 Bessel s Equation Bessel Functions J (x) 87 # with y dy>dt, etc, constant A, B, C, D, K, and t 5 HYPERGEOMETRIC ODE At B (t t )(t t ), t t, can be reduced to the hypergeometric equation with independent

More information

Evaluation of integrals by differentiation with respect to a parameter

Evaluation of integrals by differentiation with respect to a parameter December 8 Evaluation of integrals by differentiation with respect to a parameter Khristo N Boyadzhiev Department of Mathematics and Statistics, Ohio Northern University, Ada, OH 458, USA k-boyadzhiev@onuedu

More information

Integration. Section 8: Using partial fractions in integration

Integration. Section 8: Using partial fractions in integration Integration Section 8: Using partial fractions in integration Notes and Eamples These notes contain subsections on Using partial fractions in integration Putting all the integration techniques together

More information

Root-finding and optimisation

Root-finding and optimisation Root-finding and optimisation Reference tets: Chapra, S., R. Canale. Numerical Methods for Engineers, 3rd ed., McGraw-Hill, New York, 1998. Parts 2 and 4. Root-finding Simple mathematical equations have

More information

9709 MATHEMATICS 9709/11 Paper 11, maximum raw mark 75

9709 MATHEMATICS 9709/11 Paper 11, maximum raw mark 75 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS GCE Advanced Subsidiary Level and GCE Advanced Level MARK SCHEME for the October/November 2009 question paper for the guidance of teachers 9709 MATHEMATICS

More information

5 3w. Unit 2 Function Operations and Equivalence Standard 4.1 Add, Subtract, & Multiply Polynomials

5 3w. Unit 2 Function Operations and Equivalence Standard 4.1 Add, Subtract, & Multiply Polynomials Unit Function Operations and Equivalence This document is meant to be used as an eample guide for each of the skills we will be holding students accountable for with Standard 4.1. This document should

More information

Warm up: Recall that if you require real coe cients (not complex), polynomials always factor into degree 1 or 2 parts.

Warm up: Recall that if you require real coe cients (not complex), polynomials always factor into degree 1 or 2 parts. Today: 6.3 Partial fractions Warm up: Recall that if you require real coe cients (not comple), polynomials always factor into degree or parts. For eample, 3 + +3 5=( )( + i)( ++i) =( {z } )( + + 5) {z

More information