Section 1.7 Diagonal, Triangular, and Symmetric Matrices.

Slides:



Advertisements
Similar presentations
Rules of Matrix Arithmetic
Advertisements

TRIANGULAR MATRICES A square matrix in which all the entries above the main diagonal are zero is called lower triangular, and a square matrix in which.
CHAPTER 1 Section 1.6 إعداد د. هيله العودان (وضعت باذن معدة العرض)
LU - Factorizations Matrix Factorization into Triangular 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.
Systems of Linear Equations and Matrices
1.7 Diagonal, Triangular, and Symmetric Matrices.
Chapter 3 Determinants 3.1 The Determinant of a Matrix
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
Matrix Operations. Matrix Notation Example Equality of Matrices.
Matrices and Systems of Equations
Psychology 202b Advanced Psychological Statistics, II January 18, 2011.
Section 9.6 Determinants and Inverses Objectives To understand how to find a determinant of a 2x2 matrix. To understand the identity matrix. Do define.
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 5 Determinants.
A matrix having a single row is called a row matrix. e.g.,
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.
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
Section 6.6 Orthogonal Matrices.
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
2.1 Operations with Matrices 2.2 Properties of Matrix Operations
Presentation on Matrices and some special matrices In partial fulfillment of the subject Vector calculus and linear algebra ( ) Submitted by: Agarwal.
Chap. 2 Matrices 2.1 Operations with Matrices
Gram-Schmidt Orthogonalization
Determinants In this chapter we will study “determinants” or, more precisely, “determinant functions.” Unlike real-valued functions, such as f(x)=x 2,
Matrices & Determinants Chapter: 1 Matrices & Determinants.
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,
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
Class 27: Question 1 TRUE or FALSE: If P is a projection matrix of the form P=A(A T A) -1 A T then P is a symmetric matrix. 1. TRUE 2. FALSE.
Linear algebra: matrix Eigen-value Problems Eng. Hassan S. Migdadi Part 1.
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.
Chapter 3 Determinants Linear Algebra. Ch03_2 3.1 Introduction to Determinants Definition The determinant of a 2  2 matrix A is denoted |A| and is given.
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.
Introduction and Definitions
Matrices and Determinants
MATRICES Operations with Matrices Properties of Matrix Operations
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.
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;
Linear Algebra Engineering Mathematics-I. Linear Systems in Two Unknowns Engineering Mathematics-I.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Introduction Types of Matrices Operations
= y1y1 y2y2 y3y y 1 = = 14 xxx Calculate y 1 : ROW 1 Matrix-Vector multiplication.
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.
MAT 322: LINEAR ALGEBRA.
Matrices and Vector Concepts
Matrices and Matrix Operations
nhaa/imk/sem /eqt101/rk12/32
MATRICES.
Lecture 2 Matrices Lat Time - Course Overview
1.4 Inverses; Rules of Matrix Arithmetic
Rules of Matrix Arithmetic
3.1 Introduction to Determinants
2. Matrix Algebra 2.1 Matrix Operations.
Elementary Matrix Methid For find Inverse
Lecture 11 Matrices and Linear Algebra with MATLAB
Matrices Introduction.
Determinant of a Matrix
MATRICES Operations with Matrices Properties of Matrix Operations
Linear Algebra Lecture 11.
Matrices - Operations INVERSE OF A MATRIX
Presentation transcript:

Section 1.7 Diagonal, Triangular, and Symmetric Matrices

DIAGONAL MATRICES A square matrix which consists of all zeros off the main diagonal is called a diagonal matrix. Example:

TRIANGULAR MATRICES A square matrix with all entries above the main diagonal zero is called a lower triangular matrix. A square matrix with all entries below the main diagonal zero is called an upper triangular matrix. A matrix that is either upper triangular or lower triangular is called triangular.

EXAMPLES

PROPERTIES OF TRIANGULAR MATRICES a)The transpose of an upper triangular matrix is a lower triangular matrix, and the transpose of a lower triangular matrix is an upper triangular matrix. b)The product of lower triangular matrices is lower triangular; the product of upper triangular matrices is upper triangular. c)A triangular matrix is invertible if and only if its diagonal entries are all nonzero. d)The inverse of an invertible lower triangular matrix is lower triangular, and the inverse of an invertible upper triangular matrix is upper triangular.

SYMMETRIC MATRICES A square matrix is called symmetric if A = A T.

PROPERTIES OF SYMMETRIC MATRICES Theorem 1.7.2: If A and B are symmetric matrices and if k is a scalar, then: (a)A T is symmetric. (b)A + B and A − B are both symmetric. (c)kA is symmetric.

INVERSES AND SYMMETRIC MATRICES Theorem 1.7.3: If A is an invertible symmetric matrix, then A −1 is also symmetric.

TRANSPOSES AND SYMMETRIC MATRICES Consider an m×n matrix A and its transpose A T (an n×m matrix). Then A A T and A T A are both symmetric.

TRANSPOSE, SYMMETRY, AND INVERTIBILITY Theorem 1.7.4: If A is an invertible matrix, then AA T and A T A are also invertible.