MECH300H Introduction to Finite Element Methods Lecture 2 Review.

Slides:



Advertisements
Similar presentations
4.1 Introduction to Matrices
Advertisements

Chapter 2 Solutions of Systems of Linear Equations / Matrix Inversion
Maths for Computer Graphics
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 30 Numerical Integration & Differentiation.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 12 System of Linear Equations.
Matrix Operations. Matrix Notation Example Equality of Matrices.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 14 Elimination Methods.
ECIV 520 Structural Analysis II Review of Matrix Algebra.
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 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
1 Chapter 7 NUMERICAL INTEGRATION. 2 PRELIMINARIES We use numerical integration when the function f(x) may not be integrable in closed form or even in.
MATRICES AND DETERMINANTS
ECON 1150 Matrix Operations Special Matrices
Barnett/Ziegler/Byleen Finite Mathematics 11e1 Review for Chapter 4 Important Terms, Symbols, Concepts 4.1. Systems of Linear Equations in Two Variables.
Matrix Algebra. Quick Review Quick Review Solutions.
Review of Matrices Or A Fast Introduction.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
Copyright © 2011 Pearson, Inc. 7.2 Matrix Algebra.
Matrices Addition & Subtraction Scalar Multiplication & Multiplication Determinants Inverses Solving Systems – 2x2 & 3x3 Cramer’s Rule.
Lecture 28: Mathematical Insight and Engineering.
Unit 6 : Matrices.
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.
Linear Algebra 1.Basic concepts 2.Matrix operations.
AIM: How do we perform basic matrix operations? DO NOW:  Describe the steps for solving a system of Inequalities  How do you know which region is shaded?
Lecture 8 Matrix Inverse and LU Decomposition
4.4 Identify and Inverse Matrices Algebra 2. Learning Target I can find and use inverse matrix.
MECH345 Introduction to Finite Element Methods Chapter 1 Numerical Methods - Introduction.
Systems of Equations and Inequalities Ryan Morris Josh Broughton.
Sec 4.1 Matrices.
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.
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,
Introduction to Financial Modeling MGT 4850 Spring 2008 University of Lethbridge.
Linear System of Simultaneous Equations Warm UP First precinct: 6 arrests last week equally divided between felonies and misdemeanors. Second precinct:
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Do Now: Perform the indicated operation. 1.). Algebra II Elements 11.1: Matrix Operations HW: HW: p.590 (16-36 even, 37, 44, 46)
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
2.3 MODELING REAL WORLD DATA WITH MATRICES By the end of the section students will be able to add, subtract, and multiply matrices of various sizes. Students.
13.3 Product of a Scalar and a Matrix.  In matrix algebra, a real number is often called a.  To multiply a matrix by a scalar, you multiply each entry.
Numerical Computation Lecture 6: Linear Systems – part II United International College.
Downhill product – Uphill product.
MTH108 Business Math I Lecture 20.
12-1 Organizing Data Using Matrices
Multiplying Matrices.
Linear Algebra review (optional)
Linear Algebra Lecture 2.
Chapter 7 Matrix Mathematics
Unit 1: Matrices Day 1 Aug. 7th, 2012.
Linear independence and matrix rank
Matrix Operations SpringSemester 2017.
Section 7.4 Matrix Algebra.
Multiplying Matrices.
7.3 Matrices.
Solving Linear Systems Using Inverse Matrices
Lecture 11 Matrices and Linear Algebra with MATLAB
Chapter 4 Systems of Linear Equations; Matrices
Unit 3: Matrices
Review of Matrix Algebra
Fundamentals of Engineering Analysis
RECORD. RECORD COLLABORATE: Discuss: Is the statement below correct? Try a 2x2 example.
Multiplying Matrices.
Linear Algebra Lecture 11.
1.8 Matrices.
Matrix Operations SpringSemester 2017.
1.8 Matrices.
Multiplying Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Multiplying Matrices.
Multiplying Matrices.
Presentation transcript:

MECH300H Introduction to Finite Element Methods Lecture 2 Review

Matrix Algebra Row and column vectors Addition and Subtraction – must have the same dimensions Multiplication – with scalar, with vector, with matrix Transposition – Differentiation and Integration

Matrix Algebra Determinant of a Matrix: Matrix inversion - Important Matrices diagonal matrix identity matrix zero matrix eye matrix

Numerical Integration Calculate: Newton – Cotes integration Trapezoidal rule – 1 st order Newton-Cotes integration Trapezoidal rule – multiple application

Numerical Integration Calculate: Newton – Cotes integration Simpson 1/3 rule – 2 nd order Newton-Cotes integration

Numerical Integration Calculate: Gaussian Quadrature Trapezoidal Rule : Gaussian Quadrature : Chooseaccording to certain criteria

Numerical Integration Calculate: Gaussian Quadrature 2pt Gaussian Quadrature 3pt Gaussian Quadrature Let:

Numerical Integration - Example Calculate: Trapezoidal rule Simpson 1/3 rule 2pt Gaussian quadrature Exact solution

Linear System Solver Solve: Gaussian Elimination: forward elimination + back substitution Example:

Linear System Solver Solve: Gaussian Elimination: forward elimination + back substitution Pseudo code: Forward elimination: Back substitution: Do k = 1, n-1 Do i = k+1,n Do j = k+1, n Do ii = 1, n-1 i = n – ii sum = 0 Do j = i+1, n sum = sum +