770 likes | 1.01k Views
Numerical Analysis. EE, NCKU Tien-Hao Chang (Darby Chang). In the previous slide. Fixed point iteration scheme what is a fixed point? iteration function convergence Newton’s method tangent line approximation convergence Secant method. In this slide. Accelerating convergence
E N D
Numerical Analysis EE, NCKU Tien-Hao Chang (Darby Chang)
In the previous slide • Fixed point iteration scheme • what is a fixed point? • iteration function • convergence • Newton’s method • tangent line approximation • convergence • Secant method
In this slide • Accelerating convergence • linearly convergent • Newton’s method on a root of multiplicity >1 • (exercises) • Proceed to systems of equations • linear algebra review • pivoting strategies
2.6 Accelerating Convergence
Accelerating convergence • Having spent so much time discussing convergence • is it possible to accelerate the convergence? • How to speed up the convergence of a linearly convergent sequence? • How to restore quadratic convergence to Newton’s method? • on a root of multiplicity > 1
Accelerating convergenceLinearly convergence • Thus far, the only truly linearly convergent sequence • false position • fixed point iteration • Bisection method is not according to the definition
Aitken’s Δ2-method • Substituting Eq. (2) into Eq. (1) • Substituting Eq. (4) into Eq. (3) • The above formulation should be a better approximation to p than pn
Aitken’s Δ2-methodAccelerated? which implies super-linearly convergence answer later
Two disadvantages • Both the first and the second derivatives of f are needed • Each iteration requires one more function evaluations answer
Exercise 2010/4/21 9:00am Email to darby@ee.ncku.edu.tw or hand over in class. You may arbitrarily pick one problem among the first three, which means this exercise contains only five problems.
Chapter 3 Systems of Equations
3.0 Linear Algebra Review (vectors and matrices)
m, n, m, i, j, Equal, Sum, Scalar Multiplication, Product…
The Inverse Matrix (cannot be skipped)
Any questions? question answer
The Determinant (cannot be skipped, too)
Link the concepts • All these theorems will be extremely important throughout this chapter • Nonsingular matrices • Determinants • Solutions of linear systems of equations
3.1 Gaussian Elimination (I suppose you have already known it)
I1-I2-I3=0 • I2-I4-I5=0 • I3+I4-I6=0 • 2I3+I6=7 • I2+2I5=13 • -I2+2I3-3I4=0
Operation CountsComparison • Gaussian elimination • forward elimination • back substitution • Gauss-Jordan elimination • Compute the inverse matrix
3.2 Pivoting Strategy