ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.

Slides:



Advertisements
Similar presentations
4.1 Introduction to Matrices
Advertisements

Applied Informatics Štefan BEREŽNÝ
Matrices A matrix is a rectangular array of quantities (numbers, expressions or function), arranged in m rows and n columns x 3y.
Algebraic, transcendental (i.e., involving trigonometric and exponential functions), ordinary differential equations, or partial differential equations...
SOLVING SYSTEMS OF LINEAR EQUATIONS. Overview A matrix consists of a rectangular array of elements represented by a single symbol (example: [A]). An individual.
Refresher: Vector and Matrix Algebra Mike Kirkpatrick Department of Chemical Engineering FAMU-FSU College of Engineering.
Mathematics. Matrices and Determinants-1 Session.
Chapter 9 Gauss Elimination The Islamic University of Gaza
MF-852 Financial Econometrics
Maths for Computer Graphics
Linear Algebraic Equations
Solution of Simultaneous Linear Algebraic Equations: Lecture (I)
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
Matrix Operations. Matrix Notation Example Equality of Matrices.
MECH300H Introduction to Finite Element Methods Lecture 2 Review.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 17 Solution of Systems of Equations.
Chapter 2 Matrices Definition of a matrix.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 15 Solution of Systems of Equations.
ECIV 520 Structural Analysis II Review of Matrix Algebra.
ECIV 301 Programming & Graphics Numerical Methods for Engineers REVIEW II.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 18 LU Decomposition and Matrix Inversion.
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
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:
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
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.
Chapter 2 Solving Linear Systems Matrix Definitions –Matrix--- Rectangular array/ block of numbers. –The size/order/dimension of a matrix: (The numbers.
ECON 1150 Matrix Operations Special Matrices
Presentation on Matrices and some special matrices In partial fulfillment of the subject Vector calculus and linear algebra ( ) Submitted by: Agarwal.
Dr. Mubashir Alam King Saud University. Outline Systems of Linear Equations (6.1) Matrix Arithmetic (6.2) Arithmetic Operations (6.2.1) Elementary Row.
CHAPTER 2 MATRIX. CHAPTER OUTLINE 2.1 Introduction 2.2 Types of Matrices 2.3 Determinants 2.4 The Inverse of a Square Matrix 2.5 Types of Solutions to.
ENM 503 Block 2 Lesson 7 – Matrix Methods
Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00.
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,
Lecture 28: Mathematical Insight and Engineering.
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.
Linear Algebra 1.Basic concepts 2.Matrix operations.
Linear algebra: matrix Eigen-value Problems Eng. Hassan S. Migdadi Part 1.
2009/9 1 Matrices(§3.8)  A matrix is a rectangular array of objects (usually numbers).  An m  n (“m by n”) matrix has exactly m horizontal rows, and.
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
Chapter 9 Gauss Elimination The Islamic University of Gaza
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.
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.
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:
A ij i = row j = column A [ A ] Definition 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
Lecture 1 Linear algebra Vectors, matrices. Linear algebra Encyclopedia Britannica:“a branch of mathematics that is concerned with mathematical structures.
Numerical Computation Lecture 6: Linear Systems – part II United International College.
A very brief introduction to Matrix (Section 2.7) Definitions Some properties Basic matrix operations Zero-One (Boolean) matrices.
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.
Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00.
1 Matrix Math ©Anthony Steed Overview n To revise Vectors Matrices.
MTH108 Business Math I Lecture 20.
Matrices and Vector Concepts
Linear Algebraic Equations and Matrices
Linear Algebra Lecture 2.
Matrices and vector spaces
Linear Algebraic Equations and Matrices
Linear independence and matrix rank
Lecture 11 Matrices and Linear Algebra with MATLAB
Review of Matrix Algebra
Numerical Computation and Optimization
RECORD. RECORD COLLABORATE: Discuss: Is the statement below correct? Try a 2x2 example.
Presented By Farheen Sultana Ist Year I SEM
Presentation transcript:

ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods

Objectives Introduction to Matrix Algebra Express System of Equations in Matrix Form Introduce Methods for Solving Systems of Equations Advantages and Disadvantages of each Method

Last Time Matrix Algebra Rectangular Array of Elements Represented by a single symbol [A]

Last Time Matrix Algebra Row 1 Row 3 Column 2Column m n x m Matrix

Last Time Matrix Algebra 3 rd Row 2 nd Column

Last Time Matrix Algebra 1 Row, m Columns Row Vector

Last Time Matrix Algebra n Rows, 1 Column Column Vector

Last Time Matrix Algebra If n = m Square Matrix e.g. n=m=5 Main Diagonal

Last Time Matrix Algebra Special Types of Square Matrices Symmetric: a ij = a ji

Last Time Matrix Algebra Diagonal: a ij = 0, i  j Special Types of Square Matrices

Last Time Matrix Algebra Identity: a ii =1.0 a ij = 0, i  j Special Types of Square Matrices

Last Time Matrix Algebra Upper Triangular Special Types of Square Matrices

Last Time Matrix Algebra Lower Triangular Special Types of Square Matrices

Last Time Matrix Algebra Banded Special Types of Square Matrices

Last Time Matrix Operating Rules - Equality [A] mxn =[B] pxq n=pm=qa ij =b ij

Last Time Matrix Operating Rules - Addition [C] mxn = [A] mxn +[B] pxq n=p m=q c ij = a ij +b ij

Last Time Multiplication by Scalar

Last Time Matrix Multiplication [A] n x m. [B] p x q = [C] n x q m=p

Last Time Matrix Multiplication

Last Time Operations - Transpose

Last Time Operations - Inverse [A][A] -1 [A] [A] -1 =[I] If [A] -1 does not exist [A] is singular

Last Time Operations - Trace Square Matrix tr[A] =  a ii

Equations in Matrix Form Consider

Linear Equations in Matrix Form

# Equations = # Unknowns = n Square Matrix n x n

Solution of Linear Equations Consider the system

Solution of Linear Equations

Express In Matrix Form Upper Triangular What is the characteristic? Solution by Back Substitution

Solution of Linear Equations Objective Can we express any system of equations in a form 0

Background Consider (Eq 1) (Eq 2) Solution 2*(Eq 1) (Eq 2) Solution !!!!!! Scaling Does Not Change the Solution

Background Consider (Eq 1) (Eq 2)-(Eq 1) Solution !!!!!! (Eq 1) (Eq 2) Solution Operations Do Not Change the Solution

Gauss Elimination Example Forward Elimination

Gauss Elimination -

Substitute 2 nd eq with new

Gauss Elimination -

Substitute 3rd eq with new

Gauss Elimination -

Substitute 3rd eq with new

Gauss Elimination