Matrices and Matrix Operations

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

Matrices & Systems of Linear Equations
Chapter 2 Section 3 Arithmetic Operations on Matrices.
Matrices The Basics Vocabulary and basic concepts.
Lecture 7: Matrix-Vector Product; Matrix of a Linear Transformation; Matrix-Matrix Product Sections 2.1, 2.2.1,
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.
100’s of free ppt’s from library
3.8 Matrices.
1.3 Matrices and Matrix Operations.
4.1 Matrix Operations What you should learn: Goal1 Goal2 Add and subtract matrices, multiply a matrix by a scalar, and solve the matrix equations. Use.
1.3 Matrices and Matrix Operations. Definition A matrix is a rectangular array of numbers. The numbers in the array are called the entries in the matrix.
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,
1 C ollege A lgebra Systems and Matrices (Chapter5) 1.
Unit 3: Matrices.
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.
Company LOGO Chapter 1: Matrix, Determinant, System of linear equations Module 1: Matrix Natural Science Department Example 1: The following rectangular.
If A and B are both m × n matrices then the sum of A and B, denoted A + B, is a matrix obtained by adding corresponding elements of A and B. add these.
Prepared by Deluar Jahan Moloy Lecturer Northern University Bangladesh
Copyright © Cengage Learning. All rights reserved. 7 Linear Systems and Matrices.
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.
Matrices Section 2.6. Section Summary Definition of a Matrix Matrix Arithmetic Transposes and Powers of Arithmetic Zero-One matrices.
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.
1.3 Matrices and Matrix Operations. A matrix is a rectangular array of numbers. The numbers in the arry are called the Entries in the matrix. The size.
Copyright © Cengage Learning. All rights reserved. 2 SYSTEMS OF LINEAR EQUATIONS AND MATRICES.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
Matrices Digital Lesson. Copyright © by Houghton Mifflin Company, Inc. All rights reserved. 2 A matrix is a rectangular array of real numbers. Each entry.
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.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Precalculus Section 14.1 Add and subtract matrices Often a set of data is arranged in a table form A matrix is a rectangular.
Chapter 5: Matrices and Determinants Section 5.1: Matrix Addition.
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.
A very brief introduction to Matrix (Section 2.7) Definitions Some properties Basic matrix operations Zero-One (Boolean) matrices.
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.
Copyright © Cengage Learning. All rights reserved. 7 Matrices and Determinants.
Linear Algebra by Dr. Shorouk Ossama.
Matrices.
MTH108 Business Math I Lecture 20.
3.8 Matrices L Al-zaid Math1101.
Sections 2.4 and 2.5 Matrix Operations
MATRICES.
12-1 Organizing Data Using Matrices
Matrix Operations Free powerpoints at
Matrix Operations.
Matrix Operations.
Matrix Operations Free powerpoints at
What we’re learning today:
Matrix Multiplication
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Matrices and Systems of Equations 8.1
Matrix Operations SpringSemester 2017.
Section 7.4 Matrix Algebra.
Matrix Operations Free powerpoints at
WarmUp 2-3 on your calculator or on paper..
7.3 Matrices.
2. Matrix Algebra 2.1 Matrix Operations.
MATRICES MATRIX OPERATIONS.
Section 2.4 Matrices.
Matrices and Matrix Operations
MATRICES Operations with Matrices Properties of Matrix Operations
3.5 Perform Basic Matrix Operations
Matrix Operations SpringSemester 2017.
3.8 Matrices L Al-zaid Math1101.
Applied Discrete Mathematics Week 4: Functions
Presentation transcript:

Matrices and Matrix Operations Section 1.3 Matrices and Matrix Operations

MATRICES A matrix is a rectangular array of numbers. The numbers in the array are called entries. The size of a matrix is described by the number of rows and columns. Example: A 2 × 3 matrix

SCALARS A scalar is a (real) number.

ENTRIES AND THE GENERAL FORM OF A MATRIX The entry in row i and column j of matrix A is denoted by either ai j or (A)i j A general 3 × 2 matrix is given by

SQUARE MATRICES A is a square matrix of order n if it has n rows and n columns. The entries a1 1, a2 2, . . . , an n are said the be on the main diagonal of A. If A is a square matrix, then the trace of A, denoted by tr(A), is the sum of the entries on the main diagonal. If A is not square, the trace is undefined.

ROW AND COLUMN MATRICES Row and column matrices are of special importance, and it is common practice to denote them by boldface lowercase letters. A general 1 × n row matrix a and a general m × 1 column matrix b would be written as

EQUALITY OF MATRICES Two matrices are equal if they have the same size and corresponding entries are equal.

ADDITION AND SUBTRACTION OF MATRICES If A and B are matrices of the same size, then the sum A + B is the matrix obtained by adding the entries of B to the corresponding entries of A. The difference A − B is the matrix obtained by subtracting the entries of B to the corresponding entries of A. Matrices of different sizes cannot be added or subtracted.

SCALAR MULTIPLICATION If A is any matrix and c is any scalar, then the (scalar) product cA is the matrix obtained by multiplying each entry of A by c.

MATRIX MULTIPLICATION If A is an m×r matrix and B is an r×n matrix, then the (matrix) product AB is an m×n matrix with entries determined as follows. To find entry (AB)ij, single out row i from matrix A and column j from matrix B. Multiply the corresponding entries from the row and column together and then add up the resulting products.

MATRIX FORM OF A LINEAR SYSTEM Given: x + 2y = 1 x − y = 2 The matrix form of this linear system is Symbolically, we would write Ax = b. The matrix A is called the coefficient matrix.

TRANSPOSE OF A MATRIX The transpose of A, denoted by AT, is the matrix formed by interchanging the rows and columns of matrix A. NOTE: If the size of A is n×m, then the size of AT is m×n.