Example: bankruptcy

Matrix Algebra for Engineers - Hong Kong University of ...

Matrix Algebra for EngineersLecture Notes forJeffrey R. ChasnovThe Hong Kong University of Science and TechnologyDepartment of MathematicsClear Water Bay, KowloonHong KongCopyrightc 2018, 2019 by Jeffrey Robert ChasnovThis work is licensed under the Creative Commons Attribution Hong Kong License. To view a copy of thislicense, visit or send a letter to Creative Commons, 171 SecondStreet, Suite 300, San Francisco, California, 94105, the promotional video on YouTubeThese are my lecture notes for my online Coursera course, Matrix Algebra for Engineers . I havedivided these notes into chapters called Lectures, with each Lecture corresponding to a video onCoursera.

The mathematics in this matrix algebra course is at the level of an advanced high school student, but typically students would take this course after completing a university-level single variable calculus course. There are no derivatives and integrals in this course, but student’s are expected to …

Tags:

  Matrix, Algebra, Matrix algebra

Information

Domain:

Source:

Link to this page:

Please notify us if you found a problem with this document:

Other abuse

Advertisement

Transcription of Matrix Algebra for Engineers - Hong Kong University of ...

1 Matrix Algebra for EngineersLecture Notes forJeffrey R. ChasnovThe Hong Kong University of Science and TechnologyDepartment of MathematicsClear Water Bay, KowloonHong KongCopyrightc 2018, 2019 by Jeffrey Robert ChasnovThis work is licensed under the Creative Commons Attribution Hong Kong License. To view a copy of thislicense, visit or send a letter to Creative Commons, 171 SecondStreet, Suite 300, San Francisco, California, 94105, the promotional video on YouTubeThese are my lecture notes for my online Coursera course, Matrix Algebra for Engineers . I havedivided these notes into chapters called Lectures, with each Lecture corresponding to a video onCoursera.

2 I have also uploaded all my Coursera videos to YouTube, and links are placed at the top ofeach are problems at the end of each lecture chapter and I have tried to choose problems thatexemplify the main idea of the lecture. Students taking a formal University course in Matrix or linearalgebra will usually be assigned many more additional problems, but here I follow the philosophythat less is more. I give enough problems for students to solidify their understanding of the material,but not too many problems that students feel overwhelmed and drop out.

3 I do encourage students toattempt the given problems, but if they get stuck, full solutions can be found in the are also additional problems at the end of coherent sections that are given as practice quizzeson the Coursera platform. Again, students should attempt these quizzes on the platform, but if astudent has trouble obtaining a correct answer, full solutions are also found in the mathematics in this Matrix Algebra course is at the level of an advanced high school student, buttypically students would take this course after completing a University -level single variable calculuscourse.

4 There are no derivatives and integrals in this course, but student s are expected to have acertain level of mathematical maturity. Nevertheless, anyone who wants to learn the basics of matrixalgebra is welcome to ChasnovHong KongJuly 2018ivContentsI Matrices11 Definition of a matrix52 Addition and multiplication of matrices73 Special matrices9 Practice quiz: Matrix definitions114 Transpose matrix135 Inner and outer products156 Inverse matrix17 Practice quiz: Transpose and inverses197 Orthogonal matrices218 Rotation matrices239 Permutation matrices25 Practice quiz.

5 Orthogonal matrices27II Systems of Linear Equations2910 Gaussian elimination3311 Reduced row echelon form3712 Computing inverses39 Practice quiz: Gaussian elimination4113 Elementary matrices4314 LU decomposition45vviCONTENTS15 Solving (LU)x = b47 Practice quiz: LU decomposition51 III Vector Spaces5316 Vector spaces5717 Linear independence5918 Span, basis and dimension61 Practice quiz: Vector space definitions6319 Gram-Schmidt process6520 Gram-Schmidt process example67 Practice quiz: Gram-Schmidt process6921 Null space7122 Application of the null space7523 Column space7724 Row space, left null space and rank79 Practice quiz: Fundamental subspaces8125 Orthogonal projections8326 The least-squares problem8527 Solution of the least-squares problem87 Practice quiz: Orthogonal projections91IV Eigenvalues and Eigenvectors9328 Two-by-two and three-by-three determinants9729 Laplace expansion9930 Leibniz formula10331 Properties of a determinant105 Practice quiz.

6 Determinants10732 The eigenvalue problem10933 Finding eigenvalues and eigenvectors (1)111 CONTENTSvii34 Finding eigenvalues and eigenvectors (2)113 Practice quiz: The eigenvalue problem11535 Matrix diagonalization11736 Matrix diagonalization example11937 Powers of a matrix12138 Powers of a Matrix example123 Practice quiz: Matrix diagonalization125 Appendix127A Problem and practice quiz solutions129viiiCONTENTSWeek IMatrices13In this week s lectures, we learn about matrices. Matrices are rectangular arrays of numbers orother mathematical objects and are fundamental to engineering mathematics.

7 We will define matricesand how to add and multiply them, discuss some special matrices such as the identity and zero Matrix ,learn about transposes and inverses, and define orthogonal and permutation 1 Definition of a matrixView this lecture on YouTubeAnm-by-nmatrix is a rectangular array of numbers (or other mathematical objects) withmrowsandncolumns. For example, a two-by-two Matrix A, with two rows and two columns, looks likeA=(a bc d).The first row has elementsaandb, the second row has elementscandd. The first column has elementsaandc; the second column has elementsbandd.

8 As further examples, two-by-three and three-by-twomatrices look likeB=(a b cd e f),C= a db ec f .Of special importance are column matrices and row matrices. These matrices are also called column vector is in generaln-by-one and the row vector is one-by-n. For example, whenn=3,we would write a column vector asx= abc ,and a row vector asy=(a b c).A useful notation for writing a generalm-by-nmatrix A isA= a11a12 a1na21a22 amn .Here, the Matrix element of A in theith row and thejth column is denoted 1. DEFINITION OF A MATRIXP roblems for Lecture diagonal of a Matrix A are the entriesaijwherei= ) Write down the three-by-three Matrix with ones on the diagonal and zeros ) Write down the three-by-four Matrix with ones on the diagonal and zeros ) Write down the four-by-three Matrix with ones on the diagonal and zeros to the ProblemsLecture 2 Addition and multiplication ofmatricesView this lecture on YouTubeMatrices can be added only if they have the same dimension.

9 Addition proceeds element by example,(a bc d)+(e fg h)=(a+e b+fc+g d+h).Matrices can also be multiplied by a scalar. The rule is to just multiply every element of the example,k(a bc d)=(ka kbkc kd).Matrices (other than the scalar) can be multiplied only if the number of columns of the left matrixequals the number of rows of the right Matrix . In other words, anm-by-nmatrix on the left can onlybe multiplied by ann-by-kmatrix on the right. The resulting Matrix will bem-by-k. Evidently, matrixmultiplication is generally not commutative. We illustrate multiplication using two 2-by-2 matrices:(a bc d)(e fg h)=(ae+bg a f+bhce+dg c f+dh),(e fg h)(a bc d)=(ae+c f be+d fag+ch bg+dh).

10 First, the first row of the left Matrix is multiplied against and summed with the first column of the rightmatrix to obtain the element in the first row and first column of the product Matrix . Second, the firstrow is multiplied against and summed with the second column. Third, the second row is multipliedagainst and summed with the first column. And fourth, the second row is multiplied against andsummed with the second general, an element in the resulting product Matrix , say in rowiand columnj, is obtained bymultiplying and summing the elements in rowiof the left Matrix with the elements in columnjofthe right Matrix .


Related search queries