Numerical Solution of Linear Systems
|
|
|
- Ralph Blankenship
- 9 years ago
- Views:
Transcription
1 Numerical Solution of Linear Systems Chen Greif Department of Computer Science The University of British Columbia Vancouver B.C. Tel Aviv University December 17, 2008
2 Outline 1 Direct Solution Methods Classification of Methods Gaussian Elimination and LU Decomposition Special Matrices Ordering Strategies 2 Conditioning and Accuracy Upper bound on the error The Condition Number 3 Iterative Methods Motivation Basic Stationary Methods Nonstationary Methods Preconditioning
3 A Dense Matrix
4 Top Ten Algorithms in Science (Dongarra and Sullivan, 2000) 1 Metropolis Algorithm (Monte Carlo method) 2 Simplex Method for Linear Programming 3 Krylov Subspace Iteration Methods 4 The Decompositional Approach to Matrix Computations 5 The Fortran Optimizing Compiler 6 QR Algorithm for Computing Eigenvalues 7 Quicksort Algorithm for Sorting 8 Fast Fourier Transform 9 Integer Relation Detection Algorithm 10 Fast Multipole Method Red: Algorithms within the exclusive domain of NLA research. Blue: Algorithms strongly (though not exclusively) connected to NLA research.
5 Outline 1 Direct Solution Methods Classification of Methods Gaussian Elimination and LU Decomposition Special Matrices Ordering Strategies 2 Conditioning and Accuracy Upper bound on the error The Condition Number 3 Iterative Methods Motivation Basic Stationary Methods Nonstationary Methods Preconditioning
6 Two types of methods Numerical methods for solving linear systems of equations can generally be divided into two classes: Direct methods. In the absence of roundoff error such methods would yield the exact solution within a finite number of steps. Iterative methods. These are methods that are useful for problems involving special, very large matrices.
7 Gaussian Elimination and LU Decomposition Assumptions: The given matrix A is real, n n and nonsingular. The problem Ax = b therefore has a unique solution x for any given vector b in R n. The basic direct method for solving linear systems of equations is Gaussian elimination. The bulk of the algorithm involves only the matrix A and amounts to its decomposition into a product of two matrices that have a simpler form. This is called an LU decomposition.
8 How to solve linear equations when A is in upper triangular form. The algorithm is called backward substitution. transform a general system of linear equations into an upper triangular form, where backward substitution can be applied. The algorithm is called Gaussian elimination.
9 9 Backward Substitution Start easy: If A is diagonal: a 11 a 22 A =..., ann then the linear equations are uncoupled and the solution is obviously x i = b i a ii, i = 1, 2,..., n.
10 Triangular Systems An upper triangular matrix a 11 a 12 a 1n. A = a , where all elements below the main diagonal are zero: a ij = 0, i > j. Solve backwards: The last row reads a nn x n = b n, so x n = bn a nn. Next, now that we know x n, the row before last can be written as a n 1,n 1 x n 1 = b n 1 a n 1,n x n, so x n 1 = b n 1 a n 1,n x n a n 1,n 1. Next the previous row can be dealt with, etc. We obtain the backward substitution algorithm. a nn
11 Computational Cost (Naive but Useful) What is the cost of this algorithm? In a simplistic way we just count each floating point operation (such as + and ) as a flop. The number of flops required here is n 1 1+ k=1 n 1 ((n k 1) + (n k) + 2) 2 k=1 (n k) = 2 (n 1)n 2 n 2. Simplistic but not ridiculously so: doesn t take into account data movement between elements of the computer s memory hierarchy. In fact, concerns of data locality can be crucial to the execution of an algorithm. The situation is even more complex on multiprocessor machines. But still: gives an idea...
12 12 LU Decomposition The Gaussian elimination procedure decomposes A into a product of a unit lower triangular matrix L and an upper triangular matrix U. This is the famous LU decomposition. Together with the ensuing backward substitution the entire solution algorithm for Ax = b can therefore be described in three steps: 1 Decomposition: 2 Forward substitution: solve 3 Backward substitution: solve A = LU Ly = b. Ux = y.
13 Pivoting In a nutshell, perform permutations to increase numerical stability. Trivial but telling examples: For ( ) 0 1 A = 1 0 or A ε = ( ) ε G.E. will fail (for A) or perform poorly (for A ε ). Nothing wrong with the problem, it s the algorithm to blame! Partial pivoting (not always stable but standard) Complete pivoting (stable but too expensive) Rook pivoting (I like it!)
14 Special Matrices Symmetric Positive Definite. A matrix A is symmetric positive definite (SPD) if A = A T and x T Ax > 0 for any nonzero vector x 0. (All SPD matrices necessarily have positive eigenvalues.) In the context of linear systems Cholesky Decomposition: A = FF T. No pivoting required Half the storage and work. (But still O(n 2 ) and O(n 3 ) respectively.)
15 15 Special Matrices (Cont.) Narrow Banded. a 11 a 1q a p1 A = an q+1,n a n,n p+1 a nn Significant savings, if bandwidth is small: O(n) work and storage.
16 A Useful Numerical Tip Never invert a matrix explicitly unless your life depends on it. In Matlab, choose backslash over inv. Reasons: More accurate and efficient For banded matrices, great saving in storage
17 LU vs. Gaussian Elimination (why store L?) If you did all the work, might as well record it! One good reason: solving linear systems with multiple right hand sides.
18 Permutations and Reordering Strategies Riddle: Which matrix is better to work with? A = B = B is a matrix obtained by swapping the first and the last row and column of A.
19 Permutation Matrices (PAP T )(Px) = Pb. Look at Px rather than x, as per the performed permutation. If A is symmetric then so is PAP T. We can define the latter matrix as B and rewrite the linear system as where y = Px and c = Pb. By = c, In the example B = PAP T where P is a permutation matrix associated with the vector p = (n, 2, 3, 4,..., n 2, n 1, 1) T.
20 Graphs At least two possible ways of aiming to reduce the storage and computational work: Reduce the bandwidth of the matrix. Reduce the expected fill-in in the decomposition stage. One of the most commonly used tools for doing it is graph theory.
21 In the process of Gaussian elimination, each stage can be described as follows in terms of the matrix graph: upon zeroing out the (i, j) entry of the matrix (that is, with entry (j, j) being the current pivot in question), all the vertices that are the neighbors of vertex j will cause the creation of an edge connecting them to vertex i, if such an edge does not already exist. This shows why working with B is preferable over working with A in the example: for instance, when attempting to zero out entry (5, 1) using entry (1, 1) as pivot, in the graph of A (1) all vertices j connected to vertex 1 will generate an edge (5, j). For A, this means that new edges (2, 5), (3, 5), (4, 5) are now generated, whereas for B no new edge is generated because there are no edges connected to vertex 1 other than vertex 5 itself.
22 Edges and Vertices The degree of a vertex is the number of edges emanating from the vertex. It is in our best interest to postpone dealing with vertices of a high degree as much as possible. For the matrix A in the example all the vertices except vertex 1 have degree 1, but vertex 1 has degree 4 and we start off the Gaussian elimination by eliminating it; this results in disastrous fill-in. On the other hand for the B matrix we have that all vertices except vertex 5 have degree 1, and vertex 5 is the last vertex we deal with. Until we hit vertex 5 there is no fill, because the latter is the only vertex that is connected to the other vertices. When we deal with vertex 5 we identify vertices that should hypothetically be generated, but they are already in existence to begin with, so we end up with no fill whatsoever.
23 Optimality criteria How to assure that the amount of work for determining the ordering does not dominate the computation. As you may already sense, determining an optimal graph may be quite a costly adventure. How to deal with tie breaking situations. For example, if we have an algorithm based on the degrees of vertices, what if two or more of them have the same degree: which one should be labeled first?
24 Ordering strategies Reverse Cuthill McKee (RCM): aims at minimizing bandwidth. minimum degree (MMD) or approximate minimum degree (AMD): aims at minimizing the expected fill-in.
25 25
26 26
27 Outline 1 Direct Solution Methods Classification of Methods Gaussian Elimination and LU Decomposition Special Matrices Ordering Strategies 2 Conditioning and Accuracy Upper bound on the error The Condition Number 3 Iterative Methods Motivation Basic Stationary Methods Nonstationary Methods Preconditioning
28 Suppose that, using some algorithm, we have computed an approximate solution ˆx. We would like to be able to evaluate the absolute error x ˆx, or the relative error x ˆx x. We do not know the error; seek an upper bound, and rely on computable quantities, such as the residual r = b Aˆx. A stable Gaussian elimination variant will deliver a residual with a small norm. The question is, what can we conclude from this about the error in x?
29 29 How does the residual r relate to the error in ˆx in general? r = b Aˆx = Ax Aˆx = A(x ˆx). So x ˆx = A 1 r. Then x ˆx = A 1 r A 1 r. This gives a bound on the absolute error in ˆx in terms of A 1. But usually the relative error is more meaningful. Since 1 b A x implies, we have x A b x ˆx x A 1 r A b.
30 Condition Number We therefore define the condition number of the matrix A as κ(a) = A A 1 and write the bound obtained on the relative error as x ˆx x κ(a) r b. In words, the relative error in the solution is bounded by the condition number of the matrix A times the relative error in the residual.
31 Properties (and myths) Range of values: 1 = I = A 1 A κ(a), (i.e. a matrix is ideally conditioned if its condition number equals 1), and κ(a) = for a singular matrix. Orthogonal matrices are perfectly conditioned. If A is SPD, κ 2 (A) = λ 1 λ n. Condition number is defined for any (even non-square) matrices by the singular values of the matrix. When something goes wrong with the numerical solution - blame the condition number! (and hope for the best) One of the most important areas of research: preconditioning. (To be discussed later.) What s a well-conditioned matrix and what s an ill-conditioned matrix?
32 Outline 1 Direct Solution Methods Classification of Methods Gaussian Elimination and LU Decomposition Special Matrices Ordering Strategies 2 Conditioning and Accuracy Upper bound on the error The Condition Number 3 Iterative Methods Motivation Basic Stationary Methods Nonstationary Methods Preconditioning
33 Trouble in Paradise The Gaussian elimination algorithm and its variations such as the LU decomposition, the Cholesky method, adaptation to banded systems, etc., is the approach of choice for many problems. There are situations, however, which require a different treatment.
34 34 Drawbacks of Direct Solution Methods The Gaussian elimination (or LU decomposition) process may introduce fill-in, i.e. L and U may have nonzero elements in locations where the original matrix A has zeros. If the amount of fill-in is significant then applying the direct method may become costly. This in fact occurs often, in particular when the matrix is banded and is sparse within the band. Sometimes we do not really need to solve the system exactly. (e.g. nonlinear problems.) Direct methods cannot accomplish this because by definition, to obtain a solution the process must be completed; there is no notion of an early termination or an inexact (yet acceptable) solution.
35 35 Drawbacks of Direct Solution Methods (Cont.) Sometimes we have a pretty good idea of an approximate guess for the solution. For example, in time dependent problems (warm start with previous time solution). Direct methods cannot make good use of such information. Sometimes only matrix-vector products are given. In other words, the matrix is not available explicitly or is very expensive to compute. For example, in digital signal processing applications it is often the case that only input and output signals are given, without the transformation itself explicitly formulated and available.
36 Motivation for Iterative Methods What motivates us to use iterative schemes is the possibility that inverting A may be very difficult, to the extent that it may be worthwhile to invert a much easier matrix several times, rather than inverting A directly only once.
37 A Common Example: Laplacian (Poisson Equation) J I I J I A = , I J I I J where J is a tridiagonal N N matrix J = and I denotes the identity matrix of size N.
38 A Small Example For instance, if N = 3 then A =
39 Sparsity Pattern
40 Stationary Methods Given Ax = b, we can rewrite as x = (I A)x + b, which yields the iteration x k+1 = (I A)x k + b. From this we can generalize: for a given splitting A = M N, we have Mx = Nx + b, which leads to the fixed point iteration Mx k+1 = Nx k + b.
41 The Basic Mechanism Suppose that A = M N is a splitting, and that Mz = r is much easier to solve than Ax = b. Given an initial guess x 0, is the error and e 0 = x x 0 Ae 0 = b Ax 0 := r 0. Notice that r 0 is computable whereas e 0 is not, because x is not available. Since x = x 0 + e 0 = x 0 + A 1 r 0, set and then Mẽ = r 0, x 1 = x 0 + ẽ is our new guess. x 1 is hopefully closer to x than x 0.
42 The Tough Task of Finding a Good M The matrix M should satisfy two contradictory requirements: It should be close to A in some sense (or rather, M 1 should be close to A 1 ). It should be much easier to invert than A.
43 Jacobi, Gauss-Seidel, and Friends It all boils down to the choice of M. If A = D + E + F is split into diagonal D, strictly upper triangular part E and strictly lower triangular part F, then: Jacobi: M = D. Gauss-Seidel: M = D + E. SOR: a parameter dependent improvement of Gauss-Seidel.
44 Convergence It is easy to show that (asymptotic) convergence is governed (barring nasty matrices) by the question what the eigenvalues of T = M 1 N = I M 1 A are. They must be smaller than 1 in magnitude, and the smaller they are the faster we converge. Jacobi and Gauss-Seidel are terribly slow methods. SOR is not so bad, but requires a choice of a parameter. But these methods also have merits. Convergence analysis is easy to perform and can give an idea. Jacobi is beautifully parallelizable, which is why it has been taken out of its grave since HPC has become important. Gauss-Seidel has beautiful smoothing properties and is used in Multigrid.
45 Nonstationary Methods: Conjugate Gradients and Friends The trouble with stationary schemes is that they do not make use of information that has accumulated throughout the iteration. How about trying to optimize something throughout the iteration? For example, x k+1 = x k + α k r k. Adding b to both sides and subtracting the equations multiplied by A: b Ax k+1 = b Ax k α k Ar k. It is possible to find α k that minimizes the residual. Notice: r k = p k (A)r 0. Modern method work hard at finding the best p k.
46 Nonstationary Methods as an Optimization Problem The methods considered here can all be written as x k+1 = x k + α k p k, where the vector p k is the search direction and the scalar α k is the step size. The simplest such non-stationary scheme is obtained by setting p k = r k, i.e. M k = α k I, with I the identity matrix. The resulting method is called gradient descent. The step size α k may be chosen so as to minimize the l 2 norm of the residual r k. But there are other options too.
47 Conjugate Gradients (for SPD matrices) Our problem Ax = b is equivalent to the problem of finding a vector x that minimizes φ(x) = 1 2 xt Ax b T x. The Conjugate Gradient Method defines search directions that are A-conjugate, and minimizes e k A = e T k Ae k. Note that this is well defined only if A is SPD.
48 The Conjugate Gradient Algorithm Given an initial guess x 0 and a tolerance tol, set at first r 0 = b Ax 0, δ 0 = r 0, r 0, b δ = b, b, k = 0 and p 0 = r 0. Then: While δ k > tol 2 b δ, s k = Ap k α k = δ k p k, s k x k+1 = x k + α k p k r k+1 = r k α k s k δ k+1 = r k+1, r k+1 p k+1 = r k+1 + δ k+1 k = k + 1. δ k p k
49
50 Krylov Subspace Methods We are seeking to find a solution within the Krylov subspace x k x 0 + K k (A; r 0 ) x 0 + span{r 0, Ar 0, A 2 r 0,..., A k 1 r 0 }. Find a good basis for the space (riddle: good means what??): Lanczos or Arnoldi will help here. Optimality condition: Require that the norm of the residual b Ax k 2 is minimal over the Krylov subspace. Require that the residual is orthogonal to the subspace.
51 51 Well Known Methods CG for SPD matrices GMRES for nonsymmetric, MINRES for symmetric indefinite BiCG-Stab (non-optimal: based on bidiagonalization) QMR: Quasi-Minimal Residuals. A few more...
52 Preconditioning Motivation Convergence rate typically depends on two factors: Distribution/clustering of eigenvalues (crucial!) Condition number (the less important factor!) Idea: Since A is given and is beyond our control, define a matrix M such that the above properties are better for M 1 A, and solve M 1 Ax = M 1 b rather than Ax = b. Requirements: To produce an effective method the preconditioner matrix M must be easily invertible. At the same time it is desirable to have at least one of the following properties hold: κ(m 1 A) κ(a), and/or the eigenvalues of M 1 A are much better clustered compared to those of A.
53 Basically, Two Types of Preconditioners Algebraic, general purpose (arguably, frequently needed in continuous optimization) Specific to the problem (arguably, frequently needed in PDEs)
54 Important Classes of Preconditioners Preconditioning is a combination of art and science... Stationary preconditioners, such as Jacobi, Gauss-Seidel, SOR. Incomplete factorizations. Multigrid and multilevel preconditioners. (Advanced) Preconditioners tailored to the problem in hand, that rely for example on the properties of the underlying differential operators.
55 Incomplete Factorizations Given the matrix A, construct an LU decomposition or a Cholesky decomposition (if A is symmetric positive definite) that follows precisely the same steps as the usual decomposition algorithms, except that a nonzero entry of a factor is generated only if the matching entry of A is nonzero!
56 56
57 Matlab R=cholinc(A, 0 ); x=pcg(a,b,tol,maxit,r,r);... and many other commands and features.
58 Problem-Tailored Preconditioners Schur complement based methods, e.g. for Stokes and Maxwell. To be discussed (time permitting).
59 The END 59
Numerical Methods I Solving Linear Systems: Sparse Matrices, Iterative Methods and Non-Square Systems
Numerical Methods I Solving Linear Systems: Sparse Matrices, Iterative Methods and Non-Square Systems Aleksandar Donev Courant Institute, NYU 1 [email protected] 1 Course G63.2010.001 / G22.2420-001,
Yousef Saad University of Minnesota Computer Science and Engineering. CRM Montreal - April 30, 2008
A tutorial on: Iterative methods for Sparse Matrix Problems Yousef Saad University of Minnesota Computer Science and Engineering CRM Montreal - April 30, 2008 Outline Part 1 Sparse matrices and sparsity
6. Cholesky factorization
6. Cholesky factorization EE103 (Fall 2011-12) triangular matrices forward and backward substitution the Cholesky factorization solving Ax = b with A positive definite inverse of a positive definite matrix
SOLVING LINEAR SYSTEMS
SOLVING LINEAR SYSTEMS Linear systems Ax = b occur widely in applied mathematics They occur as direct formulations of real world problems; but more often, they occur as a part of the numerical analysis
7 Gaussian Elimination and LU Factorization
7 Gaussian Elimination and LU Factorization In this final section on matrix factorization methods for solving Ax = b we want to take a closer look at Gaussian elimination (probably the best known method
Direct Methods for Solving Linear Systems. Matrix Factorization
Direct Methods for Solving Linear Systems Matrix Factorization Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011
Operation Count; Numerical Linear Algebra
10 Operation Count; Numerical Linear Algebra 10.1 Introduction Many computations are limited simply by the sheer number of required additions, multiplications, or function evaluations. If floating-point
7. LU factorization. factor-solve method. LU factorization. solving Ax = b with A nonsingular. the inverse of a nonsingular matrix
7. LU factorization EE103 (Fall 2011-12) factor-solve method LU factorization solving Ax = b with A nonsingular the inverse of a nonsingular matrix LU factorization algorithm effect of rounding error sparse
General Framework for an Iterative Solution of Ax b. Jacobi s Method
2.6 Iterative Solutions of Linear Systems 143 2.6 Iterative Solutions of Linear Systems Consistent linear systems in real life are solved in one of two ways: by direct calculation (using a matrix factorization,
CS3220 Lecture Notes: QR factorization and orthogonal transformations
CS3220 Lecture Notes: QR factorization and orthogonal transformations Steve Marschner Cornell University 11 March 2009 In this lecture I ll talk about orthogonal matrices and their properties, discuss
Solution of Linear Systems
Chapter 3 Solution of Linear Systems In this chapter we study algorithms for possibly the most commonly occurring problem in scientific computing, the solution of linear systems of equations. We start
DATA ANALYSIS II. Matrix Algorithms
DATA ANALYSIS II Matrix Algorithms Similarity Matrix Given a dataset D = {x i }, i=1,..,n consisting of n points in R d, let A denote the n n symmetric similarity matrix between the points, given as where
Factorization Theorems
Chapter 7 Factorization Theorems This chapter highlights a few of the many factorization theorems for matrices While some factorization results are relatively direct, others are iterative While some factorization
Solving Linear Systems of Equations. Gerald Recktenwald Portland State University Mechanical Engineering Department [email protected].
Solving Linear Systems of Equations Gerald Recktenwald Portland State University Mechanical Engineering Department [email protected] These slides are a supplement to the book Numerical Methods with Matlab:
APPM4720/5720: Fast algorithms for big data. Gunnar Martinsson The University of Colorado at Boulder
APPM4720/5720: Fast algorithms for big data Gunnar Martinsson The University of Colorado at Boulder Course objectives: The purpose of this course is to teach efficient algorithms for processing very large
Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix multiplication).
MAT 2 (Badger, Spring 202) LU Factorization Selected Notes September 2, 202 Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix
Numerical Methods I Eigenvalue Problems
Numerical Methods I Eigenvalue Problems Aleksandar Donev Courant Institute, NYU 1 [email protected] 1 Course G63.2010.001 / G22.2420-001, Fall 2010 September 30th, 2010 A. Donev (Courant Institute)
10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method
578 CHAPTER 1 NUMERICAL METHODS 1. ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS As a numerical technique, Gaussian elimination is rather unusual because it is direct. That is, a solution is obtained after
Numerical Analysis Lecture Notes
Numerical Analysis Lecture Notes Peter J. Olver 6. Eigenvalues and Singular Values In this section, we collect together the basic facts about eigenvalues and eigenvectors. From a geometrical viewpoint,
AN INTERFACE STRIP PRECONDITIONER FOR DOMAIN DECOMPOSITION METHODS
AN INTERFACE STRIP PRECONDITIONER FOR DOMAIN DECOMPOSITION METHODS by M. Storti, L. Dalcín, R. Paz Centro Internacional de Métodos Numéricos en Ingeniería - CIMEC INTEC, (CONICET-UNL), Santa Fe, Argentina
Vector and Matrix Norms
Chapter 1 Vector and Matrix Norms 11 Vector Spaces Let F be a field (such as the real numbers, R, or complex numbers, C) with elements called scalars A Vector Space, V, over the field F is a non-empty
MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS
MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS Systems of Equations and Matrices Representation of a linear system The general system of m equations in n unknowns can be written a x + a 2 x 2 + + a n x n b a
Matrix Multiplication
Matrix Multiplication CPS343 Parallel and High Performance Computing Spring 2016 CPS343 (Parallel and HPC) Matrix Multiplication Spring 2016 1 / 32 Outline 1 Matrix operations Importance Dense and sparse
Computational Optical Imaging - Optique Numerique. -- Deconvolution --
Computational Optical Imaging - Optique Numerique -- Deconvolution -- Winter 2014 Ivo Ihrke Deconvolution Ivo Ihrke Outline Deconvolution Theory example 1D deconvolution Fourier method Algebraic method
Solving Linear Systems, Continued and The Inverse of a Matrix
, Continued and The of a Matrix Calculus III Summer 2013, Session II Monday, July 15, 2013 Agenda 1. The rank of a matrix 2. The inverse of a square matrix Gaussian Gaussian solves a linear system by reducing
MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 2. x n. a 11 a 12 a 1n b 1 a 21 a 22 a 2n b 2 a 31 a 32 a 3n b 3. a m1 a m2 a mn b m
MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS 1. SYSTEMS OF EQUATIONS AND MATRICES 1.1. Representation of a linear system. The general system of m equations in n unknowns can be written a 11 x 1 + a 12 x 2 +
Linear Algebra: Determinants, Inverses, Rank
D Linear Algebra: Determinants, Inverses, Rank D 1 Appendix D: LINEAR ALGEBRA: DETERMINANTS, INVERSES, RANK TABLE OF CONTENTS Page D.1. Introduction D 3 D.2. Determinants D 3 D.2.1. Some Properties of
Eigenvalues and Eigenvectors
Chapter 6 Eigenvalues and Eigenvectors 6. Introduction to Eigenvalues Linear equations Ax D b come from steady state problems. Eigenvalues have their greatest importance in dynamic problems. The solution
Overview of Violations of the Basic Assumptions in the Classical Normal Linear Regression Model
Overview of Violations of the Basic Assumptions in the Classical Normal Linear Regression Model 1 September 004 A. Introduction and assumptions The classical normal linear regression model can be written
by the matrix A results in a vector which is a reflection of the given
Eigenvalues & Eigenvectors Example Suppose Then So, geometrically, multiplying a vector in by the matrix A results in a vector which is a reflection of the given vector about the y-axis We observe that
Numerical Analysis Introduction. Student Audience. Prerequisites. Technology.
Numerical Analysis Douglas Faires, Youngstown State University, (Chair, 2012-2013) Elizabeth Yanik, Emporia State University, (Chair, 2013-2015) Graeme Fairweather, Executive Editor, Mathematical Reviews,
ALGEBRAIC EIGENVALUE PROBLEM
ALGEBRAIC EIGENVALUE PROBLEM BY J. H. WILKINSON, M.A. (Cantab.), Sc.D. Technische Universes! Dsrmstedt FACHBEREICH (NFORMATiK BIBL1OTHEK Sachgebieto:. Standort: CLARENDON PRESS OXFORD 1965 Contents 1.
AN INTRODUCTION TO NUMERICAL METHODS AND ANALYSIS
AN INTRODUCTION TO NUMERICAL METHODS AND ANALYSIS Revised Edition James Epperson Mathematical Reviews BICENTENNIAL 0, 1 8 0 7 z ewiley wu 2007 r71 BICENTENNIAL WILEY-INTERSCIENCE A John Wiley & Sons, Inc.,
Elementary Matrices and The LU Factorization
lementary Matrices and The LU Factorization Definition: ny matrix obtained by performing a single elementary row operation (RO) on the identity (unit) matrix is called an elementary matrix. There are three
Introduction to the Finite Element Method
Introduction to the Finite Element Method 09.06.2009 Outline Motivation Partial Differential Equations (PDEs) Finite Difference Method (FDM) Finite Element Method (FEM) References Motivation Figure: cross
AMS526: Numerical Analysis I (Numerical Linear Algebra)
AMS526: Numerical Analysis I (Numerical Linear Algebra) Lecture 19: SVD revisited; Software for Linear Algebra Xiangmin Jiao Stony Brook University Xiangmin Jiao Numerical Analysis I 1 / 9 Outline 1 Computing
8 Square matrices continued: Determinants
8 Square matrices continued: Determinants 8. Introduction Determinants give us important information about square matrices, and, as we ll soon see, are essential for the computation of eigenvalues. You
Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 10
Lecture Notes to Accompany Scientific Computing An Introductory Survey Second Edition by Michael T. Heath Chapter 10 Boundary Value Problems for Ordinary Differential Equations Copyright c 2001. Reproduction
Practical Guide to the Simplex Method of Linear Programming
Practical Guide to the Simplex Method of Linear Programming Marcel Oliver Revised: April, 0 The basic steps of the simplex algorithm Step : Write the linear programming problem in standard form Linear
Preconditioning Sparse Matrices for Computing Eigenvalues and Solving Linear Systems of Equations. Tzu-Yi Chen
Preconditioning Sparse Matrices for Computing Eigenvalues and Solving Linear Systems of Equations by Tzu-Yi Chen B.S. (Massachusetts Institute of Technology) 1995 B.S. (Massachusetts Institute of Technology)
Inner Product Spaces
Math 571 Inner Product Spaces 1. Preliminaries An inner product space is a vector space V along with a function, called an inner product which associates each pair of vectors u, v with a scalar u, v, and
Linear Programming. March 14, 2014
Linear Programming March 1, 01 Parts of this introduction to linear programming were adapted from Chapter 9 of Introduction to Algorithms, Second Edition, by Cormen, Leiserson, Rivest and Stein [1]. 1
LINEAR ALGEBRA. September 23, 2010
LINEAR ALGEBRA September 3, 00 Contents 0. LU-decomposition.................................... 0. Inverses and Transposes................................. 0.3 Column Spaces and NullSpaces.............................
1 Solving LPs: The Simplex Algorithm of George Dantzig
Solving LPs: The Simplex Algorithm of George Dantzig. Simplex Pivoting: Dictionary Format We illustrate a general solution procedure, called the simplex algorithm, by implementing it on a very simple example.
December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS
December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B KITCHENS The equation 1 Lines in two-dimensional space (1) 2x y = 3 describes a line in two-dimensional space The coefficients of x and y in the equation
Notes on Determinant
ENGG2012B Advanced Engineering Mathematics Notes on Determinant Lecturer: Kenneth Shum Lecture 9-18/02/2013 The determinant of a system of linear equations determines whether the solution is unique, without
Mean value theorem, Taylors Theorem, Maxima and Minima.
MA 001 Preparatory Mathematics I. Complex numbers as ordered pairs. Argand s diagram. Triangle inequality. De Moivre s Theorem. Algebra: Quadratic equations and express-ions. Permutations and Combinations.
Iterative Methods for Solving Linear Systems
Chapter 5 Iterative Methods for Solving Linear Systems 5.1 Convergence of Sequences of Vectors and Matrices In Chapter 2 we have discussed some of the main methods for solving systems of linear equations.
Lecture 3: Finding integer solutions to systems of linear equations
Lecture 3: Finding integer solutions to systems of linear equations Algorithmic Number Theory (Fall 2014) Rutgers University Swastik Kopparty Scribe: Abhishek Bhrushundi 1 Overview The goal of this lecture
5 Homogeneous systems
5 Homogeneous systems Definition: A homogeneous (ho-mo-jeen -i-us) system of linear algebraic equations is one in which all the numbers on the right hand side are equal to : a x +... + a n x n =.. a m
MATH10212 Linear Algebra. Systems of Linear Equations. Definition. An n-dimensional vector is a row or a column of n numbers (or letters): a 1.
MATH10212 Linear Algebra Textbook: D. Poole, Linear Algebra: A Modern Introduction. Thompson, 2006. ISBN 0-534-40596-7. Systems of Linear Equations Definition. An n-dimensional vector is a row or a column
Lecture 5: Singular Value Decomposition SVD (1)
EEM3L1: Numerical and Analytical Techniques Lecture 5: Singular Value Decomposition SVD (1) EE3L1, slide 1, Version 4: 25-Sep-02 Motivation for SVD (1) SVD = Singular Value Decomposition Consider the system
A matrix-free preconditioner for sparse symmetric positive definite systems and least square problems
A matrix-free preconditioner for sparse symmetric positive definite systems and least square problems Stefania Bellavia Dipartimento di Ingegneria Industriale Università degli Studi di Firenze Joint work
3. INNER PRODUCT SPACES
. INNER PRODUCT SPACES.. Definition So far we have studied abstract vector spaces. These are a generalisation of the geometric spaces R and R. But these have more structure than just that of a vector space.
3 Orthogonal Vectors and Matrices
3 Orthogonal Vectors and Matrices The linear algebra portion of this course focuses on three matrix factorizations: QR factorization, singular valued decomposition (SVD), and LU factorization The first
Numerical Matrix Analysis
Numerical Matrix Analysis Lecture Notes #10 Conditioning and / Peter Blomgren, [email protected] Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research
HSL and its out-of-core solver
HSL and its out-of-core solver Jennifer A. Scott [email protected] Prague November 2006 p. 1/37 Sparse systems Problem: we wish to solve where A is Ax = b LARGE Informal definition: A is sparse if many
MATRICES WITH DISPLACEMENT STRUCTURE A SURVEY
MATRICES WITH DISPLACEMENT STRUCTURE A SURVEY PLAMEN KOEV Abstract In the following survey we look at structured matrices with what is referred to as low displacement rank Matrices like Cauchy Vandermonde
Applications to Data Smoothing and Image Processing I
Applications to Data Smoothing and Image Processing I MA 348 Kurt Bryan Signals and Images Let t denote time and consider a signal a(t) on some time interval, say t. We ll assume that the signal a(t) is
Linear Programming for Optimization. Mark A. Schulze, Ph.D. Perceptive Scientific Instruments, Inc.
1. Introduction Linear Programming for Optimization Mark A. Schulze, Ph.D. Perceptive Scientific Instruments, Inc. 1.1 Definition Linear programming is the name of a branch of applied mathematics that
Review Jeopardy. Blue vs. Orange. Review Jeopardy
Review Jeopardy Blue vs. Orange Review Jeopardy Jeopardy Round Lectures 0-3 Jeopardy Round $200 How could I measure how far apart (i.e. how different) two observations, y 1 and y 2, are from each other?
Solving Systems of Linear Equations
LECTURE 5 Solving Systems of Linear Equations Recall that we introduced the notion of matrices as a way of standardizing the expression of systems of linear equations In today s lecture I shall show how
Determine If An Equation Represents a Function
Question : What is a linear function? The term linear function consists of two parts: linear and function. To understand what these terms mean together, we must first understand what a function is. The
MATH 551 - APPLIED MATRIX THEORY
MATH 55 - APPLIED MATRIX THEORY FINAL TEST: SAMPLE with SOLUTIONS (25 points NAME: PROBLEM (3 points A web of 5 pages is described by a directed graph whose matrix is given by A Do the following ( points
Lecture Notes 2: Matrices as Systems of Linear Equations
2: Matrices as Systems of Linear Equations 33A Linear Algebra, Puck Rombach Last updated: April 13, 2016 Systems of Linear Equations Systems of linear equations can represent many things You have probably
P164 Tomographic Velocity Model Building Using Iterative Eigendecomposition
P164 Tomographic Velocity Model Building Using Iterative Eigendecomposition K. Osypov* (WesternGeco), D. Nichols (WesternGeco), M. Woodward (WesternGeco) & C.E. Yarman (WesternGeco) SUMMARY Tomographic
Au = = = 3u. Aw = = = 2w. so the action of A on u and w is very easy to picture: it simply amounts to a stretching by 3 and 2, respectively.
Chapter 7 Eigenvalues and Eigenvectors In this last chapter of our exploration of Linear Algebra we will revisit eigenvalues and eigenvectors of matrices, concepts that were already introduced in Geometry
Similarity and Diagonalization. Similar Matrices
MATH022 Linear Algebra Brief lecture notes 48 Similarity and Diagonalization Similar Matrices Let A and B be n n matrices. We say that A is similar to B if there is an invertible n n matrix P such that
October 3rd, 2012. Linear Algebra & Properties of the Covariance Matrix
Linear Algebra & Properties of the Covariance Matrix October 3rd, 2012 Estimation of r and C Let rn 1, rn, t..., rn T be the historical return rates on the n th asset. rn 1 rṇ 2 r n =. r T n n = 1, 2,...,
Variance Reduction. Pricing American Options. Monte Carlo Option Pricing. Delta and Common Random Numbers
Variance Reduction The statistical efficiency of Monte Carlo simulation can be measured by the variance of its output If this variance can be lowered without changing the expected value, fewer replications
Inner Product Spaces and Orthogonality
Inner Product Spaces and Orthogonality week 3-4 Fall 2006 Dot product of R n The inner product or dot product of R n is a function, defined by u, v a b + a 2 b 2 + + a n b n for u a, a 2,, a n T, v b,
SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison
SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections
1 VECTOR SPACES AND SUBSPACES
1 VECTOR SPACES AND SUBSPACES What is a vector? Many are familiar with the concept of a vector as: Something which has magnitude and direction. an ordered pair or triple. a description for quantities such
1 Error in Euler s Method
1 Error in Euler s Method Experience with Euler s 1 method raises some interesting questions about numerical approximations for the solutions of differential equations. 1. What determines the amount of
Math 215 HW #6 Solutions
Math 5 HW #6 Solutions Problem 34 Show that x y is orthogonal to x + y if and only if x = y Proof First, suppose x y is orthogonal to x + y Then since x, y = y, x In other words, = x y, x + y = (x y) T
1 Review of Newton Polynomials
cs: introduction to numerical analysis 0/0/0 Lecture 8: Polynomial Interpolation: Using Newton Polynomials and Error Analysis Instructor: Professor Amos Ron Scribes: Giordano Fusco, Mark Cowlishaw, Nathanael
Nonlinear Iterative Partial Least Squares Method
Numerical Methods for Determining Principal Component Analysis Abstract Factors Béchu, S., Richard-Plouet, M., Fernandez, V., Walton, J., and Fairley, N. (2016) Developments in numerical treatments for
Derivative Free Optimization
Department of Mathematics Derivative Free Optimization M.J.D. Powell LiTH-MAT-R--2014/02--SE Department of Mathematics Linköping University S-581 83 Linköping, Sweden. Three lectures 1 on Derivative Free
MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set.
MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set. Vector space A vector space is a set V equipped with two operations, addition V V (x,y) x + y V and scalar
5. Orthogonal matrices
L Vandenberghe EE133A (Spring 2016) 5 Orthogonal matrices matrices with orthonormal columns orthogonal matrices tall matrices with orthonormal columns complex matrices with orthonormal columns 5-1 Orthonormal
POISSON AND LAPLACE EQUATIONS. Charles R. O Neill. School of Mechanical and Aerospace Engineering. Oklahoma State University. Stillwater, OK 74078
21 ELLIPTICAL PARTIAL DIFFERENTIAL EQUATIONS: POISSON AND LAPLACE EQUATIONS Charles R. O Neill School of Mechanical and Aerospace Engineering Oklahoma State University Stillwater, OK 74078 2nd Computer
Bindel, Spring 2012 Intro to Scientific Computing (CS 3220) Week 3: Wednesday, Feb 8
Spaces and bases Week 3: Wednesday, Feb 8 I have two favorite vector spaces 1 : R n and the space P d of polynomials of degree at most d. For R n, we have a canonical basis: R n = span{e 1, e 2,..., e
1 2 3 1 1 2 x = + x 2 + x 4 1 0 1
(d) If the vector b is the sum of the four columns of A, write down the complete solution to Ax = b. 1 2 3 1 1 2 x = + x 2 + x 4 1 0 0 1 0 1 2. (11 points) This problem finds the curve y = C + D 2 t which
Notes on Orthogonal and Symmetric Matrices MENU, Winter 2013
Notes on Orthogonal and Symmetric Matrices MENU, Winter 201 These notes summarize the main properties and uses of orthogonal and symmetric matrices. We covered quite a bit of material regarding these topics,
(Quasi-)Newton methods
(Quasi-)Newton methods 1 Introduction 1.1 Newton method Newton method is a method to find the zeros of a differentiable non-linear function g, x such that g(x) = 0, where g : R n R n. Given a starting
Chapter 1. Vector autoregressions. 1.1 VARs and the identi cation problem
Chapter Vector autoregressions We begin by taking a look at the data of macroeconomics. A way to summarize the dynamics of macroeconomic data is to make use of vector autoregressions. VAR models have become
LS.6 Solution Matrices
LS.6 Solution Matrices In the literature, solutions to linear systems often are expressed using square matrices rather than vectors. You need to get used to the terminology. As before, we state the definitions
Notes on Symmetric Matrices
CPSC 536N: Randomized Algorithms 2011-12 Term 2 Notes on Symmetric Matrices Prof. Nick Harvey University of British Columbia 1 Symmetric Matrices We review some basic results concerning symmetric matrices.
19 LINEAR QUADRATIC REGULATOR
19 LINEAR QUADRATIC REGULATOR 19.1 Introduction The simple form of loopshaping in scalar systems does not extend directly to multivariable (MIMO) plants, which are characterized by transfer matrices instead
CHAPTER 8 FACTOR EXTRACTION BY MATRIX FACTORING TECHNIQUES. From Exploratory Factor Analysis Ledyard R Tucker and Robert C.
CHAPTER 8 FACTOR EXTRACTION BY MATRIX FACTORING TECHNIQUES From Exploratory Factor Analysis Ledyard R Tucker and Robert C MacCallum 1997 180 CHAPTER 8 FACTOR EXTRACTION BY MATRIX FACTORING TECHNIQUES In
Examination paper for TMA4205 Numerical Linear Algebra
Department of Mathematical Sciences Examination paper for TMA4205 Numerical Linear Algebra Academic contact during examination: Markus Grasmair Phone: 97580435 Examination date: December 16, 2015 Examination
NUMERICAL ANALYSIS PROGRAMS
NUMERICAL ANALYSIS PROGRAMS I. About the Program Disk This disk included with Numerical Analysis, Seventh Edition by Burden and Faires contains a C, FORTRAN, Maple, Mathematica, MATLAB, and Pascal program
SECTIONS 1.5-1.6 NOTES ON GRAPH THEORY NOTATION AND ITS USE IN THE STUDY OF SPARSE SYMMETRIC MATRICES
SECIONS.5-.6 NOES ON GRPH HEORY NOION ND IS USE IN HE SUDY OF SPRSE SYMMERIC MRICES graph G ( X, E) consists of a finite set of nodes or vertices X and edges E. EXMPLE : road map of part of British Columbia
CS 5614: (Big) Data Management Systems. B. Aditya Prakash Lecture #18: Dimensionality Reduc7on
CS 5614: (Big) Data Management Systems B. Aditya Prakash Lecture #18: Dimensionality Reduc7on Dimensionality Reduc=on Assump=on: Data lies on or near a low d- dimensional subspace Axes of this subspace
A Direct Numerical Method for Observability Analysis
IEEE TRANSACTIONS ON POWER SYSTEMS, VOL 15, NO 2, MAY 2000 625 A Direct Numerical Method for Observability Analysis Bei Gou and Ali Abur, Senior Member, IEEE Abstract This paper presents an algebraic method
Solutions to Math 51 First Exam January 29, 2015
Solutions to Math 5 First Exam January 29, 25. ( points) (a) Complete the following sentence: A set of vectors {v,..., v k } is defined to be linearly dependent if (2 points) there exist c,... c k R, not
