Sparse Triangular Matrix Equations Lecture #6 EEE 574 Dr. Dan Tylavsky.

Slides:



Advertisements
Similar presentations
Method If an nxn matrix A has an LU-factorization, then the solution of AX = b can be determined by a Forward substitution followed by a Back substitution.
Advertisements

Example 1 Matrix Solution of Linear Systems Chapter 7.2 Use matrix row operations to solve the system of equations  2009 PBLPathways.
EXAMPLE 1 Standardized Test Practice SOLUTION Substitute several values of h into the equation C = h and solve for C.Then identify the table that.
Solving Equations = 4x – 5(6x – 10) -132 = 4x – 30x = -26x = -26x 7 = x.
Lecture #14 EEE 574 Dr. Dan Tylavsky Matrix Inversion Lemma.
Triangular Linear Equations Lecture #5 EEE 574 Dr. Dan Tylavsky.
Section 9.2 Systems of Equations
1 EE 616 Computer Aided Analysis of Electronic Networks Lecture 3 Instructor: Dr. J. A. Starzyk, Professor School of EECS Ohio University Athens, OH,
Sparse Matrix Storage Lecture #3 EEE 574 Dr. Dan Tylavsky.
Matrix Factorization Lecture #7 EEE 574 Dr. Dan Tylavsky.
Numerical Triangular Factorization Lecture #11 EEE 574 Dr. Dan Tylavsky.
Lecture #18 EEE 574 Dr. Dan Tylavsky Nonlinear Problem Solvers.
Sparse Vector & Matrix Algebra Lecture #4 EEE 574 Dr. Dan Tylavsky.
Lecture #22 EEE 574 Dr. Dan Tylavsky Newton-Raphson Power Flow Implementation.
Graphs and Matrix Storage Structures EEE 574 Dr. Dan Tylavsky.
Analysis of Triangular Factorization Lecture #8 EEE 574 Dr. Dan Tylavsky.
Lecture #23 EEE 574 Dr. Dan Tylavsky Decoupled Power Flow Algorithms.
Newton-Raphson Power Flow Algorithm
Lecture #15 EEE 574 Dr. Dan Tylavsky Breaker to Bus Modeling.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 17 Solution of Systems of Equations.
Fill Lecture #9 EEE 574 Dr. Dan Tylavsky. Fill © Copyright 1999 Daniel Tylavsky 4 When we solve Ax=b, (A sparse), fill-in will occur in the L,U factor.
Lecture #12 EEE 574 Dr. Dan Tylavsky Optimal Ordering.
Lecture #21 EEE 574 Dr. Dan Tylavsky Newton-Raphson Power Flow Algorithm II.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 15 Solution of Systems of Equations.
Technical Question Technical Question
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 18 LU Decomposition and Matrix Inversion.
Part 2.  Review…  Solve the following system by elimination:  x + 2y = 1 5x – 4y = -23  (2)x + (2)2y = 2(1)  2x + 4y = 2 5x – 4y = -23  7x = -21.
Using Inverse Matrices Solving Systems. You can use the inverse of the coefficient matrix to find the solution. 3x + 2y = 7 4x - 5y = 11 Solve the system.
Substitute 0 for y. Write original equation. To find the x- intercept, substitute 0 for y and solve for x. SOLUTION Find the x- intercept and the y- intercept.
Substitute 0 for y. Write original equation. To find the x- intercept, substitute 0 for y and solve for x. SOLUTION Find the x- intercept and the y- intercept.
3x – 5y = 11 x = 3y + 1 Do Now. Homework Solutions 2)2x – 2y = – 6 y = – 2x 2x – 2(– 2x) = – 6 2x + 4x = – 6 6x = – 6 x = – 1y = – 2x y = – 2(– 1) y =
Inverse Matrices and Systems
4-7 Inverse Matrices & Systems
Solving Quadratic Equations by Factoring. Solution by factoring Example 1 Find the roots of each quadratic by factoring. factoring a) x² − 3x + 2 b) x².
Equations Reducible to Quadratic
Solving Quadratic Equations – Quadratic Formula The following shows how to solve quadratic equations using the Quadratic Formula. A quadratic equation.
Section 5.3 Solving Systems of Equations Using the Elimination Method There are two methods to solve systems of equations: The Substitution Method The.
Solving Linear Systems by Substitution
Solving a System of Equations in Two Variables By Substitution Chapter 8.2.
The Substitution Method Objectives: To solve a system of equations by substituting for a variable.
Warm-Up 1) Determine whether (-1,7) is a solution of the system. 4 minutes 3x – y = -10 2) Solve for x where 5x + 3(2x – 1) = 5. -x + y = 8.
Warm-up. Systems of Equations: Substitution Solving by Substitution 1)Solve one of the equations for a variable. 2)Substitute the expression from step.
Algebra Review. Systems of Equations Review: Substitution Linear Combination 2 Methods to Solve:
Solving Linear Systems by Substitution
Equations Quadratic in form factorable equations
Chapter 12 Section 1.
Notes Over 9.6 An Equation with One Solution
3-2: Solving Systems of Equations using Substitution
Chapter 10 and Matrix Inversion LU Decomposition
Solving Linear Systems Algebraically
Solve a system of linear equation in two variables
3-2: Solving Systems of Equations using Substitution
Solving Systems of Equations using Substitution
3-2: Solving Systems of Equations using Substitution
Matrix Solutions to Linear Systems
Numerical Computation and Optimization
Solving Systems of Equation by Substitution
SIMULTANEOUS EQUATIONS 1
Systems of Equations Solve by Graphing.
3-2: Solving Systems of Equations using Substitution
Equations Quadratic in form factorable equations
Example 2B: Solving Linear Systems by Elimination
3-2: Solving Systems of Equations using Substitution
3-2: Solving Systems of Equations using Substitution
3-2: Solving Systems of Equations using Substitution
3-2: Solving Systems of Equations using Substitution
Unit 7: Systems of Equations
4 minutes Warm-Up 1) Determine whether (-1,7) is a solution of the system. 3x – y = -10 -x + y = 8 2) Solve for x where 5x + 3(2x – 1) = 5.
Variables.
Presentation transcript:

Sparse Triangular Matrix Equations Lecture #6 EEE 574 Dr. Dan Tylavsky

Sparse Triangular Matrix Equations © Copyright 1999 Daniel Tylavsky –Let’s look at solving Lx=b L is sparse and lower triangular, b is dense. (Forward Substitution) –(L is stored by CR(L)O/U Column-wise rep. (Lower) ordered /unordered.)

Sparse Triangular Matrix Equations © Copyright 1999 Daniel Tylavsky –Look at numerical example

Sparse Triangular Matrix Equations © Copyright 1999 Daniel Tylavsky 4 Individual Problem: Complete this solution.

The End

Sparse Triangular Matrix Equations © Copyright 1999 Daniel Tylavsky Let’s look at solving Lx=b (Forward Substitution) –L is sparse,lower triangular, stored by CR(L)O/U –b is sparse. –x values needed a sparse.