1/15 Fun Matrix Facts and Tricks Ben G. Fitzpatrick Department of Mathematics Loyola Marymount University One LMU Drive.

Slides:



Advertisements
Similar presentations
Eigenvalues and Eigenvectors
Advertisements

Eigenvalues and Eigenvectors
Lecture 6 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
Solving systems using matrices
Here is a preview of one type of problem we are going to solve using matrices. Solve this system of equations:
資訊科學數學11 : Linear Equation and Matrices
CE 311 K - Introduction to Computer Methods Daene C. McKinney
Section 8.1 – Systems of Linear Equations
1 Chapter 2 Matrices Matrices provide an orderly way of arranging values or functions to enhance the analysis of systems in a systematic manner. Their.
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Dominant Eigenvalues & The Power Method
Using Inverse Matrices Solving Systems. You can use the inverse of the coefficient matrix to find the solution. 3x + 2y = 7 4x - 5y = 11 Solve the system.
Eigen Values Andras Zakupszki Nuttapon Pichetpongsa Inderjeet Singh Surat Wanamkang.
COMP 116: Introduction to Scientific Programming Lecture 7: Matrices and Linear Systems.
ECON 1150 Matrix Operations Special Matrices
Chapter 3: Linear Algebra I. Solving sets of linear equations ex: solve for x, y, z. 3x + 5y + 2z = -4 2x + 9z = 12 4y + 2z = 3 (can solve longhand) (can.
Linear Algebra/Eigenvalues and eigenvectors. One mathematical tool, which has applications not only for Linear Algebra but for differential equations,
Copyright © 2011 Pearson, Inc. 7.3 Multivariate Linear Systems and Row Operations.
Section 1.1 Introduction to Systems of Linear Equations.
1.1.2 INTRODUCTION TO SYSTEMS OF LINEAR EQUATIONS Chapter 1: Systems of Linear Equations and Matrices SWBAT: Redefine algebraic operations as Elementary.
Systems of Linear Equations Let’s say you need to solve the following for x, y, & z: 2x + y – 2z = 10 3x + 2y + 2z = 1 5x + 4y + 3z = 4 Two methods –Gaussian.
Review of Matrices Or A Fast Introduction.
4.4 & 4.5 Notes Remember: Identity Matrices: If the product of two matrices equal the identity matrix then they are inverses.
Eigenvalues and Eigenvectors
Lecture 28: Mathematical Insight and Engineering.
Domain Range definition: T is a linear transformation, EIGENVECTOR EIGENVALUE.
Linear algebra: matrix Eigen-value Problems Eng. Hassan S. Migdadi Part 1.
Professor Walter W. Olson Department of Mechanical, Industrial and Manufacturing Engineering University of Toledo System Solutions y(t) t +++++… 11 22.
Homogeneous Linear Systems with Constant Coefficients Solutions of Systems of ODEs.
Solving Linear Systems Solving linear systems Ax = b is one part of numerical linear algebra, and involves manipulating the rows of a matrix. Solving linear.
Eigenvalues The eigenvalue problem is to determine the nontrivial solutions of the equation Ax= x where A is an n-by-n matrix, x is a length n column.
Copyright © 2011 Pearson Education, Inc. Solving Linear Systems Using Matrices Section 6.1 Matrices and Determinants.
Sullivan Algebra and Trigonometry: Section 12.3 Objectives of this Section Write the Augmented Matrix of a System of Linear Equations Write the System.
Solve a system of linear equations By reducing a matrix Pamela Leutwyler.
Section 4Chapter 4. 1 Copyright © 2012, 2008, 2004 Pearson Education, Inc. Objectives Solving Systems of Linear Equations by Matrix Methods Define.
Linear Algebra Diyako Ghaderyan 1 Contents:  Linear Equations in Linear Algebra  Matrix Algebra  Determinants  Vector Spaces  Eigenvalues.
8.2 Operations With Matrices
L 7: Linear Systems and Metabolic Networks. Linear Equations Form System.
1 CHEM-E7130 Process Modeling Exercise Matrices. 2 Matrices in case math basic course learnings have been lost... Matrices are ”table of numbers” with.
Warm- Up Solve the following systems using elimination or substitution : 1. x + y = 6 -3x + y = x + 4y = 7 x + 2y = 7.
Arab Open University Faculty of Computer Studies M132: Linear Algebra
Linear Algebra Diyako Ghaderyan 1 Contents:  Linear Equations in Linear Algebra  Matrix Algebra  Determinants  Vector Spaces  Eigenvalues.
Section 1.7 Linear Independence and Nonsingular Matrices
Notes Over 4.4 Finding the Inverse of 2 x 2 Matrix.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Math 1320 Chapter 3: Systems of Linear Equations and Matrices 3.2 Using Matrices to Solve Systems of Equations.
5 5.1 © 2016 Pearson Education, Ltd. Eigenvalues and Eigenvectors EIGENVECTORS AND EIGENVALUES.
Solving 2 step equations. Two step equations have addition or subtraction and multiply or divide 3x + 1 = 10 3x + 1 = 10 4y + 2 = 10 4y + 2 = 10 2b +
Chapter 5: Matrices and Determinants Section 5.5: Augmented Matrix Solutions.
Review of Eigenvectors and Eigenvalues from CliffsNotes Online mining-the-Eigenvectors-of-a- Matrix.topicArticleId-20807,articleId-
College Algebra Chapter 6 Matrices and Determinants and Applications
Use Inverse Matrices to Solve Linear Systems
ECE 1304 Introduction to Electrical and Computer Engineering
Warm-up Problem Use the Laplace transform to solve the IVP.
The Inverse of a Square Matrix
Eigenvalues and Eigenvectors
Lecture 11 Matrices and Linear Algebra with MATLAB
Unit 3: Matrices
( ) ( ) ( ) ( ) Matrices Order of matrices
8.1 Matrices and System of Linear Equations
Eigenvalues and Eigenvectors
ARRAY DIVISION Identity matrix Islamic University of Gaza
3.6 Multiply Matrices.
Sec 3.5 Inverses of Matrices
1.8 Matrices.
Lecture 7 System of Linear Differential Equations fall semester
Eigenvalues and Eigenvectors
1.8 Matrices.
Eigenvalues and Eigenvectors
Multiply by 5/40 and sum with 2nd row
Presentation transcript:

1/15 Fun Matrix Facts and Tricks Ben G. Fitzpatrick Department of Mathematics Loyola Marymount University One LMU Drive Los Angeles, CA 90045

2/15 Matrix equations System of equations Matrix form Solve by inversion

3/15 Matlab matrix equations A=[1,1 ; 2,3]; –Comma continues row, semicolon goes to next row b=[10;13]; –Again, semicolon goes to next row, making b a column vector x=inv(A)*b; –Computes the inverse of A and multiplies it to b. x=A\b; –Also works, sort of like “dividing by A” without computing “one over A”

4/15 Matrix equations, cont’d System of equations Matrix form Solve by inversion –No solution –TRY IT IN MATLAB??!?!?!

5/15 Matrix equations, theory A square matrix has an inverse If and only if All the columns are linearly independent If and only if The only solution of If and only if

6/15 Determinants If Like Wronskian!!!

7/15 Determinants Let Define Then

8/15 Determinant example

9/15 Why are we doing this? To help with In fact, you can do the taylor series:

10/15 Eigenvalues If there is a number and a non-zero vector so that Then is called an eigenvalue of A and is called an eigenvector Note that

11/15 Eigenvalues

12/15 Eigenvectors

13/15 Eigenvectors

14/15 A factorization of matrices

16/15 Let’s Use MATLAB Try your matrix… look at the frequencies of vibration! A=[-9,-11;-11,-9] [X,L] = eig(A) Xi = inv(X) Lcheck=Xi*A*X

17/15 Two methods for exponential of matrix Taylor’ series: Eigenvalues and eigenvectors

18/15 From the book Section 3.1: matrix-vector basics –Know how to add, multiply matrices –Know how to set up matrix versions of systems –Know how to convert higher-order differential equations to systems of first order ones. Section 3.8: eigenvectors and eigenvalues –What they are –Use determinants to find them –Connection to matrix exponential