MT411 Robotic Engineering Asian Institution of Technology (AIT) Chapter 1 Introduction to Matrix Narong Aphiratsakun, D.Eng.

Slides:



Advertisements
Similar presentations
2.3 Modeling Real World Data with Matrices
Advertisements

Matrices A matrix is a rectangular array of quantities (numbers, expressions or function), arranged in m rows and n columns x 3y.
Matrices & Systems of Linear Equations
Maths for Computer Graphics
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
Intro to Matrices Don’t be scared….
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.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
4.2 Operations with Matrices Scalar multiplication.
Matrix Entry or element Rows, columns Dimensions Matrix Addition/Subtraction Scalar Multiplication.
Chapter 4 Matrices By: Matt Raimondi.
Row 1 Row 2 Row 3 Row m Column 1Column 2Column 3 Column 4.
Overview Definitions Basic matrix operations (+, -, x) Determinants and inverses.
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.
Prepared by Deluar Jahan Moloy Lecturer Northern University Bangladesh
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
 6. Use matrices to represent and manipulate data, e.g., to represent payoffs or incidence relationships related in a network.  7. Multiply matrices.
3.4 Solution by Matrices. What is a Matrix? matrix A matrix is a rectangular array of numbers.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
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.
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.
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:
3.5 Perform Basic Matrix Operations Add Matrices Subtract Matrices Solve Matric equations for x and y.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Precalculus Section 14.1 Add and subtract matrices Often a set of data is arranged in a table form A matrix is a rectangular.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
Ch. 12 Vocabulary 1.) matrix 2.) element 3.) scalar 4.) scalar multiplication.
Section 6-2: Matrix Multiplication, Inverses and Determinants There are three basic matrix operations. 1.Matrix Addition 2.Scalar Multiplication 3.Matrix.
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.
Matrices. Matrix A matrix is an ordered rectangular array of numbers. The entry in the i th row and j th column is denoted by a ij. Ex. 4 Columns 3 Rows.
1 Matrix Math ©Anthony Steed Overview n To revise Vectors Matrices.
College Algebra Chapter 6 Matrices and Determinants and Applications
MTH108 Business Math I Lecture 20.
13.4 Product of Two Matrices
Linear Algebraic Equations and Matrices
MATRICES.
12-1 Organizing Data Using Matrices
Multiplying Matrices.
Linear Algebra Lecture 2.
Chapter 7 Matrix Mathematics
Unit 1: Matrices Day 1 Aug. 7th, 2012.
Linear Algebraic Equations and Matrices
Matrix Operations.
Matrix Operations SpringSemester 2017.
Section 7.4 Matrix Algebra.
Multiplying Matrices.
WarmUp 2-3 on your calculator or on paper..
7.3 Matrices.
الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . الوحدة السابعة : المصفوفات . تنظيم البيانات فى مصفوفات . 1 جمع المصفوفات وطرحها.
2.2 Introduction to Matrices
MATRICES Operations with Matrices Properties of Matrix Operations
Multiplying Matrices.
Matrix Algebra.
3.5 Perform Basic Matrix Operations
3.6 Multiply Matrices.
Chapter 4 Matrices & Determinants
1.8 Matrices.
Matrix Operations Ms. Olifer.
Matrix Operations SpringSemester 2017.
1.8 Matrices.
Multiplying Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Multiplying Matrices.
Introduction to Matrices
Multiplying Matrices.
Presentation transcript:

MT411 Robotic Engineering Asian Institution of Technology (AIT) Chapter 1 Introduction to Matrix Narong Aphiratsakun, D.Eng

Matrix

Matrix: Addition Two matrices of the same order can be added or subtracted.

Matrix: Scalar Multiplication A matrix is multiplied by scalar, every element of the matrix is multiplied by that scalar.

Matrix: Multiplication Two matrices can be multiplied if the number of rows in B is equal to number of column in A. In general

Matrix: Multiplication (3 by 3)

Matrix: Multiplication (4 by 4) If [ a*A+b*E+c*I+d*M, a*B+b*F+c*J+d*N, a*C+b*G+c*K+d*O, a*D+b*H+c*L+d*P e*A+f*E+g*I+h*M, e*B+f*F+g*J+h*N, a*C+f*G+g*K+h*O, e*D+f*H+g*L+h*P i*A+j*E+k*I+l*M, i*B+j*F+k*J+l*N, a*C+j*G+k*K+l*O, i*D+j*H+k*L+l*P m*A+n*E+o*I+p*M, m*B+n*F+o*J+p*N, a*C+n*G+o*K+p*O, m*D+n*H+o*L+p*P] A = [a b c d; e f g h; i j k l; m n o p]; B = [A B C D; E F G H; I J K L; M N O P]; A*B=

Matrix: Transpose The transpose of matrix A is obtained by writing the rows of A in order, as columns.

Matrix: Identity (unity) The matrix is called identity or unity if Note: Transpose of a unity matrix is a unity matrix (I)

Matrix: Inversion (2x2 Matrix) Inverse matrix will exist if matrix A is square matrix and non singular. Singular : when the determinant is zero Note: AA -1 = I

Matrix: Inversion (3x3 Matrix)

Examples 1. Addition 2. Scale

Examples 3A. Multiplication

Examples 3B. Multiplication

Examples 4. Transpose

Examples 5a. Inverse

Examples 5b. Inverse

Matrix: Equation to Matrix Assume equations are given Above equations can be view as matrix form as

Examples 6. Calculate x 1, y 1 If x = 5 and y =4

Examples with MATLAB Addition : A+B Subtraction : A-B Scale and Multiplication : 5*A Identity : eye(matrix size: n) Transpose : A.’ Inverse : inv(A) Dimension : size(A)