1.7 Diagonal, Triangular, and Symmetric Matrices.

Slides:



Advertisements
Similar presentations
Rules of Matrix Arithmetic
Advertisements

Elementary Linear Algebra Anton & Rorres, 9th Edition
CSNB143 – Discrete Structure
Applied Informatics Štefan BEREŽNÝ
CHAPTER 1 Section 1.6 إعداد د. هيله العودان (وضعت باذن معدة العرض)
LU - Factorizations Matrix Factorization into Triangular Matrices.
Section 1.7 Diagonal, Triangular, and Symmetric Matrices.
1.5 Elementary Matrices and a Method for Finding
Matrix Definition: An array of numbers in m rows and n colums is called an mxn matrix A square matrix of order n, is an (nxn) matrix.
Prime An integer greater than one is called a prime number if its only positive divisors (factors) are one and itself. Examples: The first six primes are.
Matrix Operations. Matrix Notation Example Equality of Matrices.
MOHAMMAD IMRAN DEPARTMENT OF APPLIED SCIENCES JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES.
Matrices MSU CSE 260.
Chapter 3 The Inverse. 3.1 Introduction Definition 1: The inverse of an n  n matrix A is an n  n matrix B having the property that AB = BA = I B is.
Finding the Inverse of a Matrix
Chapter 1: Matrices Definition 1: A matrix is a rectangular array of numbers arranged in horizontal rows and vertical columns. EXAMPLE:
1 Operations with Matrice 2 Properties of Matrix Operations
1.7 Diagonal, Triangular, and Symmetric Matrices 1.
Matrix Solution of Linear Systems The Gauss-Jordan Method Special Systems.
259 Lecture 14 Elementary Matrix Theory. 2 Matrix Definition  A matrix is a rectangular array of elements (usually numbers) written in rows and columns.
1.4 Inverses; Rules of Matrix Arithmetic. Properties of Matrix Operations For real numbers a and b,we always have ab=ba, which is called the commutative.
2 2.1 © 2016 Pearson Education, Inc. Matrix Algebra MATRIX OPERATIONS.
Overview Definitions Basic matrix operations (+, -, x) Determinants and inverses.
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,
Lecture 7 Matrices CSCI – 1900 Mathematics for Computer Science Fall 2014 Bill Pine.
Chapter 4 – Matrix CSNB 143 Discrete Mathematical Structures.
Matrices Matrices For grade 1, undergraduate students For grade 1, undergraduate students Made by Department of Math.,Anqing Teachers college.
CHAPTER 2 MATRICES 2.1 Operations with Matrices Matrix
Co. Chapter 3 Determinants Linear Algebra. Ch03_2 Let A be an n  n matrix and c be a nonzero scalar. (a)If then |B| = …….. (b)If then |B| = …..... (c)If.
The Determinant of a Matrix Note: The determinant of a matrix can be positive, zero, or negative. Chapter 3 Determinants.
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
Meeting 18 Matrix Operations. Matrix If A is an m x n matrix - that is, a matrix with m rows and n columns – then the scalar entry in the i th row and.
Section 1.4 Inverses; Rules of Matrix Arithmetic.
For real numbers a and b,we always have ab = ba, which is called the commutative law for multiplication. For matrices, however, AB and BA need not be equal.
2 2.1 © 2012 Pearson Education, Inc. Matrix Algebra MATRIX OPERATIONS.
CSNB143 – Discrete Structure Topic 3 – Matrices. Learning Outcomes Students should understand all matrices operations. Students should be able to differentiate.
Matrices and Determinants
MATRICES Operations with Matrices Properties of Matrix Operations
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.
MATRIX A set of numbers arranged in rows and columns enclosed in round or square brackets is called a matrix. The order of a matrix gives the number of.
2.5 – Determinants and Multiplicative Inverses of Matrices.
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.
Chapter 1 Section 1.6 Algebraic Properties of Matrix Operations.
2 - 1 Chapter 2A Matrices 2A.1 Definition, and Operations of Matrices: 1 Sums and Scalar Products; 2 Matrix Multiplication 2A.2 Properties of Matrix Operations;
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Introduction Types of Matrices Operations
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.
2.1 Matrix Operations 2. Matrix Algebra. j -th column i -th row Diagonal entries Diagonal matrix : a square matrix whose nondiagonal entries are zero.
12-4: Matrix Methods for Square Systems
Matrix Algebra MATRIX OPERATIONS © 2012 Pearson Education, Inc.
Matrices.
Lecture 2 Matrices Lat Time - Course Overview
1.4 Inverses; Rules of Matrix Arithmetic
Rules of Matrix Arithmetic
1.5 Matricies.
3.1 Introduction to Determinants
Finding the Inverse of a Matrix
MATHEMATICS Matrix Multiplication
Matrix Algebra MATRIX OPERATIONS © 2012 Pearson Education, Inc.
Matrices 3 1.
RECORD. RECORD Gaussian Elimination: derived system back-substitution.
2. Matrix Algebra 2.1 Matrix Operations.
Elementary Matrix Methid For find Inverse
Lecture 11 Matrices and Linear Algebra with MATLAB
Determinant of a Matrix
MATRICES Operations with Matrices Properties of Matrix Operations
Systems of Linear Equations and Matrices
3.6 Multiply Matrices.
Matrix Algebra MATRIX OPERATIONS © 2012 Pearson Education, Inc.
Matrices and Determinants
Presentation transcript:

1.7 Diagonal, Triangular, and Symmetric Matrices

Diagonal Matrices (1/3) A square matrix in which all the entries off the main diagonal are zero is called a diagonal matrix. Here are some examples. A general n×n diagonal matrix D can be written as

Diagonal Matrices (2/3) A diagonal matrix is invertible if and only if all of its diagonal entries are nonzero; Powers of diagonal matrices are easy to compute; we leave it for the reader to verify that if D is the diagonal matrix (1) and k is a positive integer, then:

Diagonal Matrices (3/3) Matrix products that involve diagonal factors are especially easy to compute. For example, To multiply a matrix A on the left by a diagonal matrix D, one can multiply successive rows of A by the successive diagonal entries of D, and to multiply A on the right by D one can multiply successive columns of A by the successive diagonal entries of D.

Example1 Inverses and Powers of Diagonal Matrices

Triangular Matrices A square matrix in which all the entries above the main diagonal are zero is called lower triangular. A square matrix in which all the entries below the main diagonal are zero is called upper triangular. A matrix that is either upper triangular or low r triangular is called triangular.

Example2 Upper and Lower Triangular Matrices

Theorem 1.7.1

Example3 Upper Triangular Matrices

Symmetric Matrices A square matrix A is called symmetric if A=. The entries on the main diagonal may b arbitrary, but “ mirror images ” of entries across the main diagonal must be equal. a matrix is symmetric if and only if for all values of i and j.

Example4 Symmetric Matrices

Theorem Recall : Since AB and BA are not usually equal, it follows that AB will not usually be symmetric. However, in the special case where AB=BA,the product AB will be symmetric. If A and B are matrices such that AB=BA,then we say that A and B commute. In summary: The product of two symmetric matrices is symmetric if and only if the matrices commute.

Example5 Products of Symmetric Matrices The first of the following equations shows a product of symmetric matrices that is not symmetric, and the second shows a product of symmetric matrices that is symmetric. We conclude that the factors in the first equation do not commute, but those in the second equation do.

Theorem If A is an invertible symmetric matrix,then is symmetric. In general, a symmetric matrix need not be invertible.

Products The products are both square matrices the matrix has size m×m and the matrix has size n×n. Such products are always symmetric since

Example6 The Product of a Matrix and Its Transpose Is Symmetric

Theorem A is square matrix. If A is an invertible matrix,then and are also invertible.