MATH 685/ CSI 700/ OR 682 Lecture Notes Lecture 2. Linear systems.

Slides:



Advertisements
Similar presentations
How to find intersection of lines? Snehal Poojary.
Advertisements

Systems of Linear Equations (see Appendix A.6, Trucco & Verri) CS485/685 Computer Vision Prof. George Bebis.
Lecture 7 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
Lecture 9: Introduction to Matrix Inversion Gaussian Elimination Sections 2.4, 2.5, 2.6 Sections 2.2.3, 2.3.
Dan Witzner Hansen  Groups?  Improvements – what is missing?
Lecture 4 The Gauß scheme A linear system of equations Matrix algebra deals essentially with linear linear systems. Multiplicative elements. A non-linear.
Lecture 6 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
Ch 7.3: Systems of Linear Equations, Linear Independence, Eigenvalues
Lecture 3 Hyper-planes, Matrices, and Linear Systems
Lecture 7 Hyper-planes, Matrices, and Linear Systems Shang-Hua Teng.
Vector Norms CSE 541 Roger Crawfis.
Linear Systems The definition of a linear equation given in Chapter 1 can be extended to more variables; any equation of the form for real numbers.
Solving System of Equations Using Graphing
Linear Functions.
5  Systems of Linear Equations: ✦ An Introduction ✦ Unique Solutions ✦ Underdetermined and Overdetermined Systems  Matrices  Multiplication of Matrices.
5.3 Systems of Linear Equations in Three Variables
Systems of Equations and Inequalities
Professor Dr. S. K. Bhattacharjee Department of Statistics
Boyce/DiPrima 9th ed, Ch 7.3: Systems of Linear Equations, Linear Independence, Eigenvalues Elementary Differential Equations and Boundary Value Problems,
Chapter 1 – Linear Equations
Introduction to MATLAB for Engineers, Third Edition William J. Palm III Chapter 8 Linear Algebraic Equations PowerPoint to accompany Copyright © 2010.
 Row and Reduced Row Echelon  Elementary Matrices.
Systems of Linear Equation and Matrices
Chapter 2 Simultaneous Linear Equations (cont.)
CPSC 491 Xin Liu Nov 17, Introduction Xin Liu PhD student of Dr. Rokne Contact Slides downloadable at pages.cpsc.ucalgary.ca/~liuxin.
Multivariate Statistics Matrix Algebra II W. M. van der Veld University of Amsterdam.
Solving Systems of Linear Equations in Two Variables
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Introduction to MATLAB 7 for Engineers William J. Palm.
Sec 3.5 Inverses of Matrices Where A is nxn Finding the inverse of A: Seq or row operations.
1. Inverse of A 2. Inverse of a 2x2 Matrix 3. Matrix With No Inverse 4. Solving a Matrix Equation 1.
ENE MATHLAB ® Lecture 3: Matrix Review. Determinant  To use MATLAB to compute determinants:  Enter the determinant as an array.  Use ‘det’ command.
Solving Linear Systems of Equations
5.5 Row Space, Column Space, and Nullspace
OR Backgrounds-Convexity  Def: line segment joining two points is the collection of points.
Chap. 4 Vector Spaces 4.1 Vectors in Rn 4.2 Vector Spaces
AccPeCalc Matrices review Definition of an Inverse Given a n x n matrix A, if there exists an inverse (A -1 ) of matrix A then A A -1 = A -1 A =
Review of Linear Algebra Optimization 1/16/08 Recitation Joseph Bradley.
1.3 Solutions of Linear Systems
4.7 Solving Systems using Matrix Equations and Inverses
Matrices and Matrix Operations. Matrices An m×n matrix A is a rectangular array of mn real numbers arranged in m horizontal rows and n vertical columns.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Warm Up Determine whether each system has zero, one or infinitely many solutions one infinitely many zero 3x + y = 15 3x – 2y = 6 x + 2y = 18.
1.1 The row picture of a linear system with 3 variables.
Section 2.1 Determinants by Cofactor Expansion. THE DETERMINANT Recall from algebra, that the function f (x) = x 2 is a function from the real numbers.
4.1 Graphing Systems. Goals  SWBAT graph a system of linear equations and find the solution to the system.
Chapter 5 Chapter Content 1. Real Vector Spaces 2. Subspaces 3. Linear Independence 4. Basis and Dimension 5. Row Space, Column Space, and Nullspace 6.
T4.4 – Linear Systems & Matrices
Matrices, Vectors, Determinants.
Systems of Linear Equations: An Introduction Unique Solutions Underdetermined and Overdetermined Systems Multiplication of Matrices The Inverse of a Square.
EE611 Deterministic Systems Vector Spaces and Basis Changes Kevin D. Donohue Electrical and Computer Engineering University of Kentucky.
REVIEW Linear Combinations Given vectors and given scalars
College Algebra Chapter 6 Matrices and Determinants and Applications
ISHIK UNIVERSITY FACULTY OF EDUCATION Mathematics Education Department
College Algebra Chapter 6 Matrices and Determinants and Applications
5 Systems of Linear Equations and Matrices
Movable lines class activity.
Determinants Section The focus before was to determine information about the solution set of the linear system of equations given as the matrix equation.
Systems of Linear Equations
LESSON 84 – INTERSECTION OF 3 PLANES
Systems of Equations Solving by Graphing.
1.1 Introduction to Systems of Equations.
Boyce/DiPrima 10th ed, Ch 7.3: Systems of Linear Equations, Linear Independence, Eigenvalues Elementary Differential Equations and Boundary Value Problems,
1.3 Vector Equations.
Simultaneous Equations
Linear Algebra Lecture 3.
Systems of Equations Solving by Graphing.
6 Systems of Linear Equations and Matrices
Linear Algebra Lecture 6.
Sec 3.5 Inverses of Matrices
Chapter 2 Determinants.
Presentation transcript:

MATH 685/ CSI 700/ OR 682 Lecture Notes Lecture 2. Linear systems

Systems of linear equations Given m × n matrix A and m-vector b, find unknown n-vector x satisfying Ax = b System of equations asks “Can b be expressed as linear combination of columns of A?” If so, coefficients of linear combination are given by components of solution vector x Solution may or may not exist, and may or may not be unique For now, we consider only square case, m = n

Systems of linear equations n × n matrix A is nonsingular if it has any of following equivalent properties 1. Inverse of A, denoted by A −1, exists 2. det(A) ≠ 0 3. rank(A) = n 4. For any vector z ≠ 0, Az ≠ 0

Existence and uniqueness Existence and uniqueness of solution to Ax = b depend on whether A is singular or nonsingular Can also depend on b, but only in singular case If b belongs to span(A), system is consistent A b # solutions nonsingular arbitrary one (unique) singular b in span(A) infinitely many singular b not in span(A) none

Geometric interpretation In two dimensions, each equation determines straight line in plane Solution is intersection point of two lines If two straight lines are not parallel (nonsingular), then intersection point is unique If two straight lines are parallel (singular), then lines either do not intersect (no solution) or else coincide (any point along line is solution) In higher dimensions, each equation determines hyperplane; if matrix is nonsingular, intersection of hyperplanes is unique solution

Example: nonsingular system 2 × 2 system 2x 1 + 3x 2 = b 1 5x 1 + 4x 2 = b 2 or in matrix-vector notation is nonsingular regardless of value of b For example, if b = [8 13] T, then x = [1 2] T is the unique solution

Example: singular system 2 × 2 system is singular regardless of value of b With b = [4 7] T, there is no solution With b = [4 8] T, x = [µ (4 − 2 µ)/3] T is solution for any real number, so there are infinitely many solutions

Vector norms

Vector norms: example

Vector norms: properties

Matrix norm Norm of matrix measures maximum stretching matrix does to any vector in given vector norm

Matrix norm properties

Condition number

Condition number properties

Computing condition number

Condition number

Error bounds

Residual