Linear Algebra Review

Similar documents
Matrix decompositions

Applied Linear Algebra in Geoscience Using MATLAB

FINITE-DIMENSIONAL LINEAR ALGEBRA

Math 102, Winter Final Exam Review. Chapter 1. Matrices and Gaussian Elimination

Course Information Course Overview Study Skills Background Material. Introduction. CS 205A: Mathematical Methods for Robotics, Vision, and Graphics

Chapter 7: Symmetric Matrices and Quadratic Forms

Announce Statistical Motivation Properties Spectral Theorem Other ODE Theory Spectral Embedding. Eigenproblems I

Announce Statistical Motivation ODE Theory Spectral Embedding Properties Spectral Theorem Other. Eigenproblems I

33AH, WINTER 2018: STUDY GUIDE FOR FINAL EXAM

Conceptual Questions for Review

Final Exam, Linear Algebra, Fall, 2003, W. Stephen Wilson

Today s class. Linear Algebraic Equations LU Decomposition. Numerical Methods, Fall 2011 Lecture 8. Prof. Jinbo Bi CSE, UConn

Linear Algebra, part 3 QR and SVD

LINEAR ALGEBRA KNOWLEDGE SURVEY

LINEAR ALGEBRA: NUMERICAL METHODS. Version: August 12,

Eigenproblems II: Computation

Cheat Sheet for MATH461

Linear Algebra Primer

Linear Algebra, part 3. Going back to least squares. Mathematical Models, Analysis and Simulation = 0. a T 1 e. a T n e. Anna-Karin Tornberg

Conjugate Gradients I: Setup

Linear Systems and LU

Review problems for MA 54, Fall 2004.

I. Multiple Choice Questions (Answer any eight)

LINEAR ALGEBRA 1, 2012-I PARTIAL EXAM 3 SOLUTIONS TO PRACTICE PROBLEMS

7. Symmetric Matrices and Quadratic Forms

1 9/5 Matrices, vectors, and their applications

lecture 2 and 3: algorithms for linear algebra

Singular Value Decomposition

A Review of Linear Algebra

Main matrix factorizations

lecture 3 and 4: algorithms for linear algebra

AMS526: Numerical Analysis I (Numerical Linear Algebra)

Numerical Methods in Matrix Computations

ANSWERS. E k E 2 E 1 A = B

MIDTERM. b) [2 points] Compute the LU Decomposition A = LU or explain why one does not exist.

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

TBP MATH33A Review Sheet. November 24, 2018

Norms, Sensitivity and Conditioning

Math 21b. Review for Final Exam

Linear Least squares

This can be accomplished by left matrix multiplication as follows: I

homogeneous 71 hyperplane 10 hyperplane 34 hyperplane 69 identity map 171 identity map 186 identity map 206 identity matrix 110 identity matrix 45

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB

AM205: Assignment 2. i=1

Computational Methods. Eigenvalues and Singular Values

Computational Linear Algebra

Index. book 2009/5/27 page 121. (Page numbers set in bold type indicate the definition of an entry.)

MA 265 FINAL EXAM Fall 2012

Notes on Eigenvalues, Singular Values and QR

Solution of Linear Equations

Columbus State Community College Mathematics Department Public Syllabus

SUMMARY OF MATH 1600

MATH 581D FINAL EXAM Autumn December 12, 2016

There are six more problems on the next two pages

Applied Linear Algebra in Geoscience Using MATLAB

Ordinary Differential Equations I

Linear Algebra Section 2.6 : LU Decomposition Section 2.7 : Permutations and transposes Wednesday, February 13th Math 301 Week #4

Announcements Monday, November 13

UNIT 6: The singular value decomposition.

Positive Definite Matrix

Linear Algebra & Geometry why is linear algebra useful in computer vision?

Practice problems for Exam 3 A =

MAT188H1S LINEAR ALGEBRA: Course Information as of February 2, Calendar Description:

Math 520 Exam 2 Topic Outline Sections 1 3 (Xiao/Dumas/Liaw) Spring 2008

Chapter 3 Transformations

Numerical Linear Algebra

EXAM. Exam 1. Math 5316, Fall December 2, 2012

Statistical Geometry Processing Winter Semester 2011/2012

AM 205: lecture 8. Last time: Cholesky factorization, QR factorization Today: how to compute the QR factorization, the Singular Value Decomposition

Maths for Signals and Systems Linear Algebra in Engineering

University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam June 8, 2012

PRACTICE FINAL EXAM. why. If they are dependent, exhibit a linear dependence relation among them.

Numerical Methods - Numerical Linear Algebra

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

MAC Module 12 Eigenvalues and Eigenvectors. Learning Objectives. Upon completing this module, you should be able to:

Mobile Robotics 1. A Compact Course on Linear Algebra. Giorgio Grisetti

MAC Module 12 Eigenvalues and Eigenvectors

REVIEW FOR EXAM III SIMILARITY AND DIAGONALIZATION

course overview 18.06: Linear Algebra

MATH 1553, Intro to Linear Algebra FINAL EXAM STUDY GUIDE

MATH 1120 (LINEAR ALGEBRA 1), FINAL EXAM FALL 2011 SOLUTIONS TO PRACTICE VERSION

forms Christopher Engström November 14, 2014 MAA704: Matrix factorization and canonical forms Matrix properties Matrix factorization Canonical forms

Linear Systems and LU

Matrix decompositions

Principal Component Analysis

MATHEMATICS FOR COMPUTER VISION WEEK 2 LINEAR SYSTEMS. Dr Fabio Cuzzolin MSc in Computer Vision Oxford Brookes University Year

5.) For each of the given sets of vectors, determine whether or not the set spans R 3. Give reasons for your answers.

YORK UNIVERSITY. Faculty of Science Department of Mathematics and Statistics MATH M Test #2 Solutions

Index. for generalized eigenvalue problem, butterfly form, 211

Linear Algebra Review Part I: Geometry

Bindel, Fall 2016 Matrix Computations (CS 6210) Notes for

9. Numerical linear algebra background

Some notes on Linear Algebra. Mark Schmidt September 10, 2009

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

LEC 2: Principal Component Analysis (PCA) A First Dimensionality Reduction Approach

ANSWERS (5 points) Let A be a 2 2 matrix such that A =. Compute A. 2

FINAL EXAM Ma (Eakin) Fall 2015 December 16, 2015

Numerical Methods. Elena loli Piccolomini. Civil Engeneering. piccolom. Metodi Numerici M p. 1/??

Numerical Linear Algebra

Linear Algebra Linear Algebra : Matrix decompositions Monday, February 11th Math 365 Week #4

Transcription:

Linear Algebra Review CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Doug James (and Justin Solomon) CS 205A: Mathematical Methods Linear Algebra Review 1 / 16

Midterm Exam Tuesday Feb 13, in class Covers linalg (up to and incl SVD). Closed book exam. Can use 1 page of notes (two-sided, human readable) No calculators or computers allowed (or needed) SCPD: Arrange proctor for exam at similar time. Previous midterm exams on website (similar material) Simple HW this week short question. CS 205A: Mathematical Methods Linear Algebra Review 2 / 16

What Have We Done? A x = b CS 205A: Mathematical Methods Linear Algebra Review 3 / 16

Gaussian Elimination Codifies the typical approach taken on paper Phases: Forward substitution, back substitution (pivoting) Elimination matrices: Notational convenience, algorithmically slow! CS 205A: Mathematical Methods Linear Algebra Review 4 / 16

LU Factorization O(n 3 ) time to compute Allows for solving linear systems via forward/backward substitution (O(n 2 ) time) Might not exist need pivots (e.g. LUP) CS 205A: Mathematical Methods Linear Algebra Review 5 / 16

Cholesky Factorization: LL For symmetric, positive definite matrices CS 205A: Mathematical Methods Linear Algebra Review 6 / 16

QR Factorization R is upper triangular Q has orthonormal columns Many algorithms: Gram-Schmidt, Householder, Givens Least-squares w/o squaring condition # CS 205A: Mathematical Methods Linear Algebra Review 7 / 16

Diagonalizability: D = X 1 AX Diagonalizable iff there is a full eigenspace Spectral theorem: symmetric/hermitian = full, orthogonal eigenbasis Computation: Variations of power method Note: AX = XD (usually AX DX!!) CS 205A: Mathematical Methods Linear Algebra Review 8 / 16

Singular Value Decomposition A = UΣV CS 205A: Mathematical Methods Linear Algebra Review 9 / 16

Variational Approach Define energy measuring something desirable and minimize it. CS 205A: Mathematical Methods Linear Algebra Review 10 / 16

Variational Approach Define energy measuring something desirable and minimize it. E( x) = A x b 2 2 CS 205A: Mathematical Methods Linear Algebra Review 10 / 16

Variational Approach Define energy measuring something desirable and minimize it. E( x) = A x b 2 2 Lagrange multipliers! CS 205A: Mathematical Methods Linear Algebra Review 10 / 16

Regularization Improves conditioning of ill-posed problems E.g., Tikhonov regularization. E( x) = A x b 2 2 + α x 2 2 Multiple formulations. Connection to truncated SVD. CS 205A: Mathematical Methods Linear Algebra Review 11 / 16

Look for Special Structure Symmetric Positive definite Sparse Normal equations Square Full rank Block Triangular CS 205A: Mathematical Methods Linear Algebra Review 12 / 16

Reduce to Known Algorithm Show that a specific problem is equivalent to: Least squares (curve fitting) Eigenvectors (ODEs, embedding) Factorization (metric learning) SVD (principal components analysis) CS 205A: Mathematical Methods Linear Algebra Review 13 / 16

Stability and Conditioning Complement algorithmic analysis with understanding quality of output CS 205A: Mathematical Methods Linear Algebra Review 14 / 16

Julia Not on written midterm, but useful for study. CS 205A: Mathematical Methods Linear Algebra Review 15 / 16

Advice Draw matrix pictures. CS 205A: Mathematical Methods Linear Algebra Review 16 / 16

Advice Draw matrix pictures. Experiment. CS 205A: Mathematical Methods Linear Algebra Review 16 / 16

Advice Draw matrix pictures. Experiment. Ask for help. CS 205A: Mathematical Methods Linear Algebra Review 16 / 16 Next