Top Banner
Presented by :- Presented by :- (P.D.I.M.T.R) GUIDED BY MR.ASHISH GHORPADE tqma2z.blogspot.com
17

Matrices

Nov 01, 2014

Download

Documents

ashishtqm

A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements or the entries of the matrix
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Matrices

Presented by :-Presented by :-

(P.D.I.M.T.R)

GUIDED BY

MR.ASHISH GHORPADEtqma2z.blogspot.com

Page 2: Matrices

The knowledge of matrices is necessary in various branches of mathematics. Matrices are one of the most powerful tools in mathematics. This mathematical tool simplifies our work to a great extent when compared with other straight forward method. The evolution of concept of matrices is the result of an attempt to obtain compact and simple methods of solving systems of linear equations. Matrices are not only used as a representation of the coefficients in system of linear equation, but utility of matrices far exceeds that use.

Page 3: Matrices

A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements or the entries of the matrix. We denote matrices by capital letters.

A Matrix is a rectangular arrangement of numbers in rows and columns.

Example: A= 1 3 2 4

Page 4: Matrices

The number of Rows in a matrix is represented with ‘m’ and the number of Columns is represented with ’n’. Hence the matrix can be called m×n order matrix. Then numbers m and n are called dimensions of the matrix.

Example : A= 1 2 3

Rows 3 2 1 1 2 3

Page 5: Matrices

1. Rectangular Matrix.2. Square Matrix.3. Row Matrix.4. Column Matrix.5. Diagonal Matrix.6. Scalar Matrix.7. Unit Matrix or Identity Matrix.8. Zero Matrix or Null Matrix.

Page 6: Matrices

A matrix in which number of Rows is not equal to number of Columns it is called as rectangular matrix.

1 3 2Example: A= 3 2 1 4 3 2 1 2 3

Page 7: Matrices

A matrix with equal number of Rows and Columns (i.e., m=n) is called as square matrix.

1 2 1 Example: A= 2 1 2 1 2 1

Page 8: Matrices

A matrix with a single Row and any number of Columns is called a Row matrix.

Example: A = 1 2 3 4 5

Page 9: Matrices

A matrix with a single Column and any number of Rows is called a Column matrix.

1 Example: A = 2 3 4

Page 10: Matrices

A Diagonal matrix is a square matrix in which all the elements except those on the leading diagonal are Zero.

2 0 0

Example: A = 0 5 0 0 0 7

Page 11: Matrices

A Diagonal matrix in which all the Diagonal elements are Equal is called the scalar matrix.

3 0 0 Example: A = 0 3 0 0 0 3

Page 12: Matrices

When the Diagonal elements are One and nondiagonal elements are Zero then matrix is called as Unit matrix or Identity matrix. A unit matrix is always a square matrix.

1 0 0 Example: A = 0 1 0 0 0 1

Page 13: Matrices

A matrix in which every element is zero is called a zero matrix or null matrix.

0 0 0 Example: A = 0 0 0 0 0 0

Page 14: Matrices

Equality of Matrices :- Two matrices are said to be equal if they have the same order and all the corresponding elements are equal.

Addition of Matrices :- The sum of two matrices of the same order is the matrix whose elements are the sum of the corresponding elements of the given matrices.

Page 15: Matrices

Subtraction of Matrices :- Subtraction of the matrices is also done in the same manner of addition of matrices. When the matrix B is to be subtracted from matrix A, the elements in matrix B are subtracted from corresponding elements in matrix A.

Multiplication of Matrices :- A matrix may be multiplied by any one number or any other matrix. Multiplication of a matrix by any one number is called a scalar multiplication. One matrix may also be multiplied by other matrix.

Page 16: Matrices

Matrix multiplication is ASSOCIATIVE.

EX:- A (BC) = (AB) C

Matrix multiplication is DISTRIBUTIVE. EX:- A (B + C) = AB + AC and (B + C)

A = BA + CA

Matrix multiplication is in general, NOT COMMUTATIVE.

EX:- AB NOT EQUAL TO BA

Page 17: Matrices