Examples of linear transformation matrices Some special cases of linear transformations of two-dimensional space R 2 are illuminating:dimensional Dimoffree.svgDimoffree.svg‎

Slides:



Advertisements
Similar presentations
1.7 Diagonal, Triangular, and Symmetric Matrices.
Advertisements

MATRIX ALGEBRA MGT 4850 Spring 2009 University of Lethbridge.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
MOHAMMAD IMRAN DEPARTMENT OF APPLIED SCIENCES JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES.
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
Finding the Inverse of a Matrix
Lecture 7: Matrix-Vector Product; Matrix of a Linear Transformation; Matrix-Matrix Product Sections 2.1, 2.2.1,
Intro to Matrices Don’t be scared….
Copyright © Cengage Learning. All rights reserved. 7.6 The Inverse of a Square Matrix.
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.
1.7 Diagonal, Triangular, and Symmetric Matrices 1.
Linear Algebra & Matrices MfD 2004 María Asunción Fernández Seara January 21 st, 2004 “The beginnings of matrices and determinants.
259 Lecture 14 Elementary Matrix Theory. 2 Matrix Definition  A matrix is a rectangular array of elements (usually numbers) written in rows and columns.
Chapter 10 Review: Matrix Algebra
Compiled By Raj G. Tiwari
ECON 1150 Matrix Operations Special Matrices
Matrices. Given below is a record of all the types of books kept in a class library. TypeFictionGeneral Malay2547 Chinese4072 English8085.
Multivariate Statistics Matrix Algebra II W. M. van der Veld University of Amsterdam.
CMPS 1371 Introduction to Computing for Engineers MATRICES.
Matrices. A matrix, A, is a rectangular collection of numbers. A matrix with “m” rows and “n” columns is said to have order m x n. Each entry, or element,
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.
Copyright © 2013, 2009, 2005 Pearson Education, Inc. 1 5 Systems and Matrices Copyright © 2013, 2009, 2005 Pearson Education, Inc.
1 Ch. 4 Linear Models & Matrix Algebra Matrix algebra can be used: a. To express the system of equations in a compact manner. b. To find out whether solution.
Unit 6 : Matrices.
1. Inverse of A 2. Inverse of a 2x2 Matrix 3. Matrix With No Inverse 4. Solving a Matrix Equation 1.
Unit 3: Matrices.
Matrices. Definitions  A matrix is an m x n array of scalars, arranged conceptually as m rows and n columns.  m is referred to as the row dimension.
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!
Matrix Algebra and Regression a matrix is a rectangular array of elements m=#rows, n=#columns  m x n a single value is called a ‘scalar’ a single row.
Matrices Matrices For grade 1, undergraduate students For grade 1, undergraduate students Made by Department of Math.,Anqing Teachers college.
Linear Algebra 1.Basic concepts 2.Matrix operations.
Solving Linear Systems of Equations
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
Linear Algebra Diyako Ghaderyan 1 Contents:  Linear Equations in Linear Algebra  Matrix Algebra  Determinants  Vector Spaces  Eigenvalues.
1 ECE 1304 Introduction to Electrical and Computer Engineering Section 1.7 Linear Algebra with MATLAB.
3.6 Solving Systems Using Matrices You can use a matrix to represent and solve a system of equations without writing the variables. A matrix is a rectangular.
Linear Algebra Diyako Ghaderyan 1 Contents:  Linear Equations in Linear Algebra  Matrix Algebra  Determinants  Vector Spaces  Eigenvalues.
3.4 Solution by Matrices. What is a Matrix? matrix A matrix is a rectangular array of numbers.
1 Lecture 3 Post-Graduate Students Advanced Programming (Introduction to MATLAB) Code: ENG 505 Dr. Basheer M. Nasef Computers & Systems Dept.
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.
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,
Boot Camp in Linear Algebra TIM 209 Prof. Ram Akella.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Lecture 1 Linear algebra Vectors, matrices. Linear algebra Encyclopedia Britannica:“a branch of mathematics that is concerned with mathematical structures.
Section 6-2: Matrix Multiplication, Inverses and Determinants There are three basic matrix operations. 1.Matrix Addition 2.Scalar Multiplication 3.Matrix.
10.4 Matrix Algebra. 1. Matrix Notation A matrix is an array of numbers. Definition Definition: The Dimension of a matrix is m x n “m by n” where m =
MATRICES A rectangular arrangement of elements is called matrix. Types of matrices: Null matrix: A matrix whose all elements are zero is called a null.
Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00.
College Algebra Chapter 6 Matrices and Determinants and Applications
Elementary Matrix Theory
EEE 244-3: MATRICES AND EQUATION SOLVING
Linear Algebraic Equations and Matrices
Linear Algebra Lecture 2.
Chapter 7 Matrix Mathematics
10.5 Inverses of Matrices and Matrix Equations
Linear Algebraic Equations and Matrices
Matrices 3 1.
Use Inverse Matrices to Solve Linear Systems
Lecture 11 Matrices and Linear Algebra with MATLAB
Multiplicative Inverses of Matrices and Matrix Equations
Unit 3: Matrices
Section 9.5 Inverses of Matrices
Bellwork 1) Multiply. 3) Find the determinant. 2) Multiply.
EEE 244-3: MATRICES AND EQUATION SOLVING
3.6 Multiply Matrices.
Sec 3.5 Inverses of Matrices
Solving Linear Systems of Equations - Inverse Matrix
Presentation transcript:

Examples of linear transformation matrices Some special cases of linear transformations of two-dimensional space R 2 are illuminating:dimensional Dimoffree.svgDimoffree.svg‎

Matrices 2-dimensional renderings (i.e., flat drawings) of a 0-dimensional point, a 1- dimensional line segment, a 2- dimensional square, a 3-dimensional cube, and a 4-dimensional tesseractpointline segmentsquare cubetesseract

Creating Matrices on Matlab Symmetric Matrix << A = pascal(3); << A A =

Creating Matrices on Matlab Non-Symmetric Matrix << B = magic(3); << B B =

Matrices example Another example is a 3-by-2 rectangular matrix of random integers. << C = fix(10*rand(3,2)) << C C =

Matrix Division Matrix division is useful primarily for solving equations, and especially for solving simultaneous linear equations. For example, you want to solve for X in A*X = B. In ordinary algebra, you would simply divide both sides of the equation by A, and X would equal B/A. However, since matrix algebra is not commutative (A*X  X*A), different processes apply. In formal matrix algebra, the solution involves matrix inversion. MATLAB, however, simplifies the process by providing two matrix division symbols, left and right (\ and /).

Matrix Division In general, X = A\B solves for X in A*X = B X = B/A solves for X in X*A = B. In general, matrix A must be a nonsingular square matrix; i.e., it must be invertible and it must have the same number of rows and columns.

Determinant Notice that the only way that two vectors can be linearly dependent is for them to be proportional (parallel) or for one of them to be 0. If the set has the same number of vectors as each vector has components, which frequently is the case, then there is a calculation to test for linear dependence.

Array the vectors in a square matrix and calculate its determinant. If the determinant is 0, they are dependent, and otherwise they are independent. For example, consider the vectors {(1,2,3), (4,5,6),(7,8,9)}, which are not obviously linearly dependent. A calculation shows that

Determinant Using Matlab one could write: A = [1 2 3; 4 5 6; 7 8 9] A = s=det(A) s = 0

Determinant [(5 x 9)-(8 x 6)]= [(6 x 7)-(9 x 4)]= -12

Determinant [(4 x 8)-(7 x 5)] = [(2 x 9)-(8 x 3)] = 24

Determinant [(3 x 7) - (9 x 1)] = [(1 x 8)-(7 x 2) = [(2 x 6)-(5 x 3)] = -21

Determinant [(4 x 3) – (1 x 6)] = [(1 x 5)-(4 x 2)] = = 0

Simultaneous Equations by Matrix 2x + y = 13 x - 3y = -18 >> A = [2 1 ; 1 -3]; >> B = [13 ; -18]; >> X = A \ B X = 3 7

Solution using Determinant