ITERATIVE TECHNIQUES FOR SOLVING NON-LINEAR SYSTEMS (AND LINEAR SYSTEMS)

Slides:



Advertisements
Similar presentations
Numerical Solution of Nonlinear Equations
Advertisements

Example 1 Matrix Solution of Linear Systems Chapter 7.2 Use matrix row operations to solve the system of equations  2009 PBLPathways.
Lecture 14: Newton’s method for system of two nonlinear equations Function newton2d01 Set initial (x,y) point, maximum number of iterations, and convergence.
Solving Equations = 4x – 5(6x – 10) -132 = 4x – 30x = -26x = -26x 7 = x.
Linear Systems of Equations
Lecture #18 EEE 574 Dr. Dan Tylavsky Nonlinear Problem Solvers.
Some useful linear algebra. Linearly independent vectors span(V): span of vector space V is all linear combinations of vectors v i, i.e.
Iterative methods for solving matrix equations 1. Jacobi 2. Gauss-Seidel 3. Successive overrelaxation (SOR) Idea behind iterative methods: Convert Ax=b.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 20 Solution of Linear System of Equations - Iterative Methods.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 19 Solution of Linear System of Equations - Iterative Methods.
Systems of Non-Linear Equations
Thomas algorithm to solve tridiagonal matrices
Newton's Method for Functions of Several Variables
Technical Question Technical Question
Iterative Methods for Solving Linear Systems of Equations ( part of the course given for the 2 nd grade at BGU, ME )
EXAMPLE 2 Solve a matrix equation SOLUTION Begin by finding the inverse of A = Solve the matrix equation AX = B for the 2 × 2 matrix X. 2 –7 –1.
Section 8.3 – Systems of Linear Equations - Determinants Using Determinants to Solve Systems of Equations A determinant is a value that is obtained from.
Numerical Analysis 1 EE, NCKU Tien-Hao Chang (Darby Chang)
Numerical Methods Due to the increasing complexities encountered in the development of modern technology, analytical solutions usually are not available.
Taylor Series.
6.5 – Solving Equations with Quadratic Techniques.
Newton's Method for Functions of Several Variables Joe Castle & Megan Grywalski.
Application of Differential Applied Optimization Problems.
Start Presentation October 4, 2012 Solution of Non-linear Equation Systems In this lecture, we shall look at the mixed symbolic and numerical solution.
13.6 MATRIX SOLUTION OF A LINEAR SYSTEM.  Examine the matrix equation below.  How would you solve for X?  In order to solve this type of equation,
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Roots of Equations ~ Open Methods Chapter 6 Credit:
Solving Systems Using Elimination
Lecture 7 - Systems of Equations CVEN 302 June 17, 2002.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 3- Chapter 12 Iterative Methods.
Linear Systems – Iterative methods
Circuits Theory Examples Newton-Raphson Method. Formula for one-dimensional case: Series of successive solutions: If the iteration process is converged,
Solving Linear Systems by Substitution
Part 3 Chapter 12 Iterative Methods
GUIDED PRACTICE for Example – – 2 12 – 4 – 6 A = Use a graphing calculator to find the inverse of the matrix A. Check the result by showing.
Linear Systems Numerical Methods. 2 Jacobi Iterative Method Choose an initial guess (i.e. all zeros) and Iterate until the equality is satisfied. No guarantee.
Chapter 8 Systems of Linear Equations in Two Variables Section 8.3.
Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00.
Use Inverse Matrices to Solve Linear Systems
PreCalculus Section 14.3 Solve linear equations using matrices
LECTURE 4 OF SOLUTIONS OF NON-LINEAR EQUATIONS OBJECTIVES
The Inverse of a Square Matrix
Systems of Nonlinear Equations
Solving Nonlinear Systems
Solving Linear Inequalities in One Unknown
Solving Systems of Linear Equations: Iterative Methods
بسم الله الرحمن الرحيم.
Iterative Methods Good for sparse matrices Jacobi Iteration
Notes Over 9.6 An Equation with One Solution
Systems of Nonlinear Equations
Preview Linear Systems Activity (on worksheet)
Solve a system of linear equation in two variables
Solving Nonlinear Equation
The Quadratic Formula.
Use Inverse Matrices to Solve Linear Systems
Chapter 10. Numerical Solutions of Nonlinear Systems of Equations
Find the inverse of the matrix
Simultaneous Equations
Applied Numerical Methods
Mathematical Solution of Non-linear equations : Newton Raphson method
Linearization and Newton’s Method
5.1 Solving Systems of Equations by Graphing
Systems of Equations Solve by Graphing.
Some Comments on Root finding
Engineering Analysis ENG 3420 Fall 2009
Linear and Nonlinear Systems of Equations
Linear and Nonlinear Systems of Equations
Systems of Nonlinear Equations
Solving a System of Linear Equations
Numerical Analysis – Solving Nonlinear Equations
Presentation transcript:

ITERATIVE TECHNIQUES FOR SOLVING NON-LINEAR SYSTEMS (AND LINEAR SYSTEMS)

Jacobi Iterative Technique Consider the following set of equations.

Convert the set Ax = b in the form of x = Tx + c.

Start with an initial approximation of:

k Results of Jacobi Iteration:

Gauss-Seidel Iterative Technique Consider the following set of equations.

k Results of Gauss-Seidel Iteration: (Blue numbers are for Jacobi iterations.)

It required 15 iterations for Jacobi method and 7 iterations for Gauss-Seidel method to arrive at the solution with a tolerance of The solution is: x 1 = 1, x 2 = 2, x 3 = -1, x 4 = 1

Newton’s Iterative Technique Given:

Jacobian Matrix:

Consider the following set of non-linear equation:

Make an initial guess:

Example of Gauss-Seidel Iteration