ROOT FINDING METHODS Flashcards

1
Q

is a numerical method, or algorithm, for finding a value x would make f(x) = 0, for a given function f.

Such an x is called a “root” of the function f.

A

root-finding algorithm

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

it uses iteration, producing a sequence of numbers that
hopefully converge towards the root as a limit.

They require one or more initial guesses of the root as starting values, and then each iteration of the algorithm produces a successively more accurate approximation to the root. Since the iteration must be stopped at some point these methods produce an approximation to the root, not an exact solution.

A

Numerical root-finding methods

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

it can be a real or complex number

The methods discussed here locate real roots.

A

root

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

whenever the value of **f(x) **transitions from negative to
positive and vice-versa
, as the value of x is incremented at a close interval.

A

Graphically, the root is found

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

The importance of determining a root?

A

it is a critical value for a function.

The root can either be the value to want or avoid in some applications.

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

2 sets of methods to get the root(s):

A

A. Open Methods or “Single Guess” (Fixed Point Iteration Methods)
B. “Two Guess” (Bracket Methods and Secant Methods) Methods

These methods initially start from a “guess” value(s) then using a particular equation (in each method) the next value for the “guess” is determined. This is the iterative or repeated re-substitution process. The process stops when the last “guess” is already the “root”.

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

the iterations may be stopped when:

A
  1. The prescribed number of iterations has been completed.
  2. The value of f(x) = 0, when the “guess” value is substituted as “x”.
  3. The absolute error criteria have been met. f(x) ≤ Ea
  4. The two consecutive iterations have the same “guess” value
    4.1. For two “guess” methods – when both “guess” values become equal in the same iteration.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly