Vectors, Matrices and their Products Hung-yi Lee.

Slides:



Advertisements
Similar presentations
Matrices A matrix is a rectangular array of quantities (numbers, expressions or function), arranged in m rows and n columns x 3y.
Advertisements

Matrices & Systems of Linear Equations
Maths for Computer Graphics
Matrices. Special Matrices Matrix Addition and Subtraction Example.
Matrices MSU CSE 260.
Matrices The Basics Vocabulary and basic concepts.
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.
100’s of free ppt’s from library
CE 311 K - Introduction to Computer Methods Daene C. McKinney
3.8 Matrices.
4.2 Operations with Matrices Scalar multiplication.
Compiled By Raj G. Tiwari
ECON 1150 Matrix Operations Special Matrices
Little Linear Algebra Contents: Linear vector spaces Matrices Special Matrices Matrix & vector Norms.
Matrix Algebra. Quick Review Quick Review Solutions.
Overview Definitions Basic matrix operations (+, -, x) Determinants and inverses.
Copyright © 2011 Pearson, Inc. 7.2 Matrix Algebra.
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.
Company LOGO Chapter 1: Matrix, Determinant, System of linear equations Module 1: Matrix Natural Science Department Example 1: The following rectangular.
CHAPTER 2 MATRICES 2.1 Operations with Matrices Matrix
Chapter 6 Systems of Linear Equations and Matrices Sections 6.3 – 6.5.
Relations, Functions, and Matrices Mathematical Structures for Computer Science Chapter 4 Copyright © 2006 W.H. Freeman & Co.MSCS Slides Relations, Functions.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
Meeting 18 Matrix Operations. Matrix If A is an m x n matrix - that is, a matrix with m rows and n columns – then the scalar entry in the i th row and.
Matrices: Simplifying Algebraic Expressions Combining Like Terms & Distributive Property.
1.3 Solutions of Linear Systems
1.3 Matrices and Matrix Operations. A matrix is a rectangular array of numbers. The numbers in the arry are called the Entries in the matrix. The size.
Copyright © Cengage Learning. All rights reserved. 2 SYSTEMS OF LINEAR EQUATIONS AND MATRICES.
Algebra Matrix Operations. Definition Matrix-A rectangular arrangement of numbers in rows and columns Dimensions- number of rows then columns Entries-
MATRICES Operations with Matrices Properties of Matrix Operations
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.
Unit 3: Matrices. Matrix: A rectangular arrangement of data into rows and columns, identified by capital letters. Matrix Dimensions: Number of rows, m,
Systems of Equations and Matrices Review of Matrix Properties Mitchell.
Matrix Algebra Definitions Operations Matrix algebra is a means of making calculations upon arrays of numbers (or data). Most data sets are matrix-type.
Matrices. Variety of engineering problems lead to the need to solve systems of linear equations matrixcolumn vectors.
2.1 Matrix Operations 2. Matrix Algebra. j -th column i -th row Diagonal entries Diagonal matrix : a square matrix whose nondiagonal entries are zero.
Linear Algebra by Dr. Shorouk Ossama.
MTH108 Business Math I Lecture 20.
Matrices and Vector Concepts
Matrices and Matrix Operations
MATRICES.
12-1 Organizing Data Using Matrices
Matrix Operations Free powerpoints at
Linear Algebra review (optional)
Matrix Operations.
Unit 1: Matrices Day 1 Aug. 7th, 2012.
Matrix Operations.
Matrix Operations Free powerpoints at
MATHEMATICS Matrix Multiplication
What we’re learning today:
Matrix Operations Monday, August 06, 2018.
Matrix Operations.
Matrix Operations SpringSemester 2017.
Matrix Operations Free powerpoints at
WarmUp 2-3 on your calculator or on paper..
7.3 Matrices.
(High School) Vector 李宏毅 Hung-yi Lee.
2. Matrix Algebra 2.1 Matrix Operations.
MATRICES MATRIX OPERATIONS.
Review of Matrix Algebra
Section 2.4 Matrices.
MATRICES Operations with Matrices Properties of Matrix Operations
3.5 Perform Basic Matrix Operations
Linear Algebra review (optional)
1.8 Matrices.
Matrix Operations SpringSemester 2017.
1.8 Matrices.
3.5 Perform Basic Matrix Operations Algebra II.
Presentation transcript:

Vectors, Matrices and their Products Hung-yi Lee

Learning Target A system of linear equations: Describe a system of linear equations by Matrix-Vector Products

Vectors, Matrices and their Products Vector

Vectors A vector v is a set of numbers Column vector Row vector In this course, the term vector refers to a column vector unless being explicitly mentioned otherwise. v=

Vectors components: the entries of a vector. The i-th component of vector v refers to v i v 1 =1, v 2 =2, v 3 =3 If a vector only has less than three components, you can visualize it. v= v v1v1 v2v2 sian_coordinates_2d_3d#vector3D v v1v1 v2v2 v3v3

Scalar Multiplication

Vector Addition sian_coordinates_2d_3d#vector3D

Special Vectors Can be any size

Vector Set A vector set can contain infinite elements A vector set with 4 elements ……

Vector Set R n : We denote the set of all vectors with n entries by R n.

Vectors, Matrices and their Products Matrix

A matrix is a set of vectors

Matrix If the matrix has m rows and n columns, we say the size of the matrix is m by n, written m x n The matrix is called square if m=n We use M mxn to denote the set that contains all matrices whose size is m x n 2 rows 3 columns 3 rows 2 columns 2 X 3 3 X 2 先 Row 再 Column

Matrix Index of component: the scalar in the i-th row and j-th column is called (i,j)-entry of the matrix 先 Row 再 Column (1,2)-entry (3,1)-entry (3,3)-entry

Matrix Two matrices with the same size can add or subtract. Matrix can multiply by a scalar

Zero Matrix zero matrix: matrix with all zero entries, denoted by O (any size) or O m×n. For example, a 2-by-3 zero matrix can be denoted Identity matrix: must be square 對角線是 1, 其它都是 0 Sometimes I n is simply written as I (any size).

Properties A, B, C are mxn matrices, and s and t are scalars A + B = B + A (A + B) + C = A + (B + C) (st)A = s(tA) s(A + B) = sA + sB (s+t)A = sA + tA

Transpose (1,2) (2,1) (3,2) (2,3) Transpose 以左上到右下的對角線為軸 進行翻轉

Transpose

Vectors, Matrices and their Products Matrix-Vector Products

Matrix-Vector Product m x n

Matrix-Vector Product Linear System

Row Aspect

Column Aspect

Example A Row Aspect Column Aspect Row 1 Row 2 column 1 column 2

Matrix-vector Product The size of matrix and vector should be matched.

Properties of Matrix-vector Product

……

Concluding Remarks Column Aspect Row Aspect