Iterative methods

9

Click here to load reader

Transcript of Iterative methods

Page 1: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

RUBEN DARIO ARISMENDI RUEDA

Page 2: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

CHAPTER 4: ‘Iterative Methods to solve lineal ecuation systems’

Page 3: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

There are some kinds of Methods that are used to solve this lineal systems.

1- THOMAS

2-CHOLESKY

Page 4: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

THOMAS.This method is used with a special kind of Matrix that has this form.

This is a special kind of matrix that has all it’s elements cero except that ones shown in the last picture.

Page 5: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

THIS METHOD WILL BE MORE CLEAR IF IS EXPLAINED WITH AN EXAMPLE.Basically this method uses the LU factorization.

EXAMPLE.

MATRIX ‘A’ R

Page 6: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

THEN L*U=A

MATRIX ‘L’

1,11,

−−− =

kk

kkk U

aL

kkkkkkk

kkk

ULbU

cU

,11,,

1,1

−−

−−

−==

MATRIX ‘U’

Page 7: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

L*D=R; By simple substitution the vector D is found.

MATRIX ‘L’

* =

D R

Page 8: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

U*X=D; By simple substitution the vector ‘X’ is found and the system will be solved.

MATRIX ‘U’

* =

X D

Page 9: Iterative methods

ESCUELA DE INGENIERÍA DE PETROLEOS

SOLUTION