Group members: M.Shozib, Hasnain Khan, M.Awais, Shahid Rafiq Asad ali.

Slides:



Advertisements
Similar presentations
CS 450: COMPUTER GRAPHICS LINEAR ALGEBRA REVIEW SPRING 2015 DR. MICHAEL J. REALE.
Advertisements

Matrix Algebra Matrix algebra is a means of expressing large numbers of calculations made upon ordered sets of numbers. Often referred to as Linear Algebra.
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.
Mathematics. Matrices and Determinants-1 Session.
Maths for Computer Graphics
MOHAMMAD IMRAN DEPARTMENT OF APPLIED SCIENCES JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES.
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.
Chapter 11 Section 11.0 Review of Matrices. Matrices A matrix (despite the glamour of the movie) is a collection of numbers arranged in a rectangle or.
MATRICES MATRIX OPERATIONS. About Matrices  A matrix is a rectangular arrangement of numbers in rows and columns. Rows run horizontally and columns run.
4.2 Adding and Subtracting Matrices 4.3 Matrix Multiplication
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
4.2 Operations with Matrices Scalar multiplication.
Little Linear Algebra Contents: Linear vector spaces Matrices Special Matrices Matrix & vector Norms.
Chapter 5.7 Properties of Matrices. Basic Definitions It is necessary to use capital letters to name matrices. Also, subscript notation is often used.
Chapter 4 Matrices By: Matt Raimondi.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
Matrices Addition & Subtraction Scalar Multiplication & Multiplication Determinants Inverses Solving Systems – 2x2 & 3x3 Cramer’s Rule.
1 C ollege A lgebra Systems and Matrices (Chapter5) 1.
13.1 Matrices and Their Sums
Matrices A matrix is a table or array of numbers arranged in rows and columns The order of a matrix is given by stating its dimensions. This is known as.
Prepared by Deluar Jahan Moloy Lecturer Northern University Bangladesh
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.
Matrices: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
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-
Chapter 1 Section 1.5 Matrix Operations. Matrices A matrix (despite the glamour of the movie) is a collection of numbers arranged in a rectangle or an.
Matrices and Determinants
What is Matrix Multiplication? Matrix multiplication is the process of multiplying two matrices together to get another matrix. It differs from scalar.
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.
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,
CS 450: COMPUTER GRAPHICS TRANSFORMATIONS SPRING 2015 DR. MICHAEL J. REALE.
3.5 Perform Basic Matrix Operations Add Matrices Subtract Matrices Solve Matric equations for x and y.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Computer Graphics Mathematical Fundamentals Lecture 10 Taqdees A. Siddiqi
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.
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.
Matrices. Matrix A matrix is an ordered rectangular array of numbers. The entry in the i th row and j th column is denoted by a ij. Ex. 4 Columns 3 Rows.
Matrices and Matrix Operations
12-1 Organizing Data Using Matrices
Christmas Packets are due on Friday!!!
Matrices Rules & Operations.
Matrix Operations Free powerpoints at
Matrix Operations.
Chapter 7 Matrix Mathematics
1.5 Matricies.
Matrix Operations.
Matrix Operations Free powerpoints at
What we’re learning today:
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Computer Graphics Matrix
Matrix Operations Free powerpoints at
WarmUp 2-3 on your calculator or on paper..
Warm-up a. Solve for k: 13 −5
MATRICES MATRIX OPERATIONS.
2. Matrix Algebra 2.1 Matrix Operations.
MATRICES MATRIX OPERATIONS.
MATRICES MATRIX OPERATIONS.
Section 2.4 Matrices.
2.2 Introduction to Matrices
Matrices Introduction.
3.5 Perform Basic Matrix Operations
Chapter 4 Matrices & Determinants
MATRICES MATRIX OPERATIONS.
MATRICES MATRIX OPERATIONS.
Presentation transcript:

Group members: M.Shozib, Hasnain Khan, M.Awais, Shahid Rafiq Asad ali

  Matrix  Diemension of matrix  Elements of matrix  Square Matrix  Matrix Addition  Zero Matrix  Matrix Negation  Matrix Subtraction  Multiplication of Matrix  Transpose of Matrix Matrices

  A matrix is a collection of numbers arranged into a fixed number of rows and columns. Usually the numbers are real numbers. In general, matrices can contain complex numbers but we won't see those here.  Here is an example of a matrix with three rows and three columns What is matrix

  The top row is row 1. The left most column is column 1. This matrix is a 3x3 matrix because it has three rows and three columns. In describing matrices, the format is:  rows X columnsEach number that makes up a matrix is called an element of the matrix. The elements in a matrix have specific locations.  The upper left corner of the matrix is row 1 column 1. In the above matrix the element at row 1 col 1 is the value 1. The element at row 2 column 3 is the value 4.6.

  The numbers of rows and columns of a matrix are called its dimensions. Here is a matrix with three rows and two columns Sometimes the dimensions are written off to the side of the matrix, as in the above matrix. But this is just a little reminder and not actually part of the matrix. Here is a matrix with different dimensions. It has two rows and three columns. This is a different "data type" than the previous matrix. Matrix Dimensions

  In a square matrix the number of rows equals the number of columns The number of rows == the number of columns  A column matrix consists of a single column  A row matrix consists of a single row Square Matrix

  The elements of a matrix also have names, usually a lowercase letter the same as the matrix name, with the position of the element written as a subscript. So, for example, the 3x3 matrix A might be written as:  Sometimes you write A = [a ij ] to say that the elements of matrix A are named a ij. Names for Matrices

  For two matrices to be equal, they must have  The same dimensions.  Corresponding elements must be equal.  In other words, say that A n x m = [a ij ] and that B p x q = [b ij ].  Then A = B if and only if n=p, m=q, and a ij =b ij for all i and j in range.  Here are two matrices which are not equal even though they have the same elements. Matrix Equality

  Here is another pair of matrices.  Are these two matrices equal? Example

  If two matrices have the same number of rows and same number of columns, then the matrix sum can be computed:  If A is an MxN matrix, and B is also an MxN matrix, then their sum is an MxN matrix formed by adding corresponding elements of A and B Here is an example of this: Matrix Addition

  A zero matrix is one which has all its elements zero. Here is a 3x3 zero matrix:  The name of a zero matrix is a bold-face zero: 0, although sometimes people forget to make it bold face Zero Matrix

  You should be happy with the following rules of matrix addition. In each rule, the matrices are assumed to all have the same dimensions.  A + B = B + A  A + 0 = 0 + A = A  = 0 Rules for Matrix Addition

  The first rule says that matrix addition is commutative. This is because ordinary addition is being done on the corresponding elements of the two matrices, and ordinary (real) addition is commutative: Rules for Addition

  A matrix can be multiplied by a scalar (by a real number) as follows:  To multiply a matrix by a scalar, multiply each element of the matrix by the scalar.  Here is an example of this. (In this example, the variable a is a scalar.) Multipliation of a Matrix by a Scalar

  The negation of a matrix is formed by negating each element of the matrix: -A = -1A Negative of a Matrix

  If A and B have the same number of rows and columns, then A - B is defined as A + (-B). Usually you think of this as  To form A - B, from each element of A subtract the corresponding element of B.  Here is a partly finished example: Matrix Subtraction

  The transpose of a matrix is a new matrix whose rows are the columns of the original (which makes its columns the rows of the original). Here is a matrix and its transpose:  Usually we will work with square matrices, and it is usually square matrices that will be transposed. However, non-square matrices can be transposed, as well: Transpose

  If a transposed matrix is itself transposed, you get the original back:  This illustrates the rule ( A T ) T = A.  Another Example: A Rule for Transpose

  The main diagonal of a matrix consists of those elements that lie on the diagonal that runs from top left to bottom right. If the matrix is A, then its main diagonal are the elements who's row number and column number are equal, a jj. Main Diagonal