Chapter 3 (Numerical Solution Of Equations Of A Single Variable) Flashcards

Find the numerical solution of equations in the general form f(x)=0 by finding where f(x) intersects the x axis.

1
Q

Describe bisection method

A

The sinplest bracketing method to find a root. If f(a) and f(b) have opposite signs on the interval [a,b] we locate the midpoint c1 such that it is set as the new endpoint of opposite sign; i.e.[a,c1] or [c1,b]. The interval with the root is kept and the process is repeated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name both bracketing methods

A

Bisection and Regula Falsi

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Name all three open methods

A

Fixed point, Newton’s, and secant

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What MATLAB function solves the numerical soln. of f(x)=0

A

fzero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the three general “methods” are used to solve the numerical soln. of f(x)=0

A

Bracketing, open, MATLAB fzero function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Describe the Regula Falsi method

A

False point. Bracketing method. On the interval [a,b] = [a1,b1] a straight line is drawn between A and B which are defined as A:(a1,f(a1)) and B:(b1,f(b1)). C1 is found where that line intersects the x-axis. C1 is then set as the new interval end; i.e. [a1, c1 = b2] or [c1 = a2, b1]. The next point on the line is set as c1: (c1, f(c1)) and the process is repeated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe fixed-point method

A

Open method. Iteration function. The function f(x)=0 is rewritten as g(x)=x. The “fixed-point” is found where y=g(x) and y=x intersect. This is also the root of f(x)=0. The process begins by guessing an x1 which is then plugged into y=g(x) that y value is used to set x2 via y=x. The process is then repeated until the tolerance is met. Convergence is quadratic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe Newton’s Method (Newton-Raphson)

A

Most common method of solving f(x)=0. Find an initial point x1 and find the point (x1,f(x1)) on the curve. Take the tangent of that point and find its x intercept. That point becomes x2. Repeat the process. Sequence may not converge if x1 isnt close to the root. If f’(x) is too difficult to compute, the secant method may be used.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe Secant Method

A

Starts with two initial points x1 and x2, find ghe points (x1,f(x1)) and (x2,f(x2)) then draw a secant line connecting them. The x intercept becomes x3. Repeat this process with x2 and x3, x3 and x4, and so on. Not guaranteed to convege. If it does converge its faster than linear but slower than quadratic i.e. Newtons.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly