Presented By Farheen Sultana Ist Year I SEM

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

4.1 Introduction to Matrices
Applied Informatics Štefan BEREŽNÝ
Matrices A matrix is a rectangular array of quantities (numbers, expressions or function), arranged in m rows and n columns x 3y.
Autar Kaw Benjamin Rigsby Transforming Numerical Methods Education for STEM Undergraduates.
Mathematics. Matrices and Determinants-1 Session.
Maths for Computer Graphics
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
Matrix Operations. Matrix Notation Example Equality of Matrices.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
Chapter 2 Matrices Definition of a matrix.
Module 6 Matrices & Applications Chapter 26 Matrices and Applications I.
Matrix Definition A Matrix is an ordered set of numbers, variables or parameters. An example of a matrix can be represented by: The matrix is an ordered.
Matrices The Basics Vocabulary and basic concepts.
Arithmetic Operations on Matrices. 1. Definition of Matrix 2. Column, Row and Square Matrix 3. Addition and Subtraction of Matrices 4. Multiplying Row.
CE 311 K - Introduction to Computer Methods Daene C. McKinney
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:
Presentation on Matrices and some special matrices In partial fulfillment of the subject Vector calculus and linear algebra ( ) Submitted by: Agarwal.
13.1 Matrices and Their Sums
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.
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
Prepared by Deluar Jahan Moloy Lecturer Northern University Bangladesh
Chapter 6 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Matrix Operations and Their Applications.
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.
Chapter 2 … part1 Matrices Linear Algebra S 1. Ch2_2 2.1 Addition, Scalar Multiplication, and Multiplication of Matrices Definition A matrix is a rectangular.
Unit 3 Matrix Arithmetic IT Disicipline ITD 1111 Discrete Mathematics & Statistics STDTLP 1 Unit 3 Matrix Arithmetic.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
Matrices and Determinants
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.
LEARNING OUTCOMES At the end of this topic, student should be able to :  D efination of matrix  Identify the different types of matrices such as rectangular,
Linear System of Simultaneous Equations Warm UP First precinct: 6 arrests last week equally divided between felonies and misdemeanors. Second precinct:
Matrix Algebra Definitions Operations Matrix algebra is a means of making calculations upon arrays of numbers (or data). Most data sets are matrix-type.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Introduction Types of Matrices Operations
Matrices and systems of Equations. Definition of a Matrix * Rectangular array of real numbers m rows by n columns * Named using capital letters * First.
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.
Linear Algebra by Dr. Shorouk Ossama.
Matrices Introduction.
MTH108 Business Math I Lecture 20.
Mathematics-I J.Baskar Babujee Department of Mathematics
MAT 322: LINEAR ALGEBRA.
Umm Al-Qura University
Matrices and Vector Concepts
WELCOME TO THE HIGHER MATHEMATICS CLASS
MATHEMATICS Matrix Algebra
Introduction to Matrices
DETERMINANTS A determinant is a number associated to a square matrix. Determinants are possible only for square matrices.
L5 matrix.
Computer Graphics Matrix
7.3 Matrices.
Matrix Algebra - Overview
Introduction to Matrices
Warmup Solve each system of equations. 4x – 2y + 5z = 36 2x + 5y – z = –8 –3x + y + 6z = 13 A. (4, –5, 2) B. (3, –2, 4) C. (3, –1, 9) D. no solution.
2. Matrix Algebra 2.1 Matrix Operations.
CSE 541 – Numerical Methods
2.2 Introduction to Matrices
Matrices Introduction.
[MATRICES ].
3.5 Perform Basic Matrix Operations
12.1 Addition of Matrices.
Lecture 8 System of Linear Differential Equations fall semester
Matrices Introduction.
Chapter 4 Matrices & Determinants
Lecture 7 System of Linear Differential Equations fall semester
Matrices.
Matrix Operations Ms. Olifer.
Matrix A matrix is a rectangular arrangement of numbers in rows and columns Each number in a matrix is called an Element. The dimensions of a matrix are.
[MATRICES ].
Matrices and Determinants
Presentation transcript:

Presented By Farheen Sultana Ist Year I SEM MATRICES Presented By Farheen Sultana Ist Year I SEM

Matrices - Introduction Matrix algebra has at least two advantages: Reduces complicated systems of equations to simple expressions Adaptable to systematic method of mathematical treatment and well suited to computers Definition: A matrix is a set or group of numbers arranged in a square or rectangular array enclosed by two brackets

Matrices - Introduction Properties: A specified number of rows and a specified number of columns Two numbers (rows x columns) describe the dimensions or size of the matrix. Examples: 3x3 matrix 2x4 matrix 1x2 matrix

Matrices - Indication A matrix is denoted by a bold capital letter and the elements within the matrix are denoted by lower case letters e.g. matrix [A] with elements aij Amxn= mAn i goes from 1 to m j goes from 1 to n

Matrices - Introduction TYPES OF MATRICES Column matrix or vector: The number of rows may be any integer but the number of columns is always 1

Matrices - Introduction TYPES OF MATRICES 2. Row matrix or vector Any number of columns but only one row

Matrices - Introduction TYPES OF MATRICES 3. Rectangular matrix Contains more than one element and number of rows is not equal to the number of columns

Matrices - Introduction TYPES OF MATRICES 4. Square matrix The number of rows is equal to the number of columns (a square matrix A has an order of m) m x m The principal or main diagonal of a square matrix is composed of all elements aij for which i=j

Matrices - Introduction TYPES OF MATRICES 5. Diagonal matrix A square matrix where all the elements are zero except those on the main diagonal i.e. aij =0 for all i = j aij = 0 for some or all i = j

Matrices - Introduction TYPES OF MATRICES 6. Unit or Identity matrix - I A diagonal matrix with ones on the main diagonal i.e. aij =0 for all i = j aij = 1 for some or all i = j

Matrices - Introduction TYPES OF MATRICES 7. Null (zero) matrix - 0 All elements in the matrix are zero For all i,j

Matrices - Introduction TYPES OF MATRICES 8. Triangular matrix A square matrix whose elements above or below the main diagonal are all zero

Matrices - Introduction TYPES OF MATRICES 8a. Upper triangular matrix A square matrix whose elements below the main diagonal are all zero i.e. aij = 0 for all i > j

Matrices - Introduction TYPES OF MATRICES 8b. Lower triangular matrix A square matrix whose elements above the main diagonal are all zero i.e. aij = 0 for all i < j

Matrices – Introduction TYPES OF MATRICES 9. Scalar matrix A diagonal matrix whose main diagonal elements are equal to the same scalar A scalar is defined as a single number or constant i.e. aij = 0 for all i = j aij = a for all i = j