Matrices and systems of Equations. Definition of a Matrix * Rectangular array of real numbers m rows by n columns * Named using capital letters * First.

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

Copyright © Cengage Learning. All rights reserved.
4.1 Introduction to Matrices
1 Systems of Linear Equations & Matrices Sections 4.2 & 4.3 After today’s lesson, you will be able to Use terms associated with matrices. Set up and solve.
Maths for Computer Graphics
Linear System of Equations MGT 4850 Spring 2008 University of Lethbridge.
Solving systems using matrices
TRIVIA Click for Question What kind of matrix contains the coefficients and constants of a system of linear equations? An augmented matrix Click for:
Linear Systems and Matrices
Chapter 2 Section 3 Arithmetic Operations on Matrices.
Module 6 Matrices & Applications Chapter 26 Matrices and Applications I.
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 2 Systems of Linear Equations and Matrices Section 2.4 Multiplication of Matrices.
1 Systems of Linear Equations & Matrices Sections 4.2 & 4.3 After today’s lesson, you will be able to Use terms associated with matrices. Set up and solve.
Matrix Solution of Linear Systems The Gauss-Jordan Method Special Systems.
8.1 Matrix Solutions to Linear Systems Veronica Fangzhu Xing 3 rd period.
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
 Row and Reduced Row Echelon  Elementary Matrices.
Barnett/Ziegler/Byleen Finite Mathematics 11e1 Review for Chapter 4 Important Terms, Symbols, Concepts 4.1. Systems of Linear Equations in Two Variables.
Matrices King Saud University. If m and n are positive integers, then an m  n matrix is a rectangular array in which each entry a ij of the matrix is.
Copyright © Cengage Learning. All rights reserved. 7.4 Matrices and Systems of Equations.
Slide Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall.
Row rows A matrix is a rectangular array of numbers. We subscript entries to tell their location in the array Matrices are identified by their size.
8.1 Matrices and Systems of Equations. Let’s do another one: we’ll keep this one Now we’ll use the 2 equations we have with y and z to eliminate the y’s.
Chapter 6 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Matrix Solutions to Linear Systems.
Matrix Solutions to Linear Systems. 1. Write the augmented matrix for each system of linear equations.
Lesson 11-1 Matrix Basics and Augmented Matrices Objective: To learn to solve systems of linear equation using matrices.
Section 3.6 – Solving Systems Using Matrices
Lesson 13-1: Matrices & Systems Objective: Students will: State the dimensions of a matrix Solve systems using matrices.
Chapter 9 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Multiplicative Inverses of Matrices and Matrix Equations.
1 C ollege A lgebra Systems and Matrices (Chapter5) 1.
Section 9.4 Systems of Linear Equations: Matrices
Matrices.
MCV4U1 Matrices and Gaussian Elimination Matrix: A rectangular array (Rows x Columns) of real numbers. Examples: (3 x 3 Matrix) (3 x 2 Matrix) (2 x 2 Matrix)
Lesson 11-1 Matrix Basics and Augmented Matrices Objective: To learn to solve systems of linear equation using matrices.
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
Copyright © 2011 Pearson Education, Inc. Solving Linear Systems Using Matrices Section 6.1 Matrices and Determinants.
Matrices and Systems of Equations
Section 4Chapter 4. 1 Copyright © 2012, 2008, 2004 Pearson Education, Inc. Objectives Solving Systems of Linear Equations by Matrix Methods Define.
10.3 Systems of Linear Equations: Matrices. A matrix is defined as a rectangular array of numbers, Column 1Column 2 Column jColumn n Row 1 Row 2 Row 3.
Matrices and Systems of Equations
Meeting 19 System of Linear Equations. Linear Equations A solution of a linear equation in n variables is a sequence of n real numbers s 1, s 2,..., s.
3.6 Solving Systems Using Matrices You can use a matrix to represent and solve a system of equations without writing the variables. A matrix is a rectangular.
Chapter 1 Section 1.5 Matrix Operations. Matrices A matrix (despite the glamour of the movie) is a collection of numbers arranged in a rectangle or an.
Matrices Digital Lesson. Copyright © by Houghton Mifflin Company, Inc. All rights reserved. 2 A matrix is a rectangular array of real numbers. Each entry.
Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall Chapter 5 More Work with 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,
Table of Contents Matrices - Definition and Notation A matrix is a rectangular array of numbers. Consider the following matrix: Matrix B has 3 rows and.
Chapter 5: Matrices and Determinants Section 5.5: Augmented Matrix Solutions.
4.1 An Introduction to Matrices Katie Montella Mod. 6 5/25/07.
Matrices. Matrix - a rectangular array of variables or constants in horizontal rows and vertical columns enclosed in brackets. Element - each value in.
Chapter 4 Section 1 Organizing Data into Matrices.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
College Algebra Chapter 6 Matrices and Determinants and Applications
Multivariable Linear Systems and Row Operations
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
Gaussian Elimination and Gauss-Jordan Elimination
Solving Systems of Equations Using Matrices
Matrices and Systems of Equations 8.1
Introduction to Matrices
Gaussian Elimination and Gauss-Jordan Elimination
Matrices and Matrix Operations
Matrices.
Gaussian Elimination.
3.6 Multiply Matrices.
Matrices.
Matrices are identified by their size.
Presentation transcript:

Matrices and systems of Equations

Definition of a Matrix * Rectangular array of real numbers m rows by n columns * Named using capital letters * First subscript is row, second subscript is column

Terminology * A matrix with m rows and n columns is called a matrix of order m x n. A square matrix is a matrix with an equal number of rows and columns. Since the number of rows and columns are the same, it is said to have order n. * The main diagonal of a square matrix are the elements from the upper left to the lower right of the matrix. * A row matrix is a matrix that has only one row. * A column matrix is a matrix that has only one column. * A matrix with only one row or one column is called a vector.

Converting Systems of Linear Equations to Matrices Each equation in the system becomes a row. Each variable in the system becomes a column. The variables are dropped and the coefficients are placed into a matrix x + y - z = 13 x - 2y + z = 34 x + y - 2z = 9 x y z rhs []

Augmented Matrix: standard form of a matrix derived from a system of linear equations Coefficient Matrix: standard form of a matrix not including the constant terms x y z rhs [ ] x y z [ ]

Convert the following into augmented matrix x - z = 13 -2y + z = 34 -x + y = 9 -x + 2y - 6z = 1 x - y + 3z = 1 x + y - z = 4 4x +2y - z = 44 x - y + 3z = 9 x + 3y - z = 0 z = 1 -2y = 24 x = 6

Back-Substitution x-2y+3z=9 y+3z=5 z=2 { [] y + 3(2) = 5 y = -1 x - 2 (-1) + 3 (2) = 9 x - 2(-1) + 3(2) = 9 x =9 x=1 x=1, y=-1, z=2

Practice: Use back substitution to find the value of x, y, z X=2, y=-2, z=2X=-126, y=39, z=3 X=22, y=38, z=-7 X=89, y=23, z=7