MATH10001 Project 3 Difference Equations 1

Slides:



Advertisements
Similar presentations
Math Center Workshop Series
Advertisements

CHAPTER 5 Higher-Order Linear Differntial Equations Second-order DE: Second-order linear DE: Note: A,B,C,F function of x only Second-order homogeneous.
Basics A quadratic equation is an equation equivalent to an equation of the type ax2 + bx + c = 0, where a is nonzero We can solve a quadratic equation.
Solving Quadratic Equations Using Square Roots & Completing the Square
Directions: Solve the linear systems of equations by graphing. Use the graph paper from the table. Tell whether you think the problems have one solution,
Solving Polynomial Equations. Fundamental Theorem of Algebra Every polynomial equation of degree n has n roots!
Applied Discrete Mathematics Week 9: Relations
SECTION 6.1 SYSTEMS OF LINEAR EQUATIONS: SYSTEMS OF LINEAR EQUATIONS: SUBSTITUTION AND ELIMINATION SUBSTITUTION AND ELIMINATION.
Math 3120 Differential Equations with Boundary Value Problems
Advanced Counting Techniques CSC-2259 Discrete Structures Konstantin Busch - LSU1.
Chapter 8 With Question/Answer Animations 1. Chapter Summary Applications of Recurrence Relations Solving Linear Recurrence Relations Homogeneous Recurrence.
3-2 Solving Equations by Using Addition and Subtraction Objective: Students will be able to solve equations by using addition and subtraction.
Module #1 - Logic 1 Based on Rosen, Discrete Mathematics & Its Applications. Prepared by (c) , Michael P. Frank and Modified By Mingwu Chen Recurrence.
Thinking Mathematically Systems of Linear Equations.
Roots of Polynomials Quadratics If the roots of the quadratic equation are  and  then the factorised equation is : (x –  )(x –  ) = 0 (x –  )(x –
Advanced Counting Techniques CSC-2259 Discrete Structures Konstantin Busch - LSU1.
Mathe III Lecture 7 Mathe III Lecture 7. 2 Second Order Differential Equations The simplest possible equation of this type is:
Factoring Polynomials by Completing the Square. Perfect Square Trinomials l Examples l x 2 + 6x + 9 l x x + 25 l x x + 36.
Nonhomogeneous Linear Systems Undetermined Coefficients.
12/19/ Non- homogeneous Differential Equation Chapter 4.
7.2 Solving Linear Recurrence Relations Some of these recurrence relations can be solved using iteration or some other ad hoc technique. However, one important.
Solving Equations Binomials Simplifying Polynomials
Solving Linear Systems of Equations - Concept Consider the following set of equations: Such a set is called a Linear System of Equations in two variables.
CSE 2813 Discrete Structures Solving Recurrence Relations Section 6.2.
Non-Homogeneous Second Order Differential Equation.
Multiply one equation, then add
1 Math Pacing Graphing Linear Equations. Equations as Relations A linear equation can be written in the standard form of a linear equation: Ax + By =
Solving Systems of Linear equations with 3 Variables To solve for three variables, we need a system of three independent equations.
1 Chapter 5 DIFFERENCE EQUATIONS. 2 WHAT IS A DIFFERENCE EQUATION? A Difference Equation is a relation between the values y k of a function defined on.
Homogeneous Linear Recurrences To solve such recurrences we must first know how to solve an easier type of recurrence relation: DEF: A linear recurrence.
Solving Linear Homogeneous Recurrence Relations ICS 6D Sandy Irani.
Digital Signal Processing
Algebra Completing the Square. Solving with Square Roots.
Discrete Math For Computing II. Contact Information B. Prabhakaran Department of Computer Science University of Texas at Dallas Mail Station EC 31, PO.
EENG 420 Digital Signal Processing Lecture 2.
Substitution Method: Solve the linear system. Y = 3x + 2 Equation 1 x + 2y=11 Equation 2.
MATH10001 Project 3 Difference Equations 2
CMSC Discrete Structures
Recursion and Recurrence Relations
Ch 4.3: Nonhomogeneous Equations: Method of Undetermined Coefficients
Linear homogeneous ODEn with constant coefficients
DIFFERENTIAL EQUATIONS
Modeling with Recurrence Relations
3.5 Recurrence Relations.
Introduction to Recurrence Relations
We will be looking for a solution to the system of linear differential equations with constant coefficients.
Class Notes 7: High Order Linear Differential Equation Homogeneous
4.6 Completing the Square Learning goals
4.6 Completing the Square Learning goals
2 Understanding Variables and Solving Equations.
QUADRATIC EQUATIONS MSJC ~ San Jacinto Campus
Solving Equations by Factoring and Problem Solving
Class Notes 8: High Order Linear Differential Equation Non Homogeneous
Ch 4.2: Homogeneous Equations with Constant Coefficients
Solving Polynomial Equations
Linear Algebra Lecture 3.
CMSC Discrete Structures
Solving Recurrence Relations
Systems of Equations Solve by Graphing.
Dividing Polynomials (Long Division)
4.5: Completing the square
CMSC Discrete Structures
Recurrence Relations Discrete Structures.
Chapter 7 Advanced Counting Techniques
Example 2B: Solving Linear Systems by Elimination
Warm-Up Set 1: Factor. 1) x2 + 6x + 9 2) x2 - 10x + 25 Set 2: Factor.
Dividing Polynomials (Long Division)
Recurrence Relations Rosen 5th ed., §6.2 5/22/2019
PARTIAL DIFFERENTIAL EQUATIONS
QUADRATIC EQUATIONS MSJC ~ San Jacinto Campus Math Center Workshop Series Janice Levasseur.
Presentation transcript:

MATH10001 Project 3 Difference Equations 1 http://www.maths.manchester.ac.uk/undergraduate/ ugstudies/units/2009-10/level1/MATH10001/

A sequence (yn)n0 is an infinite list of terms y0, y1, y2,… A difference equation is a relationship between the terms in a sequence. Examples yn+1 = yn, for all n  0. yn+1 = r yn (1 – yn) for all n  0. Difference equations are particularly useful when using computers because they deal with discrete data.

Linear Difference Equations An m-th order linear difference equation with constant coefficients has the form am yn+m + am-1 yn+m-1 + … + a1 yn+1 + a0 yn = r(n) where a0,…,am constants and r(n) is some function of n. The solution is in two parts: (A) Solution to the homogeneous equation with r(n) = 0. (B) A particular solution ie. any function that satisfies the original difference equation. The general solution is the sum of solutions for (A) and (B).

(A) Homogeneous Equations We start with the 1st order case: a1 yn+1 + a0 yn = 0 where a1  0. We can rewrite this as yn+1=C yn for some constant C. So yn = Cyn-1 = C2 yn-2 = … = Cn y0. Example 2yn+1 – 3yn = 0, y0 = 1.

In the m-th order case, the homogeneous equation has the form am yn+m + am-1 yn+m-1 + … + a1 yn+1 + a0 yn = 0. Again look for solutions of the form yn+1 = C yn, for all n  0. The equation becomes am Cn+m + am-1 Cn+m-1 +…+ a1Cn+1 + a0 Cn= 0. Dividing by Cn gives am Cm + am-1 Cm-1 +…+ a1C + a0 = 0. a polynomial of degree m in C.

This equation has m roots C1, C2, … ,Cm. We get m solutions to the difference equation A1C1n, A2C2n, … , AmCmn. for some constants A1,…,Am. The general solution to the homogeneous difference equation is the sum of these solutions yn = A1C1n + A2C2n + … + AmCmn. Example The Fibonacci sequence 1,1,2,3,5,…

(A) Particular Solutions To solve a non-homogeneous difference equation we need to find an additional function of n to account for the right-hand side of the equation r(n). We look for a single solution to the equation. This will often be a function of the same type as r(n). Example Solve yn+1 – 2yn = n, where y0 = 1.

The Mandelbrot Set