Mech300 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Three Linear Algebraic Equations.

Slides:



Advertisements
Similar presentations
Linear Inverse Problems
Advertisements

Precalculus Lesson 7.2 Matrix Algebra 4/6/2017 8:43 PM
Chapter 4 Systems of Linear Equations; Matrices Section 6 Matrix Equations and Systems of Linear Equations.
© 2005 Baylor University Slide 1 Fundamentals of Engineering Analysis EGR 1302 Unit 1, Lecture B Approximate Running Time - 24 minutes Distance Learning.
Refresher: Vector and Matrix Algebra Mike Kirkpatrick Department of Chemical Engineering FAMU-FSU College of Engineering.
Mathematics. Matrices and Determinants-1 Session.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
ECIV 520 Structural Analysis II Review of Matrix Algebra.
ECIV 301 Programming & Graphics Numerical Methods for Engineers REVIEW II.
CALCULUS – II Matrix Multiplication by Dr. Eman Saad & Dr. Shorouk Ossama.
CE 311 K - Introduction to Computer Methods Daene C. McKinney
Copyright © Cengage Learning. All rights reserved. 7.6 The Inverse of a Square Matrix.
1 Chapter 3 Matrix Algebra with MATLAB Basic matrix definitions and operations were covered in Chapter 2. We will now consider how these operations are.
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
1.3 Matrices and Matrix Operations.
Chapter 2 Solving Linear Systems Matrix Definitions –Matrix--- Rectangular array/ block of numbers. –The size/order/dimension of a matrix: (The numbers.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley 7.1 Solving Systems of Two Equations.
MathematicalMarketing Slide 1.1 Linear Algebra Welcome to MAR 6658 Course Title Quantitative Methods in Marketing IV: Psychometric and Econometric Techniques.
ECON 1150 Matrix Operations Special Matrices
Matrix Algebra. Quick Review Quick Review Solutions.
1.1.2 INTRODUCTION TO SYSTEMS OF LINEAR EQUATIONS Chapter 1: Systems of Linear Equations and Matrices SWBAT: Redefine algebraic operations as Elementary.
Slide Chapter 7 Systems and Matrices 7.1 Solving Systems of Two Equations.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 7- 1.
ENM 503 Block 2 Lesson 7 – Matrix Methods
Review of Matrices Or A Fast Introduction.
Matrix. REVIEW LAST LECTURE Keyword Parametric form Augmented Matrix Elementary Operation Gaussian Elimination Row Echelon form Reduced Row Echelon form.
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.
8.1 Matrices & Systems of Equations
Copyright © 2011 Pearson, Inc. 7.2 Matrix Algebra.
1 C ollege A lgebra Systems and Matrices (Chapter5) 1.
1 Ch. 4 Linear Models & Matrix Algebra Matrix algebra can be used: a. To express the system of equations in a compact manner. b. To find out whether solution.
1. Inverse of A 2. Inverse of a 2x2 Matrix 3. Matrix With No Inverse 4. Solving a Matrix Equation 1.
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.
P1 RJM 06/08/02EG1C2 Engineering Maths: Matrix Algebra 1 EG1C2 Engineering Maths : Matrix Algebra Dr Richard Mitchell, Department of Cybernetics AimDescribe.
Examples of linear transformation matrices Some special cases of linear transformations of two-dimensional space R 2 are illuminating:dimensional Dimoffree.svgDimoffree.svg‎
Fundamentals of Engineering Analysis
Chapter 6 Systems of Linear Equations and Matrices Sections 6.3 – 6.5.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
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
Linear Algebra Chapter 2 Matrices.
Section 2.1 Determinants by Cofactor Expansion. THE DETERMINANT Recall from algebra, that the function f (x) = x 2 is a function from the real numbers.
12-2 MATRIX MULTIPLICATION MULTIPLY MATRICES BY USING SCALAR AND MATRIX MULTIPLICATION.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
10.4 Matrix Algebra. 1. Matrix Notation A matrix is an array of numbers. Definition Definition: The Dimension of a matrix is m x n “m by n” where m =
Copyright © Cengage Learning. All rights reserved. 8 Matrices and Determinants.
An Introduction to Matrix Algebra Math 2240 Appalachian State University Dr. Ginn.
College Algebra Chapter 6 Matrices and Determinants and Applications
Downhill product – Uphill product.
MTH108 Business Math I Lecture 20.
Chapter 4 Systems of Linear Equations; Matrices
Linear Algebra Lecture 2.
Review of Matrix Operations
Chapter 7 Matrix Mathematics
The Inverse of a Square Matrix
MATHEMATICS Matrix Multiplication
Multiplication of Matrices
Use Inverse Matrices to Solve Linear Systems
Lecture 11 Matrices and Linear Algebra with MATLAB
Multiplicative Inverses of Matrices and Matrix Equations
Fundamentals of Engineering Analysis
Matrices and Matrix Operations
ENM 500 Linear Algebra Review
Multiplication of Matrices
Sec 3.5 Inverses of Matrices
Linear Algebra Lecture 11.
3.5 Perform Basic Matrix Operations Algebra II.
Presentation transcript:

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Three Linear Algebraic Equations

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 2 Motivation The system of linear equations occur very frequently in engineering applications. For small numbers of equations (n < 4) equations can be solved manually by some simple techniques. However, for four or more equations, solutions become arduous and computers must be utilized. Historically, the inability to solve all but the smallest sets of equations by hand has limited the scope of problems addressed in many engineering applications.

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 3 An Example of Linear Equations in Engineering x i : mass in reactor i a i : properties and characteristics of the system b i : the forcing functions acting on the system, e.g., feed rate. Lumped variable system Distributed variable system

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 4 Mathematical Background – Matrix Notation Row vector: [B] = [b 1 b 2... b m ] A is a square matrix if n = m Column vector: {C}

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 5 Special Types of Square Matrices

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 6 Mathematical Background – Matrix Operating Rules Matrix addition:[C] = [A] ± [B] (A and B must have the same number of rows n and the same number of columns m) c ij = a ij ± b ij [A] ± [B] = [B] ± [A] ([A][B])[C] = [A]([B][C]) ([A]([B] + [C]) = [A][B] + [A][C] or ([A] + [B])[C] = [A][C] + [B][C] [A][B] ≠ [B][A] Matrix multiplication:[C] = [A][B]

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 7 Mathematical Background – Matrix Operating Rules Inverse Matrix:[A][A] -1 = [A] -1 [A] = [I] a non-square matrix can’t have an inverse not every square matrix has an inverse Transpose of a matrix: [B] = [A] T b ij = c ji Trace of a matrix: tr [A] = Augmentation of a matrix: addition of column(s) to the original matrix Example:

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 8 Linear Algebraic Equations in Matrix Form [A]{X} = {B} {B} T = {X} T = [A] -1 [A]{X} = [A] -1 {B} {X} = [A] -1 {B}

Mech300 Numerical Methods, Hong Kong University of Science and Technology. 9 Overall Structure