1.5 Matricies.

Slides:



Advertisements
Similar presentations
4.1 Introduction to Matrices
Advertisements

Identity and Inverse Matrices
CSNB143 – Discrete Structure
Chapter Matrices Matrix Arithmetic
Matrices The Basics Vocabulary and basic concepts.
MATRICES. Matrices A matrix is a rectangular array of objects (usually numbers) arranged in m horizontal rows and n vertical columns. A matrix with m.
Fundamentals of matrices
MATRICES MATRIX OPERATIONS. About Matrices  A matrix is a rectangular arrangement of numbers in rows and columns. Rows run horizontally and columns run.
100’s of free ppt’s from library
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:
Solving Systems of Equations and Inequalities
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.
Lecture 7 Matrices CSCI – 1900 Mathematics for Computer Science Fall 2014 Bill Pine.
13.1 Matrices and Their Sums
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.
CSNB143 – Discrete Structure Topic 3 – Matrices. Learning Outcomes Students should understand all matrices operations. Students should be able to differentiate.
MATRICES MATRIX OPERATIONS. About Matrices  A matrix is a rectangular arrangement of numbers in rows and columns. Rows run horizontally and columns run.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
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.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Chapter 1 Section 1.6 Algebraic Properties of Matrix Operations.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Systems of Equations and Matrices Review of Matrix Properties Mitchell.
Precalculus Section 14.1 Add and subtract matrices Often a set of data is arranged in a table form A matrix is a rectangular.
Where do you sit?. What is a matrix? How do you classify matrices? How do you identify elements of a matrix?
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Introduction Types of Matrices Operations
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.
13.4 Product of Two Matrices
Matrices and Matrix Operations
12-1 Organizing Data Using Matrices
Matrix Operations Free powerpoints at
Matrix Operations.
Discrete Structures – CNS2300
Introduction to Matrices
Matrix Operations.
Matrix Operations Free powerpoints at
Linear Algebraic Equations and Matrices
Matrix Multiplication
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Matrix Operations Free powerpoints at
Warm-up a. Solve for k: 13 −5
7.3 Matrices.
MATRICES MATRIX OPERATIONS.
الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . 1 جمع المصفوفات وطرحها.
Introduction to Matrices
2. Matrix Algebra 2.1 Matrix Operations.
Multiplying Matrices.
Determinants.
MATRICES MATRIX OPERATIONS.
Unit 3: Matrices
MATRICES MATRIX OPERATIONS.
Section 2.4 Matrices.
2.2 Introduction to Matrices
MATRICES Operations with Matrices Properties of Matrix Operations
3.5 Perform Basic Matrix Operations
DRILL.
Chapter 4 Matrices & Determinants
MATRICES MATRIX OPERATIONS.
MATRICES MATRIX OPERATIONS.
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:

1.5 Matricies

A matrix is a rectangular array of numbers arranged in M horizontal rows and N vertical columns.   A is a 2x3 matrix 2 rows 3 columns

Location of an array element is noted by row and column. a11 indicates row 1 column 1 a12 indicates row 1 column 2 a13 indicates row 1 column 3 a21 indicates row 2 column 1 a22 indicates row 2 column 2 a23 indicates row 2 column 3

A = a12 = 3 row 1 column 2

Matrix Rules Addition Can only add matrices that have that have the same number of rows and columns. A = + B= = =

The result of the multiplication are the circled numbers. Can only multiply matrices if the number of columns in the first matrix is equal to the number of rows in the second matrix. row x col A is a 2 x 3 matrix B is a 3 x 2 matrix The multiplication result is the row of the first matrix by the column of the second matrix, in this example, a 2 x 2. A = x B = x Check if the numbers in the squares are the same, if so, you can multiply these matrices. The result of the multiplication are the circled numbers. 2 3 3 2

Multiply row of A to column of B A = X B = =

A matrix is square if it has the same number of rows as columns A zero matrix is a matrix with entries that are all zero.

Transpose A is a 2X3 matrix A= Transpose A into a 3X2 matrix AT =

Main diagonal Top left to bottom right

Symmetric matrix A matrix is called symmetric if it is square and equal to its transpose. A= AT

Skew Symmetric Skew symmetric is where the main diagonal is the same as the transpose main diagonal and all other numbers are opposite in location. A = AT

Boolean Matrix Operations (1’s and 0’s) ∨ means OR ∧ means AND A ∨ B = 1 if A or b, or both A and B = 1 A ∨ B = 0 only when both A and B =0 A ∨ B = C A = B= C=

A ∧ B =1 only when A = 1 and B = 1 A ∧ B = C A = B= C=

Boolean Product Can multiply matrices if the number of columns of the first matrix is equal to the number of rows in the second matrix. Boolean product of A and B is denoted A ⊙ B row X col row X col A is a 2 x 2 B is a 2 X 3 Number of columns of A = Number of rows of B. Result will be a 2 X 3 (row of first matrix, column of second matrix) A = ⊙ B= = =