ARRAY DIVISION Identity matrix Islamic University of Gaza

Slides:



Advertisements
Similar presentations
Identity and Inverse Matrices
Advertisements

4.5 Inverses of Matrices.
4/26/ LU Decomposition Civil Engineering Majors Authors: Autar Kaw Transforming.
Inverses of n x n Matrices. The Inverse Matrix If A is an n x n matrix, the inverse of A (call it A -1 ) is the matrix such that A * A -1 is equal to.
Lecture 6 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 10 LU Decomposition and Matrix.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
Using Matrices to Solve a 3-Variable System
EXAMPLE 2 Solve a matrix equation SOLUTION Begin by finding the inverse of A = Solve the matrix equation AX = B for the 2 × 2 matrix X. 2 –7 –1.
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.
4.5 Solving Systems using Matrix Equations and Inverses.
Copyright © 2009 Pearson Education, Inc. CHAPTER 9: Systems of Equations and Matrices 9.1 Systems of Equations in Two Variables 9.2 Systems of Equations.
The inverse of a Square Matrix 2.1 Day 1 (Out of Pre-Calc book 8.3) We are reloading for another chapter.
Lecture 28: Mathematical Insight and Engineering.
4.7 Identity and Inverse Matrices and Solving Systems of Equations Objectives: 1.Determine whether two matrices are inverses. 2.Find the inverse of a 2x2.
Unit 3: Matrices.
13.6 MATRIX SOLUTION OF A LINEAR SYSTEM.  Examine the matrix equation below.  How would you solve for X?  In order to solve this type of equation,
Objectives  Find the inverse of a matrix  Find matrix inverses with technology  Solve matrix equations  Solve matrix equations with technology Inverse.
Warm-Up 3) Find the determinant by hand. 4) Find the determinant using your calculator. 1) Multiply. Show work. 2) Multiply. Show work.
Inverse and Identity Matrices Can only be used for square matrices. (2x2, 3x3, etc.)
CW Matrix Division We have seen that for 2x2 (“two by two”) matrices A and B then AB  BA To divide matrices we need to define what we mean by division!
1 Faculty of Applied Engineering and Urban Planning Civil Engineering Department ECGD3110 Numerical Analysis Lecture 11 1 st Semester 2009/2010 UoP Copyrights.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
1 ECE 1304 Introduction to Electrical and Computer Engineering Section 1.7 Linear Algebra with MATLAB.
Engineering H192 - Computer Programming The Ohio State University Gateway Engineering Education Coalition Lect 22P. 1Winter Quarter MATLAB: Simultaneous.
4.8 Using matrices to solve systems! 2 variable systems – by hand 3 or more variables – using calculator!
GUIDED PRACTICE for Example – – 2 12 – 4 – 6 A = Use a graphing calculator to find the inverse of the matrix A. Check the result by showing.
2.5 Determinants and Multiplicative Inverses of Matrices. Objectives: 1.Evaluate determinants. 2.Find the inverses of matrices. 3.Solve systems of equations.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Use Inverse Matrices to Solve Linear Systems Objectives 1.To find the inverse of a square matrix 2.To solve a matrix equation using inverses 3.To solve.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Numerical Methods.  LU Decomposition is another method to solve a set of simultaneous linear equations  For most non-singular matrix [A] that one could.
Using Matrices to Solve a 3-Variable System
Use Inverse Matrices to Solve Linear Systems
EEE 244-3: MATRICES AND EQUATION SOLVING
Solving Linear Systems Syed Nasrullah
1.3 ARITHMETIC OPERATIONS WITH SCALARS
The Inverse of a Square Matrix
Inverse of a Square Matrix
Matrix Operations SpringSemester 2017.
Warm-Up BC 3. |A|.
A computer program is a sequence of computer commands.
7.3 Matrices.
الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . 1 جمع المصفوفات وطرحها.
Use Inverse Matrices to Solve Linear Systems
Lecture 11 Matrices and Linear Algebra with MATLAB
Unit 3: Matrices
Inverse & Identity MATRICES Last Updated: October 12, 2005.
Chapter2 Creating Arrays
Matrix Solutions to Linear Systems
Numerical Computation and Optimization
Equations – Success if you can do these
Conditional Statements
Section 9.5 Inverses of Matrices
Islamic University of Gaza
Islamic University of Gaza
Using Script Files and Managing Data
Bellwork 1) Multiply. 3) Find the determinant. 2) Multiply.
Major: All Engineering Majors Authors: Autar Kaw
EEE 244-3: MATRICES AND EQUATION SOLVING
Histograms are plots that show the distribution of data.
Chapter 4 Systems of Linear Equations; Matrices
USING ARRAYS IN MATLAB BUILT-IN MATH FUNCTIONS
1.8 Matrices.
1.11 Use Inverse Matrices to Solve Linear Systems
Matrix Operations SpringSemester 2017.
Equations – Success if you can do these
1.8 Matrices.
Check even answers p.76: Hint: One of the problems on p.76 has
Solving Linear Systems of Equations - Inverse Matrix
Presentation transcript:

ARRAY DIVISION Identity matrix Islamic University of Gaza Faculty of Engineering Civil Engineering Department ARRAY DIVISION Identity matrix Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

The matrix B is the inverse of the matrix A if, when the two Islamic University of Gaza Faculty of Engineering Civil Engineering Department Inverse of a matrix: The matrix B is the inverse of the matrix A if, when the two matrices are multiplied, the product is the identity matrix. Both matrices must be square. Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Determinants: Islamic University of Gaza Faculty of Engineering Civil Engineering Department Determinants: Computer Programming Lecture 7

Array division: Left division, \ : Islamic University of Gaza Faculty of Engineering Civil Engineering Department Array division: MATLAB has two types of array division, right division and left division Left division, \ : Left division is used to solve the matrix equation AX = B. The solution X is obtained numerically using a method that is based on Gauss elimination Computer Programming Lecture 7

The right division is used to solve the matrix equation XC = D. Islamic University of Gaza Faculty of Engineering Civil Engineering Department Right division, I : The right division is used to solve the matrix equation XC = D. Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

ELEMENT-BY-ELEMENT OPERATIONS Islamic University of Gaza Faculty of Engineering Civil Engineering Department ELEMENT-BY-ELEMENT OPERATIONS Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7

Islamic University of Gaza Faculty of Engineering Civil Engineering Department Computer Programming Lecture 7