Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.

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.
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.
Autar Kaw Benjamin Rigsby Transforming Numerical Methods Education for STEM Undergraduates.
Matrices & Systems of Linear Equations
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.
1 Neural Nets Applications Vectors and Matrices. 2/27 Outline 1. Definition of Vectors 2. Operations on Vectors 3. Linear Dependence of Vectors 4. Definition.
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
Intro to Matrices Don’t be scared….
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
Chapter 1: Matrices Definition 1: A matrix is a rectangular array of numbers arranged in horizontal rows and vertical columns. EXAMPLE:
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
1 Statistical Analysis Professor Lynne Stokes Department of Statistical Science Lecture 5QF Introduction to Vector and Matrix Operations Needed for the.
ECON 1150 Matrix Operations Special Matrices
Little Linear Algebra Contents: Linear vector spaces Matrices Special Matrices Matrix & vector Norms.
Presentation on Matrices and some special matrices In partial fulfillment of the subject Vector calculus and linear algebra ( ) Submitted by: Agarwal.
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 Addition & Subtraction Scalar Multiplication & Multiplication Determinants Inverses Solving Systems – 2x2 & 3x3 Cramer’s Rule.
Unit 3: Matrices.
Matrices. Definitions  A matrix is an m x n array of scalars, arranged conceptually as m rows and n columns.  m is referred to as the row dimension.
CHAPTER 2 MATRICES 2.1 Operations with Matrices Matrix
Linear Algebra 1.Basic concepts 2.Matrix operations.
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
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.
Slide Copyright © 2009 Pearson Education, Inc. 7.3 Matrices.
Sec 4.1 Matrices.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
Matrices and Determinants
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,
Linear System of Simultaneous Equations Warm UP First precinct: 6 arrests last week equally divided between felonies and misdemeanors. Second precinct:
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Chapter 5: Matrices and Determinants Section 5.1: Matrix Addition.
Introduction Types of Matrices Operations
A very brief introduction to Matrix (Section 2.7) Definitions Some properties Basic matrix operations Zero-One (Boolean) matrices.
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.
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.
1 Matrix Math ©Anthony Steed Overview n To revise Vectors Matrices.
MTH108 Business Math I Lecture 20.
Matrices and Vector Concepts
12-1 Organizing Data Using Matrices
Linear Algebra review (optional)
Copyright © 2009 Dan Nettleton
Linear Algebraic Equations and Matrices
Matrix Operations SpringSemester 2017.
Computer Graphics Matrix
7.3 Matrices.
الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . 1 جمع المصفوفات وطرحها.
2. Matrix Algebra 2.1 Matrix Operations.
MATRICES MATRIX OPERATIONS.
Lecture 11 Matrices and Linear Algebra with MATLAB
Unit 3: Matrices
MATRICES MATRIX OPERATIONS.
2.2 Introduction to Matrices
Matrices Introduction.
Determinant of a Matrix
Presented By Farheen Sultana Ist Year I SEM
MATRICES Operations with Matrices Properties of Matrix Operations
Linear Algebra review (optional)
Matrix Operations SpringSemester 2017.
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.
Presentation transcript:

Matrices

Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors

Matrix Matrix - a rectangular array of numbers arranged into m rows and n columns: Rows, i = 1, …, m Columns, j = 1, …, n

Examples These are valid matrices These are not

Row and Column Matrices (vectors) row matrix (or row vector) is a matrix with one row column vector is a matrix with only one column

Square Matrix When the row and column dimensions of a matrix are equal (m = n) then the matrix is called square

Matrix Transpose The transpose of the (m x n) matrix A is the (n x m) matrix formed by interchanging the rows and columns such that row i becomes column i of the transposed matrix

Example - Transpose

Matrix Equality Two (m x n) matrices A and B are equal if and only if each of their elements are equal. That is A = B if and only if a ij = b ij for i = 1,...,m; j = 1,...,n

Vector Addition The sum of two (m x 1) column vectors a and b is

Examples - Vector Addition

Matrix Addition

Examples - Matrix Addition The following matrix addition is not defined

Scalar – Matrix Multiplication Multiplication of a matrix A by a scalar is defined as Examples

Matrix – Matrix Multiplication The product of two matrices A and B is defined only if – the number of columns of A is equal to the number of rows of B. If A is (m x p) and B is (p x n), the product is an (m x n) matrix C

Matrix – Matrix Multiplication

Example - Matrix Multiplication

Diagonal Matrices Diagonal Matrix Tridiagonal Matrix

Identity Matrix The identity matrix has the property that if A is a square matrix, then

Matrix Inverse If A is an (n x n) square matrix and there is a matrix X with the property that X is defined to be the inverse of A and is denoted A -1

Example - Matrix Inverse Example (2 x 2) matrix

Special Matrices Upper Triangular Matrix Lower Triangular Matrix