Chapter 4: Numerical Solution Of Systems Of Equations Flashcards

Numerical solutions to linear and nonlinear systems of equations.

1
Q

Name the two branches of methods to get a numerical solution to the linear system Ax=b

A

Direct and indirect. Direct uses a set number of pre-determined operations, indirect uses iterations.

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

Name the two direct methods of solving linear systems.

A

Gauss elimination and LU factorization.

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

Name the two indirect methods of solving linear systems.

A

The Jacobi method and the Gauss-Seidel method

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

What is the difference between a homogeneous and nonhomogeneous system?

A

The system is homogeneous if every bk=0 in a11x1+a12x2+…..a1nxn = b1

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

What is the trivial solution for Ax=b

A

When all x componenets in the x vector are set to 0

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

Describe Gauss Elimination.

A

Gauss elimination uses elementary row operations to transform the linear system into an upper triangular matrix. This means a11 id the pivot, so a11 cannot =0.

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

What are the two methods of LU factorization

A

The Cholesky and Doolittle methods

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

Describe the process of permutation matrices

A

In transforming the matrix(A) to and upper triangular matrix(U) there must be an nxn matrix P such that multiplying Ax=b by P yields the new system Ux=b’

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

How many operations are required for gauss elimination?

A

Roughly (2/3)*n^3

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

Describe the method for solving Tridiagonal systems.

A

The Thomas Method scales all elements in its matrixso the diagonal entries are 1. Back substitution is then employed to solve the system.

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

Describe LU Factorization

A

LU factorization breaks a matrix into an upper and lower triangular matrix. The upper triangular matrix (U) is solved via back substitution. The loewr triangular matrix (L) is solve via forward substitution. Two other methods may be employed known as Doolittle and Crout factorization.

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

Describe Doolittle factorization.

A

This is an LU factorization method where the L matrix has 1’s along the diagonal. Requires (1/3)n^3 operations, so it is easier than gauss elimination

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

Describe Cholesky factorization

A

Ggfgf

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