Rehabilitating Research Correlations, Matters Avoiding Inversion, and Extracting Roots

Size: px
Start display at page:

Download "Rehabilitating Research Correlations, Matters Avoiding Inversion, and Extracting Roots"

Transcription

1 Rehabilitating Research Correlations, Matters Avoiding Inversion, and Extracting Roots February 25, 2009 Nick Nick Higham Higham Director School of of Research Mathematics The University of Manchester School of nickhigham.wordpress.com The Actuarial Profession March 20, 2013, London 1 / 6

2 Accuracy Estimates Guarantees Precision Single Double Quad Variable Efficiency Speed Parallelism Energy efficiency

3 Outline 1 Rehabilitating Correlations 2 Matrix Inversion 3 Matrix Roots University of Manchester Nick Higham Actuarial Matrix Computations 3 / 37

4 Correlation Matrix An n n symmetric matrix A is a correlation matrix if It has ones on the diagonal. All its eigenvalues are nonnegative. University of Manchester Nick Higham Actuarial Matrix Computations 4 / 37

5 Correlation Matrix An n n symmetric matrix A is a correlation matrix if It has ones on the diagonal. All its eigenvalues are nonnegative. Is this a correlation matrix? University of Manchester Nick Higham Actuarial Matrix Computations 4 / 37

6 Correlation Matrix An n n symmetric matrix A is a correlation matrix if It has ones on the diagonal. All its eigenvalues are nonnegative. Is this a correlation matrix? Spectrum: , , University of Manchester Nick Higham Actuarial Matrix Computations 4 / 37

7 Question from London Fund Management Company (2000) Given a real symmetric matrix A which is almost a correlation matrix... What is the best approximating (in Frobenius norm?) correlation matrix? Is it unique? Can we compute it? Typically we are working with at the moment, but this will probably grow to

8 How to Proceed Make ad hoc modifications to matrix: e.g., shift negative e vals up to zero then diagonally scale. Plug the gaps in the missing data, then compute an exact correlation matrix. Compute the nearest correlation matrix in the weighted Frobenius norm ( A 2 = i,j w iw j a 2 ij ). Given approx correlation matrix A find correlation matrix C to minimize A C. Constraint set is a closed, convex set, so unique minimizer. University of Manchester Nick Higham Actuarial Matrix Computations 6 / 37

9 Development Derived theory and algorithm: N. J. Higham, Computing the Nearest Correlation Matrix A Problem from Finance, IMA J. Numer. Anal. 22, , Extensions in: Craig Lucas, Computing Nearest Covariance and Correlation Matrices, M.Sc. Thesis, University of Manchester, University of Manchester Nick Higham Actuarial Matrix Computations 7 / 37

10 Alternating Projections Algorithm von Neumann (1933): for subspaces. Dykstra (1983): corrections for closed convex sets. S 1 S 2 Easy to implement. Guaranteed convergence, at a linear rate. Can add further constraints/projections. University of Manchester Nick Higham Actuarial Matrix Computations 8 / 37

11 Unexpected Applications Some recent papers: Applying stochastic small-scale damage functions to German winter storms (2012) Estimating variance components and predicting breeding values for eventing disciplines and grades in sport horses (2012) Characterisation of tool marks on cartridge cases by combining multiple images (2012) Experiments in reconstructing twentieth-century sea levels (2011) University of Manchester Nick Higham Actuarial Matrix Computations 9 / 37

12

13 Newton Method Qi & Sun (2006): Newton method based on theory of strongly semismooth matrix functions. Applies Newton to dual (unconstrained) of min 1 2 A X 2 F problem. Globally and quadratically convergent. H & Borsdorf (2010) improve efficiency and reliability: use minres for Newton equation, Jacobi preconditioner, reliability improved by line search tweaks, extra scaling step to ensure unit diagonal. University of Manchester Nick Higham Actuarial Matrix Computations 11 / 37

14

15

16 Alternating Projections vs Newton Matrix tol Code Time (s) Iters 1. Random (100) 1e-10 g02aa nearcorr Random (500) 1e-10 g02aa nearcorr Real-life (1399) 1e-4 g02aa nearcorr University of Manchester Nick Higham Actuarial Matrix Computations 14 / 37

17 Performance of NAG Codes University of Manchester Nick Higham Actuarial Matrix Computations 15 / 37

18 Factor Model (1) ξ = }{{} X η }{{} n k k 1 + F }{{} n n }{{} ε n 1 where var(ξ i ) 1, F = diag(f ii ). Implies k j=1, η i, ε i N(0, 1), x 2 ij 1, i = 1: n. Multifactor normal copula model. Collateralized debt obligations (CDOs). Multivariate time series. University of Manchester Nick Higham Actuarial Matrix Computations 16 / 37

19 Factor Model (2) Yields correlation matrix of form C(X) = D + XX T = D + k j=1 x j x T j, D = diag(i XX T ), X = [x 1,..., x k ]. C(X) has k factor correlation matrix structure. 1 y1 T y 2... y1 T y n y C(X) = 1 T y y T n 1 y n, y i R k. y1 T y n... yn 1 T y n 1 University of Manchester Nick Higham Actuarial Matrix Computations 17 / 37

20 Factor Structure Nearest correlation matrix with factor structure. Principal factors method (Andersen et al., 2003) has no convergence theory and can converge to an incorrect answer. University of Manchester Nick Higham Actuarial Matrix Computations 18 / 37

21 Factor Structure Nearest correlation matrix with factor structure. Principal factors method (Andersen et al., 2003) has no convergence theory and can converge to an incorrect answer. Algorithm based on spectral projected gradient method (Borsdorf, H & Raydan, 2010). Respects the constraints, exploits their convexity, and converges to a feasible stationary point. NAG routine g02aef (Mark 23, 2012). University of Manchester Nick Higham Actuarial Matrix Computations 18 / 37

22 Variations Specific rank or bound on correlations. Block structure. Bounds on individual correlations. Other requirements? University of Manchester Nick Higham Actuarial Matrix Computations 19 / 37

23 Outline 1 Rehabilitating Correlations 2 Matrix Inversion 3 Matrix Roots University of Manchester Nick Higham Actuarial Matrix Computations 20 / 37

24 Avoiding Inversion Fundamental Tenet of Numerical Analysis Don t invert matrices. University of Manchester Nick Higham Actuarial Matrix Computations 21 / 37

25 Avoiding Inversion Fundamental Tenet of Numerical Analysis Don t invert matrices. Ax = b : use Gaussian elimination (with pivoting), not x = A 1 b. x T A 1 y = x T (A 1 y). (A 1 ) ii = e T i A 1 e i. trace(a 1 ) m 1 m k=1 v T k A 1 v k, v k uniform{ 1, 1}. (Bekas et al., 2007) University of Manchester Nick Higham Actuarial Matrix Computations 21 / 37

26 How to Invert (1) Use a condition estimator to warn when A is nearly singular. >> A = hilb(16); >> X = inv(a); Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = e-19. University of Manchester Nick Higham Actuarial Matrix Computations 22 / 37

27 How to Invert (2) To compute variance covariance matrix (X T X) 1 of least squares estimator, use QR factorization X = QR ((X T X) 1 = R 1 R T ) and do not explicitly form X T X. Quality of computed inverse Ŷ A 1 measured by Ŷ A I Ŷ A or AŶ I Ŷ A but not both. University of Manchester Nick Higham Actuarial Matrix Computations 23 / 37

28 Computing the Sample Variance Sample variance of x 1,..., x n : s 2 n = 1 n 1 n (x i x) 2, where x = 1 n i=1 n x i. (1) Can compute using one-pass formula: sn 2 = 1 ( n xi 2 1 ( n ) 2 x i ). (2) n 1 n i=1 i=1 i=1 University of Manchester Nick Higham Actuarial Matrix Computations 24 / 37

29 Computing the Sample Variance Sample variance of x 1,..., x n : s 2 n = 1 n 1 n (x i x) 2, where x = 1 n i=1 n x i. (1) Can compute using one-pass formula: sn 2 = 1 ( n xi 2 1 ( n ) 2 x i ). (2) n 1 n i=1 For x = (10000, 10001, 10002) using 8-digit arithmetic, (1) gives: 1.0, (2) gives 0.0. i=1 i=1 (2) can even give negative results in floating point arithmetic! University of Manchester Nick Higham Actuarial Matrix Computations 24 / 37

30 Casio fx-992vb University of Manchester Nick Higham Actuarial Matrix Computations 25 / 37

31 Spreadsheets in the Cloud Standard deviation of x = [n, n + 1, n + 2] T. n Exact Google Sheet University of Manchester Nick Higham Actuarial Matrix Computations 26 / 37

32 Spreadsheets in the Cloud Standard deviation of x = [n, n + 1, n + 2] T. n Exact Google Sheet University of Manchester Nick Higham Actuarial Matrix Computations 26 / 37

33 Spreadsheets in the Cloud Standard deviation of x = [n, n + 1, n + 2] T. n Exact Google Sheet McCullough & Yalta (2013) University of Manchester Nick Higham Actuarial Matrix Computations 26 / 37

34 Outline 1 Rehabilitating Correlations 2 Matrix Inversion 3 Matrix Roots University of Manchester Nick Higham Actuarial Matrix Computations 27 / 37

35 Cayley and Sylvester Term matrix coined in 1850 by James Joseph Sylvester, FRS ( ). Matrix algebra developed by Arthur Cayley, FRS ( ). Memoir on the Theory of Matrices (1858). University of Manchester Nick Higham Actuarial Matrix Computations 28 / 37

36 Cayley and Sylvester on Matrix Functions Cayley considered matrix square roots in his 1858 memoir. Tony Crilly, Arthur Cayley: Mathematician Laureate of the Victorian Age, Sylvester (1883) gave first definition of f (A) for general f. Karen Hunger Parshall, James Joseph Sylvester. Jewish Mathematician in a Victorian World, University of Manchester Nick Higham Actuarial Matrix Computations 29 / 37

37 Matrix Roots in Markov Models Let vectors v 2011, v 2010 represent risks, credit ratings or stock prices in 2011 and Assume a Markov model v 2011 = P v 2010, where P is a transition probability matrix. P 1/2 enables predictions to be made at 6-monthly intervals. University of Manchester Nick Higham Actuarial Matrix Computations 30 / 37

38 Matrix Roots in Markov Models Let vectors v 2011, v 2010 represent risks, credit ratings or stock prices in 2011 and Assume a Markov model v 2011 = P v 2010, where P is a transition probability matrix. P 1/2 enables predictions to be made at 6-monthly intervals. P 1/2 is matrix X such that X 2 = P. What are P 2/3, P 0.9? P s = exp(s log P). Problem: log P, P 1/k may have wrong sign patterns regularize. University of Manchester Nick Higham Actuarial Matrix Computations 30 / 37

39 Chronic Disease Example Estimated 6-month transition matrix. Four AIDS-free states and 1 AIDS state observations (Charitos et al., 2008) P = Want to estimate the 1-month transition matrix. Λ(P) = {1, , , , }. H & Lin (2011). Lin (2011, for survey of regularization methods. University of Manchester Nick Higham Actuarial Matrix Computations 31 / 37

40 MATLAB: Arbitrary Powers >> A = [1 1e-8; 0 1] A = e e e+000 >> A^0.1 ans = >> expm(0.1*logm(a)) ans = e e e+000 University of Manchester Nick Higham Actuarial Matrix Computations 32 / 37

41 MATLAB Arbitrary Power New Schur algorithm (H & Lin, 2011, 2013) reliably computes A p for any real p. New backward-error based inverse scaling and squaring alg for matrix logarithm (Al-Mohy, H & Relton, 2012) faster and more accurate. Alternative Newton-based algorithms available for A 1/q with q an integer, e.g., for X k+1 = 1 q [ (q + 1)Xk X q+1 k A ], X 0 = A, X k A 1/q. University of Manchester Nick Higham Actuarial Matrix Computations 33 / 37

42 Knowledge Transfer Partnership University of Manchester and NAG ( ) funded by EPSRC, NAG and TSB. Developing suite of NAG Library codes for matrix functions. Extensive set of new codes included in Mark 23 (2012), Mark 24 (2013). Improvements to existing state of the art: faster and more accurate. My work also supported by 2M ERC Advanced Grant. University of Manchester Nick Higham Actuarial Matrix Computations 34 / 37

43

44

45 Final Remarks Fast moving developments in numerical linear algebra algorithms. Numerical reliability is essential. Partnership with NAG enables rapid inclusion of our algorithms in the NAG Library. Keen to hear about your matrix problems. University of Manchester Nick Higham Actuarial Matrix Computations 37 / 37

46 References I A. H. Al-Mohy and N. J. Higham. Improved inverse scaling and squaring algorithms for the matrix logarithm. SIAM J. Sci. Comput., 34(4):C153 C169, A. H. Al-Mohy, N. J. Higham, and S. D. Relton. Computing the Fréchet derivative of the matrix logarithm and estimating the condition number. MIMS EPrint , Manchester Institute for Mathematical Sciences, The University of Manchester, UK, July pp. Revised December University of Manchester Nick Higham Actuarial Matrix Computations 1 / 8

47 References II L. Anderson, J. Sidenius, and S. Basu. All your hedges in one basket. Risk, pages 67 72, Nov C. Bekas, E. Kokiopoulou, and Y. Saad. An estimator for the diagonal of a matrix. Appl. Numer. Math., 57: , R. Borsdorf, N. J. Higham, and M. Raydan. Computing a nearest correlation matrix with factor structure. SIAM J. Matrix Anal. Appl., 31(5): , University of Manchester Nick Higham Actuarial Matrix Computations 2 / 8

48 References III T. Charitos, P. R. de Waal, and L. C. van der Gaag. Computing short-interval transition matrices of a discrete-time Markov chain from partially observed data. Statistics in Medicine, 27: , T. Crilly. Arthur Cayley: Mathematician Laureate of the Victorian Age. Johns Hopkins University Press, Baltimore, MD, USA, ISBN xxi+610 pp. University of Manchester Nick Higham Actuarial Matrix Computations 3 / 8

49 References IV P. Glasserman and S. Suchintabandid. Correlation expansions for CDO pricing. Journal of Banking & Finance, 31: , C.-H. Guo and N. J. Higham. A Schur Newton method for the matrix pth root and its inverse. SIAM J. Matrix Anal. Appl., 28(3): , University of Manchester Nick Higham Actuarial Matrix Computations 4 / 8

50 References V N. J. Higham. Accuracy and Stability of Numerical Algorithms. Society for Industrial and Applied Mathematics, Philadelphia, PA, USA, second edition, ISBN xxx+680 pp. N. J. Higham. Computing the nearest correlation matrix A problem from finance. IMA J. Numer. Anal., 22(3): , University of Manchester Nick Higham Actuarial Matrix Computations 5 / 8

51 References VI N. J. Higham and L. Lin. On pth roots of stochastic matrices. Linear Algebra Appl., 435(3): , N. J. Higham and L. Lin. An improved Schur Padé algorithm for fractional powers of a matrix and their Fréchet derivatives. MIMS EPrint , Manchester Institute for Mathematical Sciences, The University of Manchester, UK, Jan pp. University of Manchester Nick Higham Actuarial Matrix Computations 6 / 8

52 References VII L. Lin. Roots of Stochastic Matrices and Fractional Matrix Powers. PhD thesis, The University of Manchester, Manchester, UK, pp. MIMS EPrint , Manchester Institute for Mathematical Sciences. B. D. McCullough and A. T. Yalta. Spreadsheets in the cloud not ready yet. Journal of Statistical Software, 52:1 14, University of Manchester Nick Higham Actuarial Matrix Computations 7 / 8

53 References VIII K. H. Parshall. James Joseph Sylvester. Jewish Mathematician in a Victorian World. Johns Hopkins University Press, Baltimore, MD, USA, ISBN xiii+461 pp. H.-D. Qi and D. Sun. A quadratically convergent Newton method for computing the nearest correlation matrix. SIAM J. Matrix Anal. Appl., 28(2): , University of Manchester Nick Higham Actuarial Matrix Computations 8 / 8

Functions of Matrices and

Functions of Matrices and Functions of Matrices and Nearest Research Correlation MattersMatrices February 25, 2009 Nick Higham School Nick Higham of Mathematics The Director University of Research of Manchester Nicholas.J.Higham@manchester.ac.uk

More information

Nearest Correlation Matrix

Nearest Correlation Matrix Nearest Correlation Matrix The NAG Library has a range of functionality in the area of computing the nearest correlation matrix. In this article we take a look at nearest correlation matrix problems, giving

More information

Research CharlieMatters

Research CharlieMatters Research CharlieMatters Van Loan and the Matrix Exponential February 25, 2009 Nick Nick Higham Director Schoolof ofresearch Mathematics The School University of Mathematics of Manchester http://www.maths.manchester.ac.uk/~higham

More information

An Introduction to Correlation Stress Testing

An Introduction to Correlation Stress Testing An Introduction to Correlation Stress Testing Defeng Sun Department of Mathematics and Risk Management Institute National University of Singapore This is based on a joint work with GAO Yan at NUS March

More information

Preface to Second Edition... vii. Preface to First Edition...

Preface to Second Edition... vii. Preface to First Edition... Contents Preface to Second Edition..................................... vii Preface to First Edition....................................... ix Part I Linear Algebra 1 Basic Vector/Matrix Structure and

More information

Numerical Methods in Matrix Computations

Numerical Methods in Matrix Computations Ake Bjorck Numerical Methods in Matrix Computations Springer Contents 1 Direct Methods for Linear Systems 1 1.1 Elements of Matrix Theory 1 1.1.1 Matrix Algebra 2 1.1.2 Vector Spaces 6 1.1.3 Submatrices

More information

A Method for Constructing Diagonally Dominant Preconditioners based on Jacobi Rotations

A Method for Constructing Diagonally Dominant Preconditioners based on Jacobi Rotations A Method for Constructing Diagonally Dominant Preconditioners based on Jacobi Rotations Jin Yun Yuan Plamen Y. Yalamov Abstract A method is presented to make a given matrix strictly diagonally dominant

More information

LAPACK-Style Codes for Pivoted Cholesky and QR Updating. Hammarling, Sven and Higham, Nicholas J. and Lucas, Craig. MIMS EPrint: 2006.

LAPACK-Style Codes for Pivoted Cholesky and QR Updating. Hammarling, Sven and Higham, Nicholas J. and Lucas, Craig. MIMS EPrint: 2006. LAPACK-Style Codes for Pivoted Cholesky and QR Updating Hammarling, Sven and Higham, Nicholas J. and Lucas, Craig 2007 MIMS EPrint: 2006.385 Manchester Institute for Mathematical Sciences School of Mathematics

More information

MATRIX AND LINEAR ALGEBR A Aided with MATLAB

MATRIX AND LINEAR ALGEBR A Aided with MATLAB Second Edition (Revised) MATRIX AND LINEAR ALGEBR A Aided with MATLAB Kanti Bhushan Datta Matrix and Linear Algebra Aided with MATLAB Second Edition KANTI BHUSHAN DATTA Former Professor Department of Electrical

More information

Improved Newton s method with exact line searches to solve quadratic matrix equation

Improved Newton s method with exact line searches to solve quadratic matrix equation Journal of Computational and Applied Mathematics 222 (2008) 645 654 wwwelseviercom/locate/cam Improved Newton s method with exact line searches to solve quadratic matrix equation Jian-hui Long, Xi-yan

More information

LAPACK-Style Codes for Pivoted Cholesky and QR Updating

LAPACK-Style Codes for Pivoted Cholesky and QR Updating LAPACK-Style Codes for Pivoted Cholesky and QR Updating Sven Hammarling 1, Nicholas J. Higham 2, and Craig Lucas 3 1 NAG Ltd.,Wilkinson House, Jordan Hill Road, Oxford, OX2 8DR, England, sven@nag.co.uk,

More information

Algorithms for Solving the Polynomial Eigenvalue Problem

Algorithms for Solving the Polynomial Eigenvalue Problem Algorithms for Solving the Polynomial Eigenvalue Problem Nick Higham School of Mathematics The University of Manchester higham@ma.man.ac.uk http://www.ma.man.ac.uk/~higham/ Joint work with D. Steven Mackey

More information

Computing the Action of the Matrix Exponential

Computing the Action of the Matrix Exponential Computing the Action of the Matrix Exponential Nick Higham School of Mathematics The University of Manchester higham@ma.man.ac.uk http://www.ma.man.ac.uk/~higham/ Joint work with Awad H. Al-Mohy 16th ILAS

More information

Testing matrix function algorithms using identities. Deadman, Edvin and Higham, Nicholas J. MIMS EPrint:

Testing matrix function algorithms using identities. Deadman, Edvin and Higham, Nicholas J. MIMS EPrint: Testing matrix function algorithms using identities Deadman, Edvin and Higham, Nicholas J. 2014 MIMS EPrint: 2014.13 Manchester Institute for Mathematical Sciences School of Mathematics The University

More information

Computing the pth Roots of a Matrix. with Repeated Eigenvalues

Computing the pth Roots of a Matrix. with Repeated Eigenvalues Applied Mathematical Sciences, Vol. 5, 2011, no. 53, 2645-2661 Computing the pth Roots of a Matrix with Repeated Eigenvalues Amir Sadeghi 1, Ahmad Izani Md. Ismail and Azhana Ahmad School of Mathematical

More information

Exponentials of Symmetric Matrices through Tridiagonal Reductions

Exponentials of Symmetric Matrices through Tridiagonal Reductions Exponentials of Symmetric Matrices through Tridiagonal Reductions Ya Yan Lu Department of Mathematics City University of Hong Kong Kowloon, Hong Kong Abstract A simple and efficient numerical algorithm

More information

Convergence of Rump s Method for Inverting Arbitrarily Ill-Conditioned Matrices

Convergence of Rump s Method for Inverting Arbitrarily Ill-Conditioned Matrices published in J. Comput. Appl. Math., 205(1):533 544, 2007 Convergence of Rump s Method for Inverting Arbitrarily Ill-Conditioned Matrices Shin ichi Oishi a,b Kunio Tanabe a Takeshi Ogita b,a Siegfried

More information

Improved Inverse Scaling and Squaring Algorithms for the Matrix Logarithm. Al-Mohy, Awad H. and Higham, Nicholas J. MIMS EPrint: 2011.

Improved Inverse Scaling and Squaring Algorithms for the Matrix Logarithm. Al-Mohy, Awad H. and Higham, Nicholas J. MIMS EPrint: 2011. Improved Inverse Scaling and Squaring Algorithms for the Matrix Logarithm Al-Mohy, Awad H. and Higham, Nicholas J. 2011 MIMS EPrint: 2011.83 Manchester Institute for Mathematical Sciences School of Mathematics

More information

HONORS LINEAR ALGEBRA (MATH V 2020) SPRING 2013

HONORS LINEAR ALGEBRA (MATH V 2020) SPRING 2013 HONORS LINEAR ALGEBRA (MATH V 2020) SPRING 2013 PROFESSOR HENRY C. PINKHAM 1. Prerequisites The only prerequisite is Calculus III (Math 1201) or the equivalent: the first semester of multivariable calculus.

More information

I-v k e k. (I-e k h kt ) = Stability of Gauss-Huard Elimination for Solving Linear Systems. 1 x 1 x x x x

I-v k e k. (I-e k h kt ) = Stability of Gauss-Huard Elimination for Solving Linear Systems. 1 x 1 x x x x Technical Report CS-93-08 Department of Computer Systems Faculty of Mathematics and Computer Science University of Amsterdam Stability of Gauss-Huard Elimination for Solving Linear Systems T. J. Dekker

More information

FINITE-DIMENSIONAL LINEAR ALGEBRA

FINITE-DIMENSIONAL LINEAR ALGEBRA DISCRETE MATHEMATICS AND ITS APPLICATIONS Series Editor KENNETH H ROSEN FINITE-DIMENSIONAL LINEAR ALGEBRA Mark S Gockenbach Michigan Technological University Houghton, USA CRC Press Taylor & Francis Croup

More information

Computing the nearest correlation matrix a problem from finance

Computing the nearest correlation matrix a problem from finance IMA Journal of Numerical Analysis (2002) 22, 329 343 Computing the nearest correlation matrix a problem from finance NICHOLAS J. HIGHAM Department of Mathematics, University of Manchester, Manchester,

More information

Key words. conjugate gradients, normwise backward error, incremental norm estimation.

Key words. conjugate gradients, normwise backward error, incremental norm estimation. Proceedings of ALGORITMY 2016 pp. 323 332 ON ERROR ESTIMATION IN THE CONJUGATE GRADIENT METHOD: NORMWISE BACKWARD ERROR PETR TICHÝ Abstract. Using an idea of Duff and Vömel [BIT, 42 (2002), pp. 300 322

More information

Preliminary/Qualifying Exam in Numerical Analysis (Math 502a) Spring 2012

Preliminary/Qualifying Exam in Numerical Analysis (Math 502a) Spring 2012 Instructions Preliminary/Qualifying Exam in Numerical Analysis (Math 502a) Spring 2012 The exam consists of four problems, each having multiple parts. You should attempt to solve all four problems. 1.

More information

A preconditioned Newton algorithm for the nearest correlation matrix

A preconditioned Newton algorithm for the nearest correlation matrix IMA Journal of Numerical Analysis (2010) 30, 94 107 doi:10.1093/imanum/drn085 Advance Access publication on June 8, 2009 A preconditioned Newton algorithm for the nearest correlation matrix RÜDIGER BORSDORF

More information

APPLIED NUMERICAL LINEAR ALGEBRA

APPLIED NUMERICAL LINEAR ALGEBRA APPLIED NUMERICAL LINEAR ALGEBRA James W. Demmel University of California Berkeley, California Society for Industrial and Applied Mathematics Philadelphia Contents Preface 1 Introduction 1 1.1 Basic Notation

More information

OUTLINE 1. Introduction 1.1 Notation 1.2 Special matrices 2. Gaussian Elimination 2.1 Vector and matrix norms 2.2 Finite precision arithmetic 2.3 Fact

OUTLINE 1. Introduction 1.1 Notation 1.2 Special matrices 2. Gaussian Elimination 2.1 Vector and matrix norms 2.2 Finite precision arithmetic 2.3 Fact Computational Linear Algebra Course: (MATH: 6800, CSCI: 6800) Semester: Fall 1998 Instructors: { Joseph E. Flaherty, aherje@cs.rpi.edu { Franklin T. Luk, luk@cs.rpi.edu { Wesley Turner, turnerw@cs.rpi.edu

More information

CHAPTER 11. A Revision. 1. The Computers and Numbers therein

CHAPTER 11. A Revision. 1. The Computers and Numbers therein CHAPTER A Revision. The Computers and Numbers therein Traditional computer science begins with a finite alphabet. By stringing elements of the alphabet one after another, one obtains strings. A set of

More information

A Preconditioned Newton Algorithm for the Nearest Correlation Matrix. Borsdorf, Rudiger and Higham, Nicholas J. MIMS EPrint: 2008.

A Preconditioned Newton Algorithm for the Nearest Correlation Matrix. Borsdorf, Rudiger and Higham, Nicholas J. MIMS EPrint: 2008. A Preconditioned Newton Algorithm for the Nearest Correlation Matrix Borsdorf, Rudiger and Higham, Nicholas J. 2008 MIMS EPrint: 2008.50 Manchester Institute for Mathematical Sciences School of Mathematics

More information

MATH20602 Numerical Analysis 1

MATH20602 Numerical Analysis 1 M\cr NA Manchester Numerical Analysis MATH20602 Numerical Analysis 1 Martin Lotz School of Mathematics The University of Manchester Manchester, January 27, 2014 Outline General Course Information Introduction

More information

FIXED POINT ITERATIONS

FIXED POINT ITERATIONS FIXED POINT ITERATIONS MARKUS GRASMAIR 1. Fixed Point Iteration for Non-linear Equations Our goal is the solution of an equation (1) F (x) = 0, where F : R n R n is a continuous vector valued mapping in

More information

Iterative Methods. Splitting Methods

Iterative Methods. Splitting Methods Iterative Methods Splitting Methods 1 Direct Methods Solving Ax = b using direct methods. Gaussian elimination (using LU decomposition) Variants of LU, including Crout and Doolittle Other decomposition

More information

Mathematics for Economics and Finance

Mathematics for Economics and Finance Mathematics for Economics and Finance Michael Harrison and Patrick Waldron B 375482 Routledge Taylor & Francis Croup LONDON AND NEW YORK Contents List of figures ix List of tables xi Foreword xiii Preface

More information

Math 2J Lecture 16-11/02/12

Math 2J Lecture 16-11/02/12 Math 2J Lecture 16-11/02/12 William Holmes Markov Chain Recap The population of a town is 100000. Each person is either independent, democrat, or republican. In any given year, each person can choose to

More information

A Heuristic for Completing Covariance And Correlation Matrices. Martin van der Schans and Alex Boer

A Heuristic for Completing Covariance And Correlation Matrices. Martin van der Schans and Alex Boer A Heuristic for Completing Covariance And Correlation Matrices Martin van der Schans and Alex Boer Technical Working Paper 2013-01 March 2013 A Heuristic for Completing Covariance And Correlation Matrices

More information

Outline. Math Numerical Analysis. Errors. Lecture Notes Linear Algebra: Part B. Joseph M. Mahaffy,

Outline. Math Numerical Analysis. Errors. Lecture Notes Linear Algebra: Part B. Joseph M. Mahaffy, Math 54 - Numerical Analysis Lecture Notes Linear Algebra: Part B Outline Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences

More information

Director of Research School of Mathematics

Director of Research   School of Mathematics Multiprecision Research Matters Algorithms February Nick25, Higham 2009 School of Mathematics The University Nick Higham of Manchester Director of Research http://www.ma.man.ac.uk/~higham School of Mathematics

More information

A fast randomized algorithm for overdetermined linear least-squares regression

A fast randomized algorithm for overdetermined linear least-squares regression A fast randomized algorithm for overdetermined linear least-squares regression Vladimir Rokhlin and Mark Tygert Technical Report YALEU/DCS/TR-1403 April 28, 2008 Abstract We introduce a randomized algorithm

More information

Matrix decompositions

Matrix decompositions Matrix decompositions Zdeněk Dvořák May 19, 2015 Lemma 1 (Schur decomposition). If A is a symmetric real matrix, then there exists an orthogonal matrix Q and a diagonal matrix D such that A = QDQ T. The

More information

ETNA Kent State University

ETNA Kent State University C 8 Electronic Transactions on Numerical Analysis. Volume 17, pp. 76-2, 2004. Copyright 2004,. ISSN 1068-613. etnamcs.kent.edu STRONG RANK REVEALING CHOLESKY FACTORIZATION M. GU AND L. MIRANIAN Abstract.

More information

Hands-on Matrix Algebra Using R

Hands-on Matrix Algebra Using R Preface vii 1. R Preliminaries 1 1.1 Matrix Defined, Deeper Understanding Using Software.. 1 1.2 Introduction, Why R?.................... 2 1.3 Obtaining R.......................... 4 1.4 Reference Manuals

More information

Dense LU factorization and its error analysis

Dense LU factorization and its error analysis Dense LU factorization and its error analysis Laura Grigori INRIA and LJLL, UPMC February 2016 Plan Basis of floating point arithmetic and stability analysis Notation, results, proofs taken from [N.J.Higham,

More information

1 Number Systems and Errors 1

1 Number Systems and Errors 1 Contents 1 Number Systems and Errors 1 1.1 Introduction................................ 1 1.2 Number Representation and Base of Numbers............. 1 1.2.1 Normalized Floating-point Representation...........

More information

Structured Condition Numbers of Symmetric Algebraic Riccati Equations

Structured Condition Numbers of Symmetric Algebraic Riccati Equations Proceedings of the 2 nd International Conference of Control Dynamic Systems and Robotics Ottawa Ontario Canada May 7-8 2015 Paper No. 183 Structured Condition Numbers of Symmetric Algebraic Riccati Equations

More information

Computing the Nearest Correlation Matrix A Problem from Finance. Higham, Nicholas J. MIMS EPrint:

Computing the Nearest Correlation Matrix A Problem from Finance. Higham, Nicholas J. MIMS EPrint: Computing the Nearest Correlation Matrix A Problem from Finance Higham, Nicholas J. 2002 MIMS EPrint: 2006.70 Manchester Institute for Mathematical Sciences School of Mathematics The University of Manchester

More information

Iterative Methods for Smooth Objective Functions

Iterative Methods for Smooth Objective Functions Optimization Iterative Methods for Smooth Objective Functions Quadratic Objective Functions Stationary Iterative Methods (first/second order) Steepest Descent Method Landweber/Projected Landweber Methods

More information

A more accurate Briggs method for the logarithm

A more accurate Briggs method for the logarithm Numer Algor (2012) 59:393 402 DOI 10.1007/s11075-011-9496-z ORIGINAL PAPER A more accurate Briggs method for the logarithm Awad H. Al-Mohy Received: 25 May 2011 / Accepted: 15 August 2011 / Published online:

More information

Rank Constrained Matrix Optimization Problems

Rank Constrained Matrix Optimization Problems Rank Constrained Matrix Optimization Problems Defeng Sun Department of Mathematics and Risk Management Institute National University of Singapore This talk is based on a joint work with Yan Gao at NUS

More information

MATH20602 Numerical Analysis 1

MATH20602 Numerical Analysis 1 M\cr NA Manchester Numerical Analysis MATH20602 Numerical Analysis 1 Martin Lotz School of Mathematics The University of Manchester Manchester, February 1, 2016 Outline General Course Information Introduction

More information

BASIC MATRIX ALGEBRA WITH ALGORITHMS AND APPLICATIONS ROBERT A. LIEBLER CHAPMAN & HALL/CRC

BASIC MATRIX ALGEBRA WITH ALGORITHMS AND APPLICATIONS ROBERT A. LIEBLER CHAPMAN & HALL/CRC BASIC MATRIX ALGEBRA WITH ALGORITHMS AND APPLICATIONS ROBERT A. LIEBLER CHAPMAN & HALL/CRC A CRC Press Company Boca Raton London New York Washington, D.C. Contents Preface Examples Major results/proofs

More information

OPTIMAL SCALING FOR P -NORMS AND COMPONENTWISE DISTANCE TO SINGULARITY

OPTIMAL SCALING FOR P -NORMS AND COMPONENTWISE DISTANCE TO SINGULARITY published in IMA Journal of Numerical Analysis (IMAJNA), Vol. 23, 1-9, 23. OPTIMAL SCALING FOR P -NORMS AND COMPONENTWISE DISTANCE TO SINGULARITY SIEGFRIED M. RUMP Abstract. In this note we give lower

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra)

AMS526: Numerical Analysis I (Numerical Linear Algebra) AMS526: Numerical Analysis I (Numerical Linear Algebra) Lecture 1: Course Overview & Matrix-Vector Multiplication Xiangmin Jiao SUNY Stony Brook Xiangmin Jiao Numerical Analysis I 1 / 20 Outline 1 Course

More information

Methods for sparse analysis of high-dimensional data, II

Methods for sparse analysis of high-dimensional data, II Methods for sparse analysis of high-dimensional data, II Rachel Ward May 23, 2011 High dimensional data with low-dimensional structure 300 by 300 pixel images = 90, 000 dimensions 2 / 47 High dimensional

More information

Numerical Methods - Numerical Linear Algebra

Numerical Methods - Numerical Linear Algebra Numerical Methods - Numerical Linear Algebra Y. K. Goh Universiti Tunku Abdul Rahman 2013 Y. K. Goh (UTAR) Numerical Methods - Numerical Linear Algebra I 2013 1 / 62 Outline 1 Motivation 2 Solving Linear

More information

Methods for sparse analysis of high-dimensional data, II

Methods for sparse analysis of high-dimensional data, II Methods for sparse analysis of high-dimensional data, II Rachel Ward May 26, 2011 High dimensional data with low-dimensional structure 300 by 300 pixel images = 90, 000 dimensions 2 / 55 High dimensional

More information

Introduction to Applied Linear Algebra with MATLAB

Introduction to Applied Linear Algebra with MATLAB Sigam Series in Applied Mathematics Volume 7 Rizwan Butt Introduction to Applied Linear Algebra with MATLAB Heldermann Verlag Contents Number Systems and Errors 1 1.1 Introduction 1 1.2 Number Representation

More information

Can You Count on Your Computer?

Can You Count on Your Computer? Can You Count on Your Computer? Professor Nick Higham School of Mathematics University of Manchester higham@ma.man.ac.uk http://www.ma.man.ac.uk/~higham/ p. 1/33 p. 2/33 Counting to Six I asked my computer

More information

Scientific Computing: Dense Linear Systems

Scientific Computing: Dense Linear Systems Scientific Computing: Dense Linear Systems Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 Course MATH-GA.2043 or CSCI-GA.2112, Spring 2012 February 9th, 2012 A. Donev (Courant Institute)

More information

A Continuation Approach to a Quadratic Matrix Equation

A Continuation Approach to a Quadratic Matrix Equation A Continuation Approach to a Quadratic Matrix Equation Nils Wagner nwagner@mecha.uni-stuttgart.de Institut A für Mechanik, Universität Stuttgart GAMM Workshop Applied and Numerical Linear Algebra September

More information

The Lanczos and conjugate gradient algorithms

The Lanczos and conjugate gradient algorithms The Lanczos and conjugate gradient algorithms Gérard MEURANT October, 2008 1 The Lanczos algorithm 2 The Lanczos algorithm in finite precision 3 The nonsymmetric Lanczos algorithm 4 The Golub Kahan bidiagonalization

More information

Matrix analytic methods. Lecture 1: Structured Markov chains and their stationary distribution

Matrix analytic methods. Lecture 1: Structured Markov chains and their stationary distribution 1/29 Matrix analytic methods Lecture 1: Structured Markov chains and their stationary distribution Sophie Hautphenne and David Stanford (with thanks to Guy Latouche, U. Brussels and Peter Taylor, U. Melbourne

More information

G1110 & 852G1 Numerical Linear Algebra

G1110 & 852G1 Numerical Linear Algebra The University of Sussex Department of Mathematics G & 85G Numerical Linear Algebra Lecture Notes Autumn Term Kerstin Hesse (w aw S w a w w (w aw H(wa = (w aw + w Figure : Geometric explanation of the

More information

Some Properties of the Augmented Lagrangian in Cone Constrained Optimization

Some Properties of the Augmented Lagrangian in Cone Constrained Optimization MATHEMATICS OF OPERATIONS RESEARCH Vol. 29, No. 3, August 2004, pp. 479 491 issn 0364-765X eissn 1526-5471 04 2903 0479 informs doi 10.1287/moor.1040.0103 2004 INFORMS Some Properties of the Augmented

More information

CSL361 Problem set 4: Basic linear algebra

CSL361 Problem set 4: Basic linear algebra CSL361 Problem set 4: Basic linear algebra February 21, 2017 [Note:] If the numerical matrix computations turn out to be tedious, you may use the function rref in Matlab. 1 Row-reduced echelon matrices

More information

Contents. Preface for the Instructor. Preface for the Student. xvii. Acknowledgments. 1 Vector Spaces 1 1.A R n and C n 2

Contents. Preface for the Instructor. Preface for the Student. xvii. Acknowledgments. 1 Vector Spaces 1 1.A R n and C n 2 Contents Preface for the Instructor xi Preface for the Student xv Acknowledgments xvii 1 Vector Spaces 1 1.A R n and C n 2 Complex Numbers 2 Lists 5 F n 6 Digression on Fields 10 Exercises 1.A 11 1.B Definition

More information

The matrix sign function

The matrix sign function The matrix sign function 1 Re x > 0, sign(x) = 1 Re x < 0, undefined Re x = 0. Suppose the Jordan form of A is reblocked as A = [ V 1 V 2 ] [ J 1 J 2 ] [ V 1 V 2 ] 1, where J 1 contains all eigenvalues

More information

Numerical Methods I Non-Square and Sparse Linear Systems

Numerical Methods I Non-Square and Sparse Linear Systems Numerical Methods I Non-Square and Sparse Linear Systems Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 September 25th, 2014 A. Donev (Courant

More information

ON ORTHOGONAL REDUCTION TO HESSENBERG FORM WITH SMALL BANDWIDTH

ON ORTHOGONAL REDUCTION TO HESSENBERG FORM WITH SMALL BANDWIDTH ON ORTHOGONAL REDUCTION TO HESSENBERG FORM WITH SMALL BANDWIDTH V. FABER, J. LIESEN, AND P. TICHÝ Abstract. Numerous algorithms in numerical linear algebra are based on the reduction of a given matrix

More information

Automatica, 33(9): , September 1997.

Automatica, 33(9): , September 1997. A Parallel Algorithm for Principal nth Roots of Matrices C. K. Koc and M. _ Inceoglu Abstract An iterative algorithm for computing the principal nth root of a positive denite matrix is presented. The algorithm

More information

The Nearest Doubly Stochastic Matrix to a Real Matrix with the same First Moment

The Nearest Doubly Stochastic Matrix to a Real Matrix with the same First Moment he Nearest Doubly Stochastic Matrix to a Real Matrix with the same First Moment William Glunt 1, homas L. Hayden 2 and Robert Reams 2 1 Department of Mathematics and Computer Science, Austin Peay State

More information

Sparsity-Preserving Difference of Positive Semidefinite Matrix Representation of Indefinite Matrices

Sparsity-Preserving Difference of Positive Semidefinite Matrix Representation of Indefinite Matrices Sparsity-Preserving Difference of Positive Semidefinite Matrix Representation of Indefinite Matrices Jaehyun Park June 1 2016 Abstract We consider the problem of writing an arbitrary symmetric matrix as

More information

A New Block Algorithm for Full-Rank Solution of the Sylvester-observer Equation.

A New Block Algorithm for Full-Rank Solution of the Sylvester-observer Equation. 1 A New Block Algorithm for Full-Rank Solution of the Sylvester-observer Equation João Carvalho, DMPA, Universidade Federal do RS, Brasil Karabi Datta, Dep MSc, Northern Illinois University, DeKalb, IL

More information

Numerical Methods with MATLAB

Numerical Methods with MATLAB Numerical Methods with MATLAB A Resource for Scientists and Engineers G. J. BÖRSE Lehigh University PWS Publishing Company I(T)P AN!NTERNATIONAL THOMSON PUBLISHING COMPANY Boston Albany Bonn Cincinnati

More information

1 Singular Value Decomposition and Principal Component

1 Singular Value Decomposition and Principal Component Singular Value Decomposition and Principal Component Analysis In these lectures we discuss the SVD and the PCA, two of the most widely used tools in machine learning. Principal Component Analysis (PCA)

More information

Solution of Linear Equations

Solution of Linear Equations Solution of Linear Equations (Com S 477/577 Notes) Yan-Bin Jia Sep 7, 07 We have discussed general methods for solving arbitrary equations, and looked at the special class of polynomial equations A subclass

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences)

AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences) AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences) Lecture 1: Course Overview; Matrix Multiplication Xiangmin Jiao Stony Brook University Xiangmin Jiao Numerical

More information

M.A. Botchev. September 5, 2014

M.A. Botchev. September 5, 2014 Rome-Moscow school of Matrix Methods and Applied Linear Algebra 2014 A short introduction to Krylov subspaces for linear systems, matrix functions and inexact Newton methods. Plan and exercises. M.A. Botchev

More information

Applied Linear Algebra

Applied Linear Algebra Applied Linear Algebra Peter J. Olver School of Mathematics University of Minnesota Minneapolis, MN 55455 olver@math.umn.edu http://www.math.umn.edu/ olver Chehrzad Shakiban Department of Mathematics University

More information

2 Computing complex square roots of a real matrix

2 Computing complex square roots of a real matrix On computing complex square roots of real matrices Zhongyun Liu a,, Yulin Zhang b, Jorge Santos c and Rui Ralha b a School of Math., Changsha University of Science & Technology, Hunan, 410076, China b

More information

Applied Linear Algebra in Geoscience Using MATLAB

Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB Contents Getting Started Creating Arrays Mathematical Operations with Arrays Using Script Files and Managing Data Two-Dimensional Plots Programming in

More information

Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department

Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department Alex Barnett, Scott Pauls, Dan Rockmore August 12, 2011 We aim to touch upon many topics that a professional

More information

Outline Introduction: Problem Description Diculties Algebraic Structure: Algebraic Varieties Rank Decient Toeplitz Matrices Constructing Lower Rank St

Outline Introduction: Problem Description Diculties Algebraic Structure: Algebraic Varieties Rank Decient Toeplitz Matrices Constructing Lower Rank St Structured Lower Rank Approximation by Moody T. Chu (NCSU) joint with Robert E. Funderlic (NCSU) and Robert J. Plemmons (Wake Forest) March 5, 1998 Outline Introduction: Problem Description Diculties Algebraic

More information

S.F. Xu (Department of Mathematics, Peking University, Beijing)

S.F. Xu (Department of Mathematics, Peking University, Beijing) Journal of Computational Mathematics, Vol.14, No.1, 1996, 23 31. A SMALLEST SINGULAR VALUE METHOD FOR SOLVING INVERSE EIGENVALUE PROBLEMS 1) S.F. Xu (Department of Mathematics, Peking University, Beijing)

More information

EXISTENCE VERIFICATION FOR SINGULAR ZEROS OF REAL NONLINEAR SYSTEMS

EXISTENCE VERIFICATION FOR SINGULAR ZEROS OF REAL NONLINEAR SYSTEMS EXISTENCE VERIFICATION FOR SINGULAR ZEROS OF REAL NONLINEAR SYSTEMS JIANWEI DIAN AND R BAKER KEARFOTT Abstract Traditional computational fixed point theorems, such as the Kantorovich theorem (made rigorous

More information

Positive Denite Matrix. Ya Yan Lu 1. Department of Mathematics. City University of Hong Kong. Kowloon, Hong Kong. Abstract

Positive Denite Matrix. Ya Yan Lu 1. Department of Mathematics. City University of Hong Kong. Kowloon, Hong Kong. Abstract Computing the Logarithm of a Symmetric Positive Denite Matrix Ya Yan Lu Department of Mathematics City University of Hong Kong Kowloon, Hong Kong Abstract A numerical method for computing the logarithm

More information

CAAM 454/554: Stationary Iterative Methods

CAAM 454/554: Stationary Iterative Methods CAAM 454/554: Stationary Iterative Methods Yin Zhang (draft) CAAM, Rice University, Houston, TX 77005 2007, Revised 2010 Abstract Stationary iterative methods for solving systems of linear equations are

More information

THE PERTURBATION BOUND FOR THE SPECTRAL RADIUS OF A NON-NEGATIVE TENSOR

THE PERTURBATION BOUND FOR THE SPECTRAL RADIUS OF A NON-NEGATIVE TENSOR THE PERTURBATION BOUND FOR THE SPECTRAL RADIUS OF A NON-NEGATIVE TENSOR WEN LI AND MICHAEL K. NG Abstract. In this paper, we study the perturbation bound for the spectral radius of an m th - order n-dimensional

More information

The Kalman filter is arguably one of the most notable algorithms

The Kalman filter is arguably one of the most notable algorithms LECTURE E NOTES «Kalman Filtering with Newton s Method JEFFREY HUMPHERYS and JEREMY WEST The Kalman filter is arguably one of the most notable algorithms of the 0th century [1]. In this article, we derive

More information

Interval solutions for interval algebraic equations

Interval solutions for interval algebraic equations Mathematics and Computers in Simulation 66 (2004) 207 217 Interval solutions for interval algebraic equations B.T. Polyak, S.A. Nazin Institute of Control Sciences, Russian Academy of Sciences, 65 Profsoyuznaya

More information

Solving the Polynomial Eigenvalue Problem by Linearization

Solving the Polynomial Eigenvalue Problem by Linearization Solving the Polynomial Eigenvalue Problem by Linearization Nick Higham School of Mathematics The University of Manchester higham@ma.man.ac.uk http://www.ma.man.ac.uk/~higham/ Joint work with Ren-Cang Li,

More information

On a quadratic matrix equation associated with an M-matrix

On a quadratic matrix equation associated with an M-matrix Article Submitted to IMA Journal of Numerical Analysis On a quadratic matrix equation associated with an M-matrix Chun-Hua Guo Department of Mathematics and Statistics, University of Regina, Regina, SK

More information

NUMERICAL MATHEMATICS AND COMPUTING

NUMERICAL MATHEMATICS AND COMPUTING NUMERICAL MATHEMATICS AND COMPUTING Fourth Edition Ward Cheney David Kincaid The University of Texas at Austin 9 Brooks/Cole Publishing Company I(T)P An International Thomson Publishing Company Pacific

More information

Eigenvalue Problems and Singular Value Decomposition

Eigenvalue Problems and Singular Value Decomposition Eigenvalue Problems and Singular Value Decomposition Sanzheng Qiao Department of Computing and Software McMaster University August, 2012 Outline 1 Eigenvalue Problems 2 Singular Value Decomposition 3 Software

More information

The Scaling and Squaring Method for the Matrix Exponential Revisited. Nicholas J. Higham

The Scaling and Squaring Method for the Matrix Exponential Revisited. Nicholas J. Higham The Scaling and Squaring Method for the Matrix Exponential Revisited Nicholas J. Higham 2005 MIMS EPrint: 2006.394 Manchester Institute for Mathematical Sciences School of Mathematics The University of

More information

Let x be an approximate solution for Ax = b, e.g., obtained by Gaussian elimination. Let x denote the exact solution. Call. r := b A x.

Let x be an approximate solution for Ax = b, e.g., obtained by Gaussian elimination. Let x denote the exact solution. Call. r := b A x. ESTIMATION OF ERROR Let x be an approximate solution for Ax = b, e.g., obtained by Gaussian elimination. Let x denote the exact solution. Call the residual for x. Then r := b A x r = b A x = Ax A x = A

More information

Mathematical Optimisation, Chpt 2: Linear Equations and inequalities

Mathematical Optimisation, Chpt 2: Linear Equations and inequalities Mathematical Optimisation, Chpt 2: Linear Equations and inequalities Peter J.C. Dickinson p.j.c.dickinson@utwente.nl http://dickinson.website version: 12/02/18 Monday 5th February 2018 Peter J.C. Dickinson

More information

A Backward Stable Hyperbolic QR Factorization Method for Solving Indefinite Least Squares Problem

A Backward Stable Hyperbolic QR Factorization Method for Solving Indefinite Least Squares Problem A Backward Stable Hyperbolic QR Factorization Method for Solving Indefinite Least Suares Problem Hongguo Xu Dedicated to Professor Erxiong Jiang on the occasion of his 7th birthday. Abstract We present

More information

The Role of Matrix Functions

The Role of Matrix Functions The Role of Matrix Functions Edvin Hopkins, Numerical Algorithms Group November 2018 1 Introduction In this report we ll be discussing functions of matrices. What are they, and why might they be of interest

More information

Two hours. To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER. 29 May :45 11:45

Two hours. To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER. 29 May :45 11:45 Two hours MATH20602 To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER NUMERICAL ANALYSIS 1 29 May 2015 9:45 11:45 Answer THREE of the FOUR questions. If more

More information

Linear Algebra Massoud Malek

Linear Algebra Massoud Malek CSUEB Linear Algebra Massoud Malek Inner Product and Normed Space In all that follows, the n n identity matrix is denoted by I n, the n n zero matrix by Z n, and the zero vector by θ n An inner product

More information