[Numeth] Bracketing, Open, Direct, and Indirect Methods Flashcards

(39 cards)

1
Q

False-position method is also called ___

A

linear interpolation method

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

a procedure for converting a matrix to reduced row echelon form using elementary row operations.

A

Gauss-Jordan Elimination

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

Unlike direct methods, these use iterations to find the approximate solution.

A

Indirect Methods

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

the most familiar method for solving a system of linear equations.

A

Gauss Elimination

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

Gaussian elimination is also known as ____

A

row reduction

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

It is done by rearranging the function so that x is on the left-hand side of the equation

A

Simple fixed-point iteration

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

a modification on the bisection method.

A

False-position method

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

It works by narrowing the gap between the positive and negative intervals until it closes in on the correct answer.

A

Bisection Method

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

False-position in Latin

A

regula falsi

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

an algorithm in linear algebra for solving a system of linear equations. It is usually understood as a sequence of operations performed on the corresponding matrix of coefficients.

A

Gaussian Elimination

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

2 categories for solving linear systems of equations

A

direct and indirect/iterative methods

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

Types of Direct Methods

A

Gauss Elimination and Gauss-Jordan Ellimination

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

In this method, a tangent can be extended from the point [xi,f(xi)]. The point where this tangent cross the x-axis usually represents an improved estimate of the root.

A

NRM

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

A matrix in reduced-row echelon form is also known as

A

row canonical form

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

In general, odd multiple roots ______, whereas even ones do not.

A

cross the x-axis

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

It separates the interval and subdivides the interval in which the root of the equation lies.

A

Bisection Method

17
Q

a modification of the Jacobi method is called the Gauss-Seidel method, named after ____ and ____

A

Carl Friedrich Gauss and Philipp L. Seidel

18
Q

Types of Indirect Methods

A

Jacobi Iteration and Gauss-Seidel Method

19
Q

These methods transform the original system into an equivalent system in which the coefficient matrix is upper-triangular, lower-triangular, or diagonal, making the system much easier to solve.

A

Direct Methods

20
Q

2 phases of the gauss elimination

A

Elimination and solution phase

21
Q

This method involves a fractional perturbation ( of the independent variable to estimate f’(x)

A

Modified Secant method

22
Q

The lack of refinements in Gaussian Elimination can be a problem because Gaussian elimination is sensitive to _____

A

rounding error.

23
Q

The principle behind this method is the intermediate theorem for continuous functions.

A

Bisection Method

24
Q

Steps in Bisection Method

A
  1. Choose Xl and Xu
  2. Xr = (Xl + Xu) /2
  3. Find f(xl) and f(xu)
    f(xl)f(xu) is (-) = lower subinterval, xu = xr
    f(xl)f(xu) is (+) = upper subinterval, xl = xr
25
These techniques are called ____ because two initial guesses for the root are required.
bracketing methods
26
Methods are said _____ when they move closer to the truth as the computation progresses.
convergent
27
they sometimes diverge or move away from the true root as the computation progresses. When these method converges, they usually do so much more quickly.
open methods
28
based on formulas that they require only a single starting value of x or two starting values that do not necessarily bracket the root.
open methods
29
εs stands for?
pre-specified stopping criterion
30
This is an alternative method that exploits the graphical insight to join f(XL) and f(XU) by a straight line.
false-position method
31
deal with the fact that a function typically changes sign in the vicinity of a root.
Bracketing Methods
32
Types of Open Methods:
Simple fixed-point iteration, newton-raphson method (NRM), secant method, modified secant method, and modified NRM
33
A simple method for obtaining an estimate of the root of the equation f(x) = 0 is by making a plot of the function and observe where it crosses the x-axis.
Graphical Method
34
In this method, a system of equations that is given in a general form is manipulated to be in the upper triangular form, which is then be solved by using the back substitution.
Gauss Elimination
35
Jacobi Method is named after _____ (1804-1851)
Carl Gustav Jacob Jacobi
36
The bisection method is also known as ____
interval halving, root-finding, binary search, dichotomy, binary chopping, or Bolzano's Method
37
the most widely used of all root-locating formulas
Newton-raphson method
38
the refinement of the Gauss elimination method.
Gauss-Jordan Method
39
Types of Bracketing Methods?
Bisection and False-Position Method