With an immediate use for it

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

Lesson 12.2 Matrix Multiplication. 3 Row and Column Order The rows in a matrix are usually indexed 1 to m from top to bottom. The columns are usually.
Section 4.2 – Multiplying Matrices Day 2
Chapter 4.1 Mathematical Concepts
Chapter 4.1 Mathematical Concepts. 2 Applied Trigonometry Trigonometric functions Defined using right triangle  x y h.
CSCE 590E Spring 2007 Basic Math By Jijun Tang. Applied Trigonometry Trigonometric functions  Defined using right triangle  x y h.
Matrices The Basics Vocabulary and basic concepts.
Table of Contents Matrices - Multiplication Assume that matrix A is of order m  n and matrix B is of order p  q. To determine whether or not A can be.
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 Operations with Matrices Scalar multiplication.
1 Matrix Math ©Anthony Steed Overview n To revise Vectors Matrices n New stuff Homogenous co-ordinates 3D transformations as matrices.
MATRICES Adapted from presentation found on the internet. Thank you to the creator of the original presentation!
Everything Matrices All the other tricks without all the hassles.
Matrix Algebra. Quick Review Quick Review Solutions.
Chapter 7 Notes Honors Pre-Calculus. 7.1/7.2 Solving Systems Methods to solve: EXAMPLES: Possible intersections: 1 point, 2 points, none Elimination,
Mathematics for Computer Graphics. Lecture Summary Matrices  Some fundamental operations Vectors  Some fundamental operations Geometric Primitives:
4.4 & 4.5 Notes Remember: Identity Matrices: If the product of two matrices equal the identity matrix then they are inverses.
Chapter 4 Matrices By: Matt Raimondi.
4.2 An Introduction to Matrices Algebra 2. Learning Targets I can create a matrix and name it using its dimensions I can perform scalar multiplication.
Chapter 8 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Matrix Operations and Their Applications.
1 What you will learn  We need to review several concepts from Algebra II: Solving a system of equations graphically Solving a system of equations algebraically.
Overview Definitions Basic matrix operations (+, -, x) Determinants and inverses.
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.
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.
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.
9.2 Using Properties of Matrices
Linear System of Simultaneous Equations Warm UP First precinct: 6 arrests last week equally divided between felonies and misdemeanors. Second precinct:
8.2 Operations With Matrices
Matrices: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
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.
Honors Geometry.  We learned how to set up a polygon / vertex matrix  We learned how to add matrices  We learned how to multiply matrices.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Notes Over 4.2 Finding the Product of Two Matrices Find the product. If it is not defined, state the reason. To multiply matrices, the number of columns.
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.
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.
Designed by Victor Help you improve MATRICES Let Maths take you Further… Know how to write a Matrix, Know what is Order of Matrices,
MATRICES MATRIX Multiplication. Warm-up Subtract (don’t forget to KCC):
College Algebra Chapter 6 Matrices and Determinants and Applications
MTH108 Business Math I Lecture 20.
13.4 Product of Two Matrices
Matrices and Matrix Operations
4-3 Warm Up Lesson Presentation Lesson Quiz
Unit 1: Matrices Day 1 Aug. 7th, 2012.
Finding the Inverse of a Matrix
Matrix Multiplication
Warm Up Use scalar multiplication to evaluate the following:
Multiplying Matrices.
WarmUp 2-3 on your calculator or on paper..
Matrix Algebra.
MATRICES MATRIX OPERATIONS.
4-4 Geometric Transformations with Matrices
Math-2 (honors) Matrix Algebra
MATRICES MATRIX OPERATIONS.
Unit 3: Matrices
MATRICES MATRIX OPERATIONS.
Multiplying Matrices.
Matrix Algebra.
3.6 Multiply Matrices.
Linear Algebra review (optional)
4-3 Warm Up Lesson Presentation Lesson Quiz
MATRICES MATRIX OPERATIONS.
MATRICES MATRIX OPERATIONS.
Transformations with Matrices
Multiplying Matrices.
Multiplying Matrices.
Matrix Multiplication Sec. 4.2
Multiplying Matrices.
Presentation transcript:

With an immediate use for it Multiplying Matrices With an immediate use for it

Vocabulary Identity Matrix: a diagonal matrix with 1 for every entry along the diagonal. Any time you multiply an identity matrix times another matrix, or another matrix times an identity matrix, you get the other matrix. Inverse matrix: any time you multiply a matrix by its inverse you get the identity matrix.

A little notation Matrices are usually named by a capital letter. For instance, matrix A. Scalar multiplication of a matrix can be implied just like in a normal expression. For instance, 4A means 4 times matrix A. Other operations can also be implied just like they were normal variables. E.g., 2A + 3B or 4A*B To identify a specific entry in a matrix, use subscripts Arc. E.G. A12 would be matrix A, row 1, column 2.

How to Multiply Matrices **Remember, the number of columns in the first matrix must equal the number of rows in the second matrix.** Multiply the first row of the first matrix by the first column of the second matrix. Add the results together. Put your answer in the first row, first column of the answer matrix. Repeat this for every possible combination of rows and columns.

Actually… It’s easier to see it.

Dealing with Data Whenever you put points into a matrix, you always put the x coordinates in the first row and the y coordinates in the second row. Usually, you list the points in the same order they are given to you. If you multiply two data matrices together, then the rows of the answer matrix will have the same meaning as the rows of the first matrix, and the columns of the answer matrix will have the same meaning as the columns of the second matrix.

Geometric Transformations Any polygon can be represented with a 2xn matrix, where n is the number of sides in the polygon. There is a set of seven special 2x2 matrices that, when multiplied to the 2xn polygon matrix, will transform the polygon in the coordinate plane. You can either memorize these 7, or you can learn to figure out which is which on the fly.

The Seven Identity Reflect y-axis Reflect x-axis Reflect Origin Reflect y=x Rotate 270° Rotate 90° Rotate 180°

Let’s See it!