Linear Algebra 1.Basic concepts 2.Matrix operations.

Slides:



Advertisements
Similar presentations
Refresher: Vector and Matrix Algebra Mike Kirkpatrick Department of Chemical Engineering FAMU-FSU College of Engineering.
Advertisements

Mathematics. Matrices and Determinants-1 Session.
Matrices & Systems of Linear Equations
3_3 An Useful Overview of Matrix Algebra
MF-852 Financial Econometrics
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.
Matrices and Systems of Equations
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
Chapter 2 Matrices Definition of a matrix.
MOHAMMAD IMRAN DEPARTMENT OF APPLIED SCIENCES JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES.
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
Pam Perlich Urban Planning 5/6020
CE 311 K - Introduction to Computer Methods Daene C. McKinney
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
ECON 1150 Matrix Operations Special Matrices
Matrix Algebra. Quick Review Quick Review Solutions.
An m  n matrix is an rectangular array of elements with m rows and n columns: Matrices denotes the element in the ith row and jth column.
Review of Matrices Or A Fast Introduction.
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,
10.4 Matrix Algebra 1.Matrix Notation 2.Sum/Difference of 2 matrices 3.Scalar multiple 4.Product of 2 matrices 5.Identity Matrix 6.Inverse of a matrix.
Algebra 3: Section 5.5 Objectives of this Section Find the Sum and Difference of Two Matrices Find Scalar Multiples of a Matrix Find the Product of Two.
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.
Matrix Algebra and Regression a matrix is a rectangular array of elements m=#rows, n=#columns  m x n a single value is called a ‘scalar’ a single row.
CHAPTER 2 MATRICES 2.1 Operations with Matrices Matrix
Linear algebra: matrix Eigen-value Problems Eng. Hassan S. Migdadi Part 1.
Fundamentals of Engineering Analysis
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.
3.4 Solution by Matrices. What is a Matrix? matrix A matrix is a rectangular array of numbers.
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-
10.4 Matrix Algebra 1.Matrix Notation 2.Sum/Difference of 2 matrices 3.Scalar multiple 4.Product of 2 matrices 5.Identity Matrix 6.Inverse of a matrix.
MATRICES Operations with Matrices Properties of Matrix Operations
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.
2.5 – Determinants and Multiplicative Inverses of Matrices.
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,
A ij i = row j = column A [ A ] Definition of a Matrix.
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;
Matrix Algebra Basics Chapter 3 Section 5. Algebra.
Linear Algebra Engineering Mathematics-I. Linear Systems in Two Unknowns Engineering Mathematics-I.
MATRICES. Introduction Matrix algebra has several uses in economics as well as other fields of study. One important application of Matrices is that it.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
10.4 Matrix Algebra. 1. Matrix Notation A matrix is an array of numbers. Definition Definition: The Dimension of a matrix is m x n “m by n” where m =
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.
1 Matrix Math ©Anthony Steed Overview n To revise Vectors Matrices.
College Algebra Chapter 6 Matrices and Determinants and Applications
MTH108 Business Math I Lecture 20.
Matrices and Vector Concepts
Linear Algebraic Equations and Matrices
MATRICES.
Linear Algebra Lecture 2.
Matrices and Matrix Solutions
Linear Algebraic Equations and Matrices
Linear independence and matrix rank
Multiplication of Matrices
7.3 Matrices.
2. Matrix Algebra 2.1 Matrix Operations.
Lecture 11 Matrices and Linear Algebra with MATLAB
Unit 3: Matrices
RECORD. RECORD COLLABORATE: Discuss: Is the statement below correct? Try a 2x2 example.
MATRICES Operations with Matrices Properties of Matrix Operations
Multiplication of Matrices
3.6 Multiply Matrices.
Presentation transcript:

Linear Algebra 1.Basic concepts 2.Matrix operations

Basic Concepts l m-dimensional column vector l n-dimensional row vector l mxn-dimensional matrix l Square matrix: m = n

Matrix Addition & Subtraction l Only possible for matrices of same dimension l Add/subtract matrices element-by-element l Addition example: C = A+B l Subtraction example: C = A-B

Scalar and Matrix Multiplication l Scalar multiplication »B = kA »Dimensions: »General formula: »Example l Matrix multiplication »C = AB »Only possible if the number of columns of A is equal to the number of rows of B

Matrix Multiplication cont. l General representation »Dimensions: »Formula l Examples l Noncommutative operation:

Transpose l Notation: B = A T l Dimensions: l Formula: l Example l Important properties

Common Matrices l Symmetric matrix: A T = A l Skew-symmetric matrix: A T = -A l Example of a diagonal matrix l Examples of triangular matrices l Identity matrix

Systems of Linear Algebraic Equations l Scalar representation l Matrix representation: Ax = b l Homogeneous system: b = 0 »One obvious solution: x = 0

Triangular Systems l Example l Solution l Gaussian elimination »Transform original system into diagonal form »Accomplished by elementary row operations

Systems of Linear Algebraic Equations l Scalar representation l Matrix representation: Ax = b l Homogeneous system: b = 0 »One obvious solution: x = 0