FALL 2011, LECTURE 1 (9/8/11) This is subject to revision. Current version: Thu, Sep 8, 1:00 PM

Size: px
Start display at page:

Download "FALL 2011, LECTURE 1 (9/8/11) This is subject to revision. Current version: Thu, Sep 8, 1:00 PM"

Transcription

1 18700 FALL 2011, LECTURE 1 (9/8/11) TRAVIS SCHEDLER This is subject to revision Current version: Thu, Sep 8, 1:00 PM Abstract In this lecture, I will broadly sketch what linear algebra is and why we should study it I will also give some picture of the organization of the course 1 What is linear algebra? Linear algebra is the mathematical study of linear relationships Recall that a linear function f is one satisfying (101) (102) f(x + y) = f(x) + f(y) f(ax) = af(x), a R Here R denotes the real numbers For instance, f could be a function f : R R whose graph is a line: More generally, f could be a function of the plane f : R 2 R 2, for instance, the 90-degree counterclockwise rotation function, f(x, y) = ( y, x): Note that this function also satisfies (101) (102) In contrast, let us consider examples that are not linear: (103) (104) f(x) = x 2, f(x) = 2 + x 1

2 As the semester progresses, we will consider both more sophisticated examples of functions f, and deeper ways of analyzing and understanding them (So don t think that things will always be this simple!) 11 Matrix multiplication A general example of a linear function is a function R m R n given by multiplying by an n by m matrix A with entries A = (a ij ), for 1 i n and 1 j m (and a ij R): x 1 a 11 a 12 a 1m x 1 a 11 x 1 + a 12 x a 1m x m x 2 (111) a 21 a 22 a 2m x 2 = a 21 x 1 + a 22 x a 2m x m x m a n1 a n2 a nm x m a n1 x 1 + a n2 x a nm x m As we will explain later, this is actually the most general type of linear equation Systems of linear equations can be neatly expressed in this way: b 2 (112) A x = b =, which is equivalent to the system b 1 b n a 11 x 1 + a 12 x a 1m x m = b 1 a 21 x 1 + a 22 x a 2m x m = b 2 a n1 x 1 + a n2 x x nm x m = b n Such systems are ubiquitous in math and applied math, as well as engineering, computer science, and many practical fields So it is important to know how to solve them, or approximate their solutions, or understand them better! 2 Why study linear algebra? Linear algebra is one of the cornerstones of mathematics, and it is also extremely useful in real life and other disciplines 21 Calculus, derivatives, and first-order approximations In terms of calculus, linear algebra is the study of the first-order approximation of a function, encoded in its derivative In other words, given a function f : R n R, and a point x 0 R n, we want to approximate f near x 0 by a linear function So, we say (211) f(x) f(x 0 ) + f (x 0 ) (x x 0 ), where f is the derivative of f In the case n = 1, ie, one-variable calculus, this is just the tangent line to f: 2

3 When n = 2, we can view the graph of f : R 2 R as a surface in R 3, and then the above is the tangent plane to the graph at x 0 In higher dimensions, one obtains tangent hyperplanes This may seem too simple, but in fact already the first-order approximations can be quite complicated to study! Here are two among many reasons: (1) The number of variables can be very large: eg, in economics, one can have thousands of variables; (2) One may be studying differential equations based on the function f For example, we seek functions φ satisfying (212) φ (x) = f(φ(x)) This is already complicated enough when f is linear (and moreso when we extend to multiple variables) When f is nonlinear, many times we can find a good approximate solution using the linear approximation above Hence, in order to understand complicated nonlinear functions, it is both helpful and necessary to first understand linear ones 22 Real-life applications I only have time to very briefly sketch some among many tremendous applications of linear algebra 221 Google PageRank Before Google, it took a long time to wade through internet search results to find what you were looking for Google came around and got rich off the idea that the search engine should rank websites based on relevance In fact many times you find what you want in the very first hit! The main technical innovation behind the above is called PageRank Here is how it works: (1) Google scours the web and draws a graph of websites and links: a b c d (2) Google scores the websites based on how highly linked they are 3

4 At first glance, this means simply that b is the highest ranked website, having three links pointing to it This is followed by a and d with two links pointing to each, and then c with only one However, this ignores several important subtleties: (a) It makes sense that if a website is ranked higher, then links from it should be more valuable It should matter whether my website is linked to from The New York Times (nytimescom) or from conservapediaorg (b) It should matter how many links a website has If an article on wikipediaorg links to a thousand websites, no matter how prestigious Wikipedia is, each link should count less than a link from a site with only ten links total To fix this, we seek a rank function, (221) ρ : Websites R 0, so that, if my website x is linked to by websites y 1,, y m each with a 1,, a m links total, then my ranking is: (222) ρ(x) = 1 a 1 ρ(y 1 ) + 1 a 2 ρ(y 2 ) a m ρ(y m ) In the case of the above example, we seek ρ : {a, b, c, d} R + satisfying: 1 ρ(a) ρ(a) (223) ρ(b) ρ(c) = ρ(b) ρ(c) 2 ρ(d) ρ(d) It turns out that there is a unique solution up to scaling (note that we can multiply all of the values of ρ by the same overall positive number without affecting the validity or ordering of importance) This solution is: (224) So in fact, a is the most relevant, followed by b, then d, and then c Our estimate was not that far from the truth (it had a and b reversed); but here we also get more information: precise numerical scores It is not so obvious that, in general, one can solve such a system However, we will learn in this course techniques to prove not only that it can be solved, but how to solve it quickly More generally, we will learn, for every matrix A, techniques to solve for all column vectors v and all numbers λ R such that 3 0 (225) A v = λ v This is called the eigenvalue problem It has great theoretical importance to all of mathematics, in addition to great practical importance One of the main goals of this course will be to prove: Theorem 226 For every n by n matrix A, there exists a complex number λ and a nonzero column vector v satisfying (225) Moreover, there can be at most n possible values of λ In the situation at hand, we can prove Theorem 227 If the entries of each column of A sums to one, then there exists v such that Av = v If the entries of A are nonnegative, then we can take the entries of v also to be nonnegative We will also demonstrate how to effectively compute this v 4

5 222 Signal processing and Fourier transforms In communications, one sends and receives an oscillating signal (if electronic, then voltage is oscillating; if sound, air pressure is oscillating; if radio, then it is electromagnetic potential that is oscillating) A basic problem is to determine the frequency of oscillation of a signal The applications of this are huge They cannot be overstated! In music, frequency is pitch; devices like Auto-Tune work using the Fourier transform to find the approximate pitch of singing and make it precisely the right pitch More generally, cell phone transmissions, DVDs, MP3s, JPEGs, etc, all use this and/or other linear algebra They all work by decomposing raw data into special bases pure frequencies in the case of Fourier transform To achieve better compression, one throws out most of the data except for exactly what your eyes or ears can detect: the relevant basis elements In the case of the Fourier transform, one wishes to rewrite a function f : R R of time (to potential) as a function of frequency For instance, if f is a continuous periodic function with period 2π, then there exist unique real numbers a k, b k for k Z such that (228) f(x) = k Z a k cos(kx) + b k sin(kx) Then, given f, the question is, how do we compute a k and b k? The answer is (a version of) the Fourier transform, (229) a k = 2π 0 f(x) cos(kx) dx, b k = 2π 0 f(x) sin(kx) dx In real life, one deals not with functions f : R R but rather with functions on finite sets of samples Say for example we sampled only at times jπ n for j = 0, 1,, 2n 1 (we will restrict to an even number of samples for simplicity) Then, it turns out we only need a k and b k for k = 0, 1,, n 1, and we can write n 1 (2210) a k = j=0 f( jπ n 1 n ) cos(jkπ n ), b k = j=0 f( jπ n ) sin(jkπ ), 0 k n 1 n Problem 2211 Computing a k and b k by the above formulas takes 2n 2 operations That is a long time for large n Similarly, computing f from a k, b k also takes 2n 2 operations It turns out that linear algebra affords a solution the fast Fourier transform and its inverse that each take only about 2n log n operations! If we have time, we will explain how this works 223 Multiplying large numbers Give two large numbers, say with n digits, it takes n 2 individual digit multiplications to compute their product Indeed, if we write (2212) x = x x x n 1 x n 1, y = y y y n 1 y n 1, where the x j, y j are the digits of x and y, then the product is given by (2213) xy = (xy) (xy) n 2 (xy) 2n 2, (xy) m = m x j y m j, where here we set x j = y j = 0 for j n We multiply each digit from x with each digit from y one time, resulting in n 2 individual multiplications It turns out that the Fourier transform gives a faster way to do this Let us use 2n-digit numbers for simplicity Consider the functions f, g, h : {0, 1,, 2n 1} R given by f(j) = x j, g(j) = y j, h(j) = (xy) j Let a k (f), b k (f), a k (g), b k (g), a k (h), and b k (h) be their Fourier coefficients as before Then, one can prove the formula: (2214) a k (h) = a k (f)a k (g) b k (f)b k (g), b k (h) = a k (f)b k (g) + b k (f)a k (g) 5 j=0

6 This means that each a k (h) and b k (h) can be computed in only 2 operations: there is no large summation! So the entire Fourier transform, ie, a k (h), b k (h) for all k, can be computed in a total of only 2n steps This is a big savings: h itself (ie, xy) required n 2 operations to compute! Thus, using the fast Fourier transform of the previous section, we can multiply x and y in only about n log n operations (up to a constant multiple): (1) First, take the Fourier transforms a(f), b(f), a(g), and b(g), of x and y, each taking about n log n steps; (2) Then, compute a(h) and b(h) from these using (2214), taking only about 4n steps; (3) Finally, convert a(h) and b(h) back to h and hence xy, using the inverse fast Fourier transform, again taking about n log n steps We managed to multiply the numbers x and y much faster than expected! This can be very important in numerical applications 224 Constrained Minimization/maximization Finally, another very important application of linear algebra is to minimization or maximization For example, a manufacturer could be interested in maximizing profits based on how many of each type of product it manufactures A cell phone company could be interested in positioning its cell phone towers so as to minimize the delays and dropped calls of customers, or to maximize the minimal data transfer rate These problems become difficult because there are typically many constraints to satisfy Solving them requires linear algebra We give just one example: suppose we have just three variables, x, y, and z We want to minimize the function (2215) x 2 + (y 2) 2 + (z + 4) 2, subject to the constraint (2216) 2x + 3y + z = 16 That is, we want to minimize the distance from the point (0, 2, 4), subject to lying on the plane (2216) Note that (0, 2, 4) is not on that plane, so we cannot just obtain zero for (2215) The solution linear algebra provides is as follows: The perpendicular direction to the plane (2216) is parallel to the line (2t, 3t, 1t) t R So, wherever the minimum distance from the plane (2216) to the point (0, 2, 4) is, it lies along the line through (0, 2, 4) perpendicular to the plane, ie, the line (2t, 2 + 3t, t 4) See the figure: This line intersects the plane when (2217) 2(2t) + 3(2 + 3t) + (t 4) = 16, ie, (2218) 14t + 2 = 16, 6

7 so t = 1 Thus, the minimum value of the function (2215) is obtained at (2, 5, 3), and this distance is 14 The great thing is that the approach above generalizes to arbitrary dimensions: one can minimize distances from k-dimensional planes to l-dimensional planes in n-dimensional space This has great utility Of course, in real life, typically the functions and constraints are not linear, ie we are not just restricted to planes and minimizing distances between them However, one solves the general problem by reduction to the linear case, using derivatives In one variable, this is the minimization you may be used to: take the derivative of a function and set it equal to zero: this produces its local minima and maxima In higher dimensions, as mentioned before, taking the derivative yields matrices and a complicated linear problem, which one must solve as above The resulting technique is called Lagrange multipliers, which many of you may have heard of They are ubiquitous in economics 23 Ubiquity in pure mathematics Finally, but perhaps most important to us, is the ubiquity of linear algebra in pure mathematics itself We already mentioned that it is the foundation for calculus, and hence for the study of (differentiable) functions Here we briefly list a few other essential uses: (1) Differential equations: To solve an equation D(f) = 0, for example, where D is a differential operator, one can sometimes reduce to the case where D(f) = a 0 f + a 1 f + + f (n), and the a j are real numbers In the case n = 1, one has f = a 0 f which has the solution Ce a0x For more general n, linear algebra gives a solution: Rewrite the problem as (231) f f f (n 1) = A f f f (n 1) a a 1, A := a a n 1 Now, one can reduce to the eigenvalue problem of (225): We seek column vectors v of real (or complex) numbers, together with real (or complex) numbers λ, such that Av = λv Given such a pair v, λ, one has the following solution of the original equation: (232) e λt v Indeed, one has (233) (e λt v) = λe λt v = e λt (λv) = e λt (Av) = A(e λt v) (2) Functional analysis: the study of spaces of functions, eg, continuous, smooth, etc These can be viewed as infinite-dimensional linear spaces, since one can add functions and multiply them by real numbers Thus, this study generalizes the linear algebra we study (mostly for finite-dimensional situations) Moreover, the linear operators one considers are often closely related to differential equations, for which one applies the linear algebra outlined above (3) Representation theory: the generalized study of symmetries of spaces For example, one can classify all spaces which have n-fold rotational symmetry, or one can replace n by an arbitrary (finite or Lie) group (In the news recently this was finally classified for the most complicated Lie group, called E8! This was completed in part by mathematicians at MIT, such as David Vogan) To do this, one looks at ways of mapping the group into matrices, and uses the full power of linear algebra (4) Algebraic geometry: the algebraic study of geometric spaces This is also applicable to number theory, where the geometric spaces involve integers and prime numbers, and 7

8 their generalizations, rather than eg, real surfaces and points of them To study this geometry, one considers everything as certain algebraic structures over the real or complex numbers (or integers) and applies the power of linear algebra to deduce facts about them One also uses symmetries of these spaces, involving the representation theory above (and hence more linear algebra) 3 Main goals of the course There are two main goals of this course The most important is to help you all grow as thinkers and mathematicians The second goal is to teach you important foundational mathematical material that you will need in future courses and endeavors 31 Development of mathematical thinking and skills For many of you, this course may be your first math major course, by which I mean 18axy for a 1 This means you will be exposed to rigorous mathematical definitions, statements, and proofs Our main goal is to help you become comfortable with this language and mode of thinking, and to learn how to read and write proper mathematics As such, (1) The homework will be carefully checked for both style and correctness Write careful, correct, and complete answers to all questions! It is best to work first on scratch paper and to write your final answers on a clean sheet of paper once you understand all the details (2) The course material will emphasize theory over calculation, ie, abstract mathematical concepts, logical connections, and general results We will have some calculations, for your own practical benefit and concrete understanding, as well as to make the exams more reasonable But the theory will be primary (this contrasts with 1806!) (3) Although we plan the material to be particularly relevant to future mathematical courses (and to a lesser extent, useful and applicable more generally), our primary concern will be that you learn how to learn So, it is not essential that all of the material be of immediate use, and you should treat it partly as an exercise for your own development 32 Material and main theorems The main mathematical theory and results we are aiming for are the following: (1) The definition of linear spaces and linear operators; (2) The concepts of subspaces, dimension, linear independence, span, and bases; (3) Row reduction and Gaussian elimination for matrices; (4) The eigenvalue problem and its solution (cf (225)); (5) Inner product spaces (ie, linear spaces equipped with distance functions), orthogonal (ie, perpendicular) projections and operators, and minimization/maximization (cf 224); (6) The spectral theorem for operators on inner product spaces: roughly, this characterizes operators that have an orthogonal collection of eigenvectors; (7) The polar decomposition for operators on inner product spaces: this decomposes them into a product of isometries (operators preserving the distance) and positive operators (operators with an orthogonal collection of eigenvectors with positive eigenvalues); also, the singular value decomposition, which is the decomposition of the aforementioned positive operator; (8) Generalized eigenspaces, the characteristic polynomial, and Jordan canonical forms of matrices: this is a generalization of the eigenvalue problem which applies to matrices that don t have enough eigenvectors; (9) Determinant, trace, and volume: important examples of the preceding invariants, that you may have heard of! 8

9 4 Homework for next time Please read sections of the book, and brush up on your complex numbers 9

Lecture 1: Systems of linear equations and their solutions

Lecture 1: Systems of linear equations and their solutions Lecture 1: Systems of linear equations and their solutions Course overview Topics to be covered this semester: Systems of linear equations and Gaussian elimination: Solving linear equations and applications

More information

The value of a problem is not so much coming up with the answer as in the ideas and attempted ideas it forces on the would be solver I.N.

The value of a problem is not so much coming up with the answer as in the ideas and attempted ideas it forces on the would be solver I.N. Math 410 Homework Problems In the following pages you will find all of the homework problems for the semester. Homework should be written out neatly and stapled and turned in at the beginning of class

More information

Math 118, Fall 2014 Final Exam

Math 118, Fall 2014 Final Exam Math 8, Fall 4 Final Exam True or false Please circle your choice; no explanation is necessary True There is a linear transformation T such that T e ) = e and T e ) = e Solution Since T is linear, if T

More information

APPENDIX A. Background Mathematics. A.1 Linear Algebra. Vector algebra. Let x denote the n-dimensional column vector with components x 1 x 2.

APPENDIX A. Background Mathematics. A.1 Linear Algebra. Vector algebra. Let x denote the n-dimensional column vector with components x 1 x 2. APPENDIX A Background Mathematics A. Linear Algebra A.. Vector algebra Let x denote the n-dimensional column vector with components 0 x x 2 B C @. A x n Definition 6 (scalar product). The scalar product

More information

18.06 Problem Set 8 - Solutions Due Wednesday, 14 November 2007 at 4 pm in

18.06 Problem Set 8 - Solutions Due Wednesday, 14 November 2007 at 4 pm in 806 Problem Set 8 - Solutions Due Wednesday, 4 November 2007 at 4 pm in 2-06 08 03 Problem : 205+5+5+5 Consider the matrix A 02 07 a Check that A is a positive Markov matrix, and find its steady state

More information

Matrices and Linear transformations

Matrices and Linear transformations Matrices and Linear transformations We have been thinking of matrices in connection with solutions to linear systems of equations like Ax = b. It is time to broaden our horizons a bit and start thinking

More information

Notes on singular value decomposition for Math 54. Recall that if A is a symmetric n n matrix, then A has real eigenvalues A = P DP 1 A = P DP T.

Notes on singular value decomposition for Math 54. Recall that if A is a symmetric n n matrix, then A has real eigenvalues A = P DP 1 A = P DP T. Notes on singular value decomposition for Math 54 Recall that if A is a symmetric n n matrix, then A has real eigenvalues λ 1,, λ n (possibly repeated), and R n has an orthonormal basis v 1,, v n, where

More information

LINEAR ALGEBRA KNOWLEDGE SURVEY

LINEAR ALGEBRA KNOWLEDGE SURVEY LINEAR ALGEBRA KNOWLEDGE SURVEY Instructions: This is a Knowledge Survey. For this assignment, I am only interested in your level of confidence about your ability to do the tasks on the following pages.

More information

Linear Algebra Done Wrong. Sergei Treil. Department of Mathematics, Brown University

Linear Algebra Done Wrong. Sergei Treil. Department of Mathematics, Brown University Linear Algebra Done Wrong Sergei Treil Department of Mathematics, Brown University Copyright c Sergei Treil, 2004, 2009 Preface The title of the book sounds a bit mysterious. Why should anyone read this

More information

Preface. Figures Figures appearing in the text were prepared using MATLAB R. For product information, please contact:

Preface. Figures Figures appearing in the text were prepared using MATLAB R. For product information, please contact: Linear algebra forms the basis for much of modern mathematics theoretical, applied, and computational. The purpose of this book is to provide a broad and solid foundation for the study of advanced mathematics.

More information

Review problems for MA 54, Fall 2004.

Review problems for MA 54, Fall 2004. Review problems for MA 54, Fall 2004. Below are the review problems for the final. They are mostly homework problems, or very similar. If you are comfortable doing these problems, you should be fine on

More information

Math 290-2: Linear Algebra & Multivariable Calculus Northwestern University, Lecture Notes

Math 290-2: Linear Algebra & Multivariable Calculus Northwestern University, Lecture Notes Math 290-2: Linear Algebra & Multivariable Calculus Northwestern University, Lecture Notes Written by Santiago Cañez These are notes which provide a basic summary of each lecture for Math 290-2, the second

More information

Math 307 Learning Goals. March 23, 2010

Math 307 Learning Goals. March 23, 2010 Math 307 Learning Goals March 23, 2010 Course Description The course presents core concepts of linear algebra by focusing on applications in Science and Engineering. Examples of applications from recent

More information

Eigenvalues and Eigenvectors

Eigenvalues and Eigenvectors LECTURE 3 Eigenvalues and Eigenvectors Definition 3.. Let A be an n n matrix. The eigenvalue-eigenvector problem for A is the problem of finding numbers λ and vectors v R 3 such that Av = λv. If λ, v are

More information

33AH, WINTER 2018: STUDY GUIDE FOR FINAL EXAM

33AH, WINTER 2018: STUDY GUIDE FOR FINAL EXAM 33AH, WINTER 2018: STUDY GUIDE FOR FINAL EXAM (UPDATED MARCH 17, 2018) The final exam will be cumulative, with a bit more weight on more recent material. This outline covers the what we ve done since the

More information

CS168: The Modern Algorithmic Toolbox Lecture #8: How PCA Works

CS168: The Modern Algorithmic Toolbox Lecture #8: How PCA Works CS68: The Modern Algorithmic Toolbox Lecture #8: How PCA Works Tim Roughgarden & Gregory Valiant April 20, 206 Introduction Last lecture introduced the idea of principal components analysis (PCA). The

More information

Math 4153 Exam 3 Review. The syllabus for Exam 3 is Chapter 6 (pages ), Chapter 7 through page 137, and Chapter 8 through page 182 in Axler.

Math 4153 Exam 3 Review. The syllabus for Exam 3 is Chapter 6 (pages ), Chapter 7 through page 137, and Chapter 8 through page 182 in Axler. Math 453 Exam 3 Review The syllabus for Exam 3 is Chapter 6 (pages -2), Chapter 7 through page 37, and Chapter 8 through page 82 in Axler.. You should be sure to know precise definition of the terms we

More information

A Brief Outline of Math 355

A Brief Outline of Math 355 A Brief Outline of Math 355 Lecture 1 The geometry of linear equations; elimination with matrices A system of m linear equations with n unknowns can be thought of geometrically as m hyperplanes intersecting

More information

8. Diagonalization.

8. Diagonalization. 8. Diagonalization 8.1. Matrix Representations of Linear Transformations Matrix of A Linear Operator with Respect to A Basis We know that every linear transformation T: R n R m has an associated standard

More information

Spring 2014 Math 272 Final Exam Review Sheet

Spring 2014 Math 272 Final Exam Review Sheet Spring 2014 Math 272 Final Exam Review Sheet You will not be allowed use of a calculator or any other device other than your pencil or pen and some scratch paper. Notes are also not allowed. In kindness

More information

MATH 221: SOLUTIONS TO SELECTED HOMEWORK PROBLEMS

MATH 221: SOLUTIONS TO SELECTED HOMEWORK PROBLEMS MATH 221: SOLUTIONS TO SELECTED HOMEWORK PROBLEMS 1. HW 1: Due September 4 1.1.21. Suppose v, w R n and c is a scalar. Prove that Span(v + cw, w) = Span(v, w). We must prove two things: that every element

More information

REVIEW OF DIFFERENTIAL CALCULUS

REVIEW OF DIFFERENTIAL CALCULUS REVIEW OF DIFFERENTIAL CALCULUS DONU ARAPURA 1. Limits and continuity To simplify the statements, we will often stick to two variables, but everything holds with any number of variables. Let f(x, y) be

More information

Instructor Notes for Chapters 3 & 4

Instructor Notes for Chapters 3 & 4 Algebra for Calculus Fall 0 Section 3. Complex Numbers Goal for students: Instructor Notes for Chapters 3 & 4 perform computations involving complex numbers You might want to review the quadratic formula

More information

Extreme Values and Positive/ Negative Definite Matrix Conditions

Extreme Values and Positive/ Negative Definite Matrix Conditions Extreme Values and Positive/ Negative Definite Matrix Conditions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 016 Outline 1

More information

MIT Final Exam Solutions, Spring 2017

MIT Final Exam Solutions, Spring 2017 MIT 8.6 Final Exam Solutions, Spring 7 Problem : For some real matrix A, the following vectors form a basis for its column space and null space: C(A) = span,, N(A) = span,,. (a) What is the size m n of

More information

Conceptual Questions for Review

Conceptual Questions for Review Conceptual Questions for Review Chapter 1 1.1 Which vectors are linear combinations of v = (3, 1) and w = (4, 3)? 1.2 Compare the dot product of v = (3, 1) and w = (4, 3) to the product of their lengths.

More information

CURRENT MATERIAL: Vector Calculus.

CURRENT MATERIAL: Vector Calculus. Math 275, section 002 (Ultman) Fall 2011 FINAL EXAM REVIEW The final exam will be held on Wednesday 14 December from 10:30am 12:30pm in our regular classroom. You will be allowed both sides of an 8.5 11

More information

NONCOMMUTATIVE POLYNOMIAL EQUATIONS. Edward S. Letzter. Introduction

NONCOMMUTATIVE POLYNOMIAL EQUATIONS. Edward S. Letzter. Introduction NONCOMMUTATIVE POLYNOMIAL EQUATIONS Edward S Letzter Introduction My aim in these notes is twofold: First, to briefly review some linear algebra Second, to provide you with some new tools and techniques

More information

MATH 315 Linear Algebra Homework #1 Assigned: August 20, 2018

MATH 315 Linear Algebra Homework #1 Assigned: August 20, 2018 Homework #1 Assigned: August 20, 2018 Review the following subjects involving systems of equations and matrices from Calculus II. Linear systems of equations Converting systems to matrix form Pivot entry

More information

MTH Linear Algebra. Study Guide. Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education

MTH Linear Algebra. Study Guide. Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education MTH 3 Linear Algebra Study Guide Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education June 3, ii Contents Table of Contents iii Matrix Algebra. Real Life

More information

Math 307 Learning Goals

Math 307 Learning Goals Math 307 Learning Goals May 14, 2018 Chapter 1 Linear Equations 1.1 Solving Linear Equations Write a system of linear equations using matrix notation. Use Gaussian elimination to bring a system of linear

More information

Background Mathematics (2/2) 1. David Barber

Background Mathematics (2/2) 1. David Barber Background Mathematics (2/2) 1 David Barber University College London Modified by Samson Cheung (sccheung@ieee.org) 1 These slides accompany the book Bayesian Reasoning and Machine Learning. The book and

More information

This pre-publication material is for review purposes only. Any typographical or technical errors will be corrected prior to publication.

This pre-publication material is for review purposes only. Any typographical or technical errors will be corrected prior to publication. This pre-publication material is for review purposes only. Any typographical or technical errors will be corrected prior to publication. Copyright Pearson Canada Inc. All rights reserved. Copyright Pearson

More information

1.1 Administrative Stuff

1.1 Administrative Stuff 601.433 / 601.633 Introduction to Algorithms Lecturer: Michael Dinitz Topic: Introduction, Karatsuba/Strassen Date: 9/4/18 1.1 Administrative Stuff Welcome to Algorithms! In this class you will learn the

More information

MTH 2032 Semester II

MTH 2032 Semester II MTH 232 Semester II 2-2 Linear Algebra Reference Notes Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education December 28, 2 ii Contents Table of Contents

More information

Student. Teacher AS STARTER PACK. September City and Islington Sixth Form College Mathematics Department.

Student. Teacher AS STARTER PACK. September City and Islington Sixth Form College Mathematics Department. Student Teacher AS STARTER PACK September 015 City and Islington Sixth Form College Mathematics Department www.candimaths.uk CONTENTS INTRODUCTION 3 SUMMARY NOTES 4 WS CALCULUS 1 ~ Indices, powers and

More information

L(C G (x) 0 ) c g (x). Proof. Recall C G (x) = {g G xgx 1 = g} and c g (x) = {X g Ad xx = X}. In general, it is obvious that

L(C G (x) 0 ) c g (x). Proof. Recall C G (x) = {g G xgx 1 = g} and c g (x) = {X g Ad xx = X}. In general, it is obvious that ALGEBRAIC GROUPS 61 5. Root systems and semisimple Lie algebras 5.1. Characteristic 0 theory. Assume in this subsection that chark = 0. Let me recall a couple of definitions made earlier: G is called reductive

More information

Final Review Sheet. B = (1, 1 + 3x, 1 + x 2 ) then 2 + 3x + 6x 2

Final Review Sheet. B = (1, 1 + 3x, 1 + x 2 ) then 2 + 3x + 6x 2 Final Review Sheet The final will cover Sections Chapters 1,2,3 and 4, as well as sections 5.1-5.4, 6.1-6.2 and 7.1-7.3 from chapters 5,6 and 7. This is essentially all material covered this term. Watch

More information

Tangent spaces, normals and extrema

Tangent spaces, normals and extrema Chapter 3 Tangent spaces, normals and extrema If S is a surface in 3-space, with a point a S where S looks smooth, i.e., without any fold or cusp or self-crossing, we can intuitively define the tangent

More information

Solving Systems of Equations Row Reduction

Solving Systems of Equations Row Reduction Solving Systems of Equations Row Reduction November 19, 2008 Though it has not been a primary topic of interest for us, the task of solving a system of linear equations has come up several times. For example,

More information

MAT 1302B Mathematical Methods II

MAT 1302B Mathematical Methods II MAT 1302B Mathematical Methods II Alistair Savage Mathematics and Statistics University of Ottawa Winter 2015 Lecture 19 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture

More information

Linear Algebra, Summer 2011, pt. 3

Linear Algebra, Summer 2011, pt. 3 Linear Algebra, Summer 011, pt. 3 September 0, 011 Contents 1 Orthogonality. 1 1.1 The length of a vector....................... 1. Orthogonal vectors......................... 3 1.3 Orthogonal Subspaces.......................

More information

a s 1.3 Matrix Multiplication. Know how to multiply two matrices and be able to write down the formula

a s 1.3 Matrix Multiplication. Know how to multiply two matrices and be able to write down the formula Syllabus for Math 308, Paul Smith Book: Kolman-Hill Chapter 1. Linear Equations and Matrices 1.1 Systems of Linear Equations Definition of a linear equation and a solution to a linear equations. Meaning

More information

MATH 583A REVIEW SESSION #1

MATH 583A REVIEW SESSION #1 MATH 583A REVIEW SESSION #1 BOJAN DURICKOVIC 1. Vector Spaces Very quick review of the basic linear algebra concepts (see any linear algebra textbook): (finite dimensional) vector space (or linear space),

More information

Algebra Workshops 10 and 11

Algebra Workshops 10 and 11 Algebra Workshops 1 and 11 Suggestion: For Workshop 1 please do questions 2,3 and 14. For the other questions, it s best to wait till the material is covered in lectures. Bilinear and Quadratic Forms on

More information

A Note on Two Different Types of Matrices and Their Applications

A Note on Two Different Types of Matrices and Their Applications A Note on Two Different Types of Matrices and Their Applications Arjun Krishnan I really enjoyed Prof. Del Vecchio s Linear Systems Theory course and thought I d give something back. So I ve written a

More information

Linear Least-Squares Data Fitting

Linear Least-Squares Data Fitting CHAPTER 6 Linear Least-Squares Data Fitting 61 Introduction Recall that in chapter 3 we were discussing linear systems of equations, written in shorthand in the form Ax = b In chapter 3, we just considered

More information

LINEAR ALGEBRA BOOT CAMP WEEK 4: THE SPECTRAL THEOREM

LINEAR ALGEBRA BOOT CAMP WEEK 4: THE SPECTRAL THEOREM LINEAR ALGEBRA BOOT CAMP WEEK 4: THE SPECTRAL THEOREM Unless otherwise stated, all vector spaces in this worksheet are finite dimensional and the scalar field F is R or C. Definition 1. A linear operator

More information

Lecture 11: Finish Gaussian elimination and applications; intro to eigenvalues and eigenvectors (1)

Lecture 11: Finish Gaussian elimination and applications; intro to eigenvalues and eigenvectors (1) Lecture 11: Finish Gaussian elimination and applications; intro to eigenvalues and eigenvectors (1) Travis Schedler Tue, Oct 18, 2011 (version: Tue, Oct 18, 6:00 PM) Goals (2) Solving systems of equations

More information

Math 396. Quotient spaces

Math 396. Quotient spaces Math 396. Quotient spaces. Definition Let F be a field, V a vector space over F and W V a subspace of V. For v, v V, we say that v v mod W if and only if v v W. One can readily verify that with this definition

More information

Linear Algebra, Summer 2011, pt. 2

Linear Algebra, Summer 2011, pt. 2 Linear Algebra, Summer 2, pt. 2 June 8, 2 Contents Inverses. 2 Vector Spaces. 3 2. Examples of vector spaces..................... 3 2.2 The column space......................... 6 2.3 The null space...........................

More information

MATH 205 HOMEWORK #3 OFFICIAL SOLUTION. Problem 1: Find all eigenvalues and eigenvectors of the following linear transformations. (a) F = R, V = R 3,

MATH 205 HOMEWORK #3 OFFICIAL SOLUTION. Problem 1: Find all eigenvalues and eigenvectors of the following linear transformations. (a) F = R, V = R 3, MATH 205 HOMEWORK #3 OFFICIAL SOLUTION Problem 1: Find all eigenvalues and eigenvectors of the following linear transformations. a F = R, V = R 3, b F = R or C, V = F 2, T = T = 9 4 4 8 3 4 16 8 7 0 1

More information

course overview 18.06: Linear Algebra

course overview 18.06: Linear Algebra course overview 18.06: Linear Algebra Prof. Steven G. Johnson, MIT Applied Math Fall 2017 http://web.mit.edu/18.06 Textbook: Strang, Introduction to Linear Algebra, 5 th edition + supplementary notes Help

More information

Math 302 Outcome Statements Winter 2013

Math 302 Outcome Statements Winter 2013 Math 302 Outcome Statements Winter 2013 1 Rectangular Space Coordinates; Vectors in the Three-Dimensional Space (a) Cartesian coordinates of a point (b) sphere (c) symmetry about a point, a line, and a

More information

MATH 304 Linear Algebra Lecture 20: Review for Test 1.

MATH 304 Linear Algebra Lecture 20: Review for Test 1. MATH 304 Linear Algebra Lecture 20: Review for Test 1. Topics for Test 1 Part I: Elementary linear algebra (Leon 1.1 1.4, 2.1 2.2) Systems of linear equations: elementary operations, Gaussian elimination,

More information

Lecture 1 Systems of Linear Equations and Matrices

Lecture 1 Systems of Linear Equations and Matrices Lecture 1 Systems of Linear Equations and Matrices Math 19620 Outline of Course Linear Equations and Matrices Linear Transformations, Inverses Bases, Linear Independence, Subspaces Abstract Vector Spaces

More information

1 Last time: least-squares problems

1 Last time: least-squares problems MATH Linear algebra (Fall 07) Lecture Last time: least-squares problems Definition. If A is an m n matrix and b R m, then a least-squares solution to the linear system Ax = b is a vector x R n such that

More information

Math 164-1: Optimization Instructor: Alpár R. Mészáros

Math 164-1: Optimization Instructor: Alpár R. Mészáros Math 164-1: Optimization Instructor: Alpár R. Mészáros First Midterm, April 20, 2016 Name (use a pen): Student ID (use a pen): Signature (use a pen): Rules: Duration of the exam: 50 minutes. By writing

More information

MATH 310, REVIEW SHEET 2

MATH 310, REVIEW SHEET 2 MATH 310, REVIEW SHEET 2 These notes are a very short summary of the key topics in the book (and follow the book pretty closely). You should be familiar with everything on here, but it s not comprehensive,

More information

MATH 225 Summer 2005 Linear Algebra II Solutions to Assignment 1 Due: Wednesday July 13, 2005

MATH 225 Summer 2005 Linear Algebra II Solutions to Assignment 1 Due: Wednesday July 13, 2005 MATH 225 Summer 25 Linear Algebra II Solutions to Assignment 1 Due: Wednesday July 13, 25 Department of Mathematical and Statistical Sciences University of Alberta Question 1. [p 224. #2] The set of all

More information

36 What is Linear Algebra?

36 What is Linear Algebra? 36 What is Linear Algebra? The authors of this textbook think that solving linear systems of equations is a big motivation for studying linear algebra This is certainly a very respectable opinion as systems

More information

CURRENT MATERIAL: Vector Calculus.

CURRENT MATERIAL: Vector Calculus. Math 275, section 002 (Ultman) Spring 2012 FINAL EXAM REVIEW The final exam will be held on Wednesday 9 May from 8:00 10:00am in our regular classroom. You will be allowed both sides of two 8.5 11 sheets

More information

3.7 Constrained Optimization and Lagrange Multipliers

3.7 Constrained Optimization and Lagrange Multipliers 3.7 Constrained Optimization and Lagrange Multipliers 71 3.7 Constrained Optimization and Lagrange Multipliers Overview: Constrained optimization problems can sometimes be solved using the methods of the

More information

Algebra II. Paulius Drungilas and Jonas Jankauskas

Algebra II. Paulius Drungilas and Jonas Jankauskas Algebra II Paulius Drungilas and Jonas Jankauskas Contents 1. Quadratic forms 3 What is quadratic form? 3 Change of variables. 3 Equivalence of quadratic forms. 4 Canonical form. 4 Normal form. 7 Positive

More information

Dot Products, Transposes, and Orthogonal Projections

Dot Products, Transposes, and Orthogonal Projections Dot Products, Transposes, and Orthogonal Projections David Jekel November 13, 2015 Properties of Dot Products Recall that the dot product or standard inner product on R n is given by x y = x 1 y 1 + +

More information

The Singular Value Decomposition (SVD) and Principal Component Analysis (PCA)

The Singular Value Decomposition (SVD) and Principal Component Analysis (PCA) Chapter 5 The Singular Value Decomposition (SVD) and Principal Component Analysis (PCA) 5.1 Basics of SVD 5.1.1 Review of Key Concepts We review some key definitions and results about matrices that will

More information

Math 251 Midterm II Information Spring 2018

Math 251 Midterm II Information Spring 2018 Math 251 Midterm II Information Spring 2018 WHEN: Thursday, April 12 (in class). You will have the entire period (125 minutes) to work on the exam. RULES: No books or notes. You may bring a non-graphing

More information

CS 143 Linear Algebra Review

CS 143 Linear Algebra Review CS 143 Linear Algebra Review Stefan Roth September 29, 2003 Introductory Remarks This review does not aim at mathematical rigor very much, but instead at ease of understanding and conciseness. Please see

More information

Singular Value Decompsition

Singular Value Decompsition Singular Value Decompsition Massoud Malek One of the most useful results from linear algebra, is a matrix decomposition known as the singular value decomposition It has many useful applications in almost

More information

Semidefinite Programming

Semidefinite Programming Semidefinite Programming Notes by Bernd Sturmfels for the lecture on June 26, 208, in the IMPRS Ringvorlesung Introduction to Nonlinear Algebra The transition from linear algebra to nonlinear algebra has

More information

18.06SC Final Exam Solutions

18.06SC Final Exam Solutions 18.06SC Final Exam Solutions 1 (4+7=11 pts.) Suppose A is 3 by 4, and Ax = 0 has exactly 2 special solutions: 1 2 x 1 = 1 and x 2 = 1 1 0 0 1 (a) Remembering that A is 3 by 4, find its row reduced echelon

More information

APPLICATIONS The eigenvalues are λ = 5, 5. An orthonormal basis of eigenvectors consists of

APPLICATIONS The eigenvalues are λ = 5, 5. An orthonormal basis of eigenvectors consists of CHAPTER III APPLICATIONS The eigenvalues are λ =, An orthonormal basis of eigenvectors consists of, The eigenvalues are λ =, A basis of eigenvectors consists of, 4 which are not perpendicular However,

More information

Homework 2. Solutions T =

Homework 2. Solutions T = Homework. s Let {e x, e y, e z } be an orthonormal basis in E. Consider the following ordered triples: a) {e x, e x + e y, 5e z }, b) {e y, e x, 5e z }, c) {e y, e x, e z }, d) {e y, e x, 5e z }, e) {

More information

web: HOMEWORK 1

web:   HOMEWORK 1 MAT 207 LINEAR ALGEBRA I 2009207 Dokuz Eylül University, Faculty of Science, Department of Mathematics Instructor: Engin Mermut web: http://kisideuedutr/enginmermut/ HOMEWORK VECTORS IN THE n-dimensional

More information

Columbus State Community College Mathematics Department Public Syllabus

Columbus State Community College Mathematics Department Public Syllabus Columbus State Community College Mathematics Department Public Syllabus Course and Number: MATH 2568 Elementary Linear Algebra Credits: 4 Class Hours Per Week: 4 Prerequisites: MATH 2153 with a C or higher

More information

Matrices related to linear transformations

Matrices related to linear transformations Math 4326 Fall 207 Matrices related to linear transformations We have encountered several ways in which matrices relate to linear transformations. In this note, I summarize the important facts and formulas

More information

Definition (T -invariant subspace) Example. Example

Definition (T -invariant subspace) Example. Example Eigenvalues, Eigenvectors, Similarity, and Diagonalization We now turn our attention to linear transformations of the form T : V V. To better understand the effect of T on the vector space V, we begin

More information

Math 309 Notes and Homework for Days 4-6

Math 309 Notes and Homework for Days 4-6 Math 309 Notes and Homework for Days 4-6 Day 4 Read Section 1.2 and the notes below. The following is the main definition of the course. Definition. A vector space is a set V (whose elements are called

More information

Cambridge University Press The Mathematics of Signal Processing Steven B. Damelin and Willard Miller Excerpt More information

Cambridge University Press The Mathematics of Signal Processing Steven B. Damelin and Willard Miller Excerpt More information Introduction Consider a linear system y = Φx where Φ can be taken as an m n matrix acting on Euclidean space or more generally, a linear operator on a Hilbert space. We call the vector x a signal or input,

More information

Linear Algebra. Min Yan

Linear Algebra. Min Yan Linear Algebra Min Yan January 2, 2018 2 Contents 1 Vector Space 7 1.1 Definition................................. 7 1.1.1 Axioms of Vector Space..................... 7 1.1.2 Consequence of Axiom......................

More information

Problems in Linear Algebra and Representation Theory

Problems in Linear Algebra and Representation Theory Problems in Linear Algebra and Representation Theory (Most of these were provided by Victor Ginzburg) The problems appearing below have varying level of difficulty. They are not listed in any specific

More information

1 Matrices and Systems of Linear Equations

1 Matrices and Systems of Linear Equations March 3, 203 6-6. Systems of Linear Equations Matrices and Systems of Linear Equations An m n matrix is an array A = a ij of the form a a n a 2 a 2n... a m a mn where each a ij is a real or complex number.

More information

Chapter 7. Canonical Forms. 7.1 Eigenvalues and Eigenvectors

Chapter 7. Canonical Forms. 7.1 Eigenvalues and Eigenvectors Chapter 7 Canonical Forms 7.1 Eigenvalues and Eigenvectors Definition 7.1.1. Let V be a vector space over the field F and let T be a linear operator on V. An eigenvalue of T is a scalar λ F such that there

More information

COMP 558 lecture 18 Nov. 15, 2010

COMP 558 lecture 18 Nov. 15, 2010 Least squares We have seen several least squares problems thus far, and we will see more in the upcoming lectures. For this reason it is good to have a more general picture of these problems and how to

More information

Math 5BI: Problem Set 6 Gradient dynamical systems

Math 5BI: Problem Set 6 Gradient dynamical systems Math 5BI: Problem Set 6 Gradient dynamical systems April 25, 2007 Recall that if f(x) = f(x 1, x 2,..., x n ) is a smooth function of n variables, the gradient of f is the vector field f(x) = ( f)(x 1,

More information

Spectral Theorem for Self-adjoint Linear Operators

Spectral Theorem for Self-adjoint Linear Operators Notes for the undergraduate lecture by David Adams. (These are the notes I would write if I was teaching a course on this topic. I have included more material than I will cover in the 45 minute lecture;

More information

UNDERSTANDING THE DIAGONALIZATION PROBLEM. Roy Skjelnes. 1.- Linear Maps 1.1. Linear maps. A map T : R n R m is a linear map if

UNDERSTANDING THE DIAGONALIZATION PROBLEM. Roy Skjelnes. 1.- Linear Maps 1.1. Linear maps. A map T : R n R m is a linear map if UNDERSTANDING THE DIAGONALIZATION PROBLEM Roy Skjelnes Abstract These notes are additional material to the course B107, given fall 200 The style may appear a bit coarse and consequently the student is

More information

2018 Fall 2210Q Section 013 Midterm Exam I Solution

2018 Fall 2210Q Section 013 Midterm Exam I Solution 8 Fall Q Section 3 Midterm Exam I Solution True or False questions ( points = points) () An example of a linear combination of vectors v, v is the vector v. True. We can write v as v + v. () If two matrices

More information

Section 3.9. Matrix Norm

Section 3.9. Matrix Norm 3.9. Matrix Norm 1 Section 3.9. Matrix Norm Note. We define several matrix norms, some similar to vector norms and some reflecting how multiplication by a matrix affects the norm of a vector. We use matrix

More information

Eigenvalues and Eigenvectors

Eigenvalues and Eigenvectors Eigenvalues and Eigenvectors MAT 67L, Laboratory III Contents Instructions (1) Read this document. (2) The questions labeled Experiments are not graded, and should not be turned in. They are designed for

More information

MATH 1902: Mathematics for the Physical Sciences I

MATH 1902: Mathematics for the Physical Sciences I MATH 1902: Mathematics for the Physical Sciences I Dr Dana Mackey School of Mathematical Sciences Room A305 A Email: Dana.Mackey@dit.ie Dana Mackey (DIT) MATH 1902 1 / 46 Module content/assessment Functions

More information

3 Fields, Elementary Matrices and Calculating Inverses

3 Fields, Elementary Matrices and Calculating Inverses 3 Fields, Elementary Matrices and Calculating Inverses 3. Fields So far we have worked with matrices whose entries are real numbers (and systems of equations whose coefficients and solutions are real numbers).

More information

Matrix-Vector Products and the Matrix Equation Ax = b

Matrix-Vector Products and the Matrix Equation Ax = b Matrix-Vector Products and the Matrix Equation Ax = b A. Havens Department of Mathematics University of Massachusetts, Amherst January 31, 2018 Outline 1 Matrices Acting on Vectors Linear Combinations

More information

MA201: Further Mathematical Methods (Linear Algebra) 2002

MA201: Further Mathematical Methods (Linear Algebra) 2002 MA201: Further Mathematical Methods (Linear Algebra) 2002 General Information Teaching This course involves two types of teaching session that you should be attending: Lectures This is a half unit course

More information

Chapter 7. Optimization and Minimum Principles. 7.1 Two Fundamental Examples. Least Squares

Chapter 7. Optimization and Minimum Principles. 7.1 Two Fundamental Examples. Least Squares Chapter 7 Optimization and Minimum Principles 7 Two Fundamental Examples Within the universe of applied mathematics, optimization is often a world of its own There are occasional expeditions to other worlds

More information

Relations and Functions

Relations and Functions Algebra 1, Quarter 2, Unit 2.1 Relations and Functions Overview Number of instructional days: 10 (2 assessments) (1 day = 45 60 minutes) Content to be learned Demonstrate conceptual understanding of linear

More information

MATH36001 Perron Frobenius Theory 2015

MATH36001 Perron Frobenius Theory 2015 MATH361 Perron Frobenius Theory 215 In addition to saying something useful, the Perron Frobenius theory is elegant. It is a testament to the fact that beautiful mathematics eventually tends to be useful,

More information

University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam May 25th, 2018

University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam May 25th, 2018 University of Colorado Denver Department of Mathematical and Statistical Sciences Applied Linear Algebra Ph.D. Preliminary Exam May 25th, 2018 Name: Exam Rules: This exam lasts 4 hours. There are 8 problems.

More information

Q1 Q2 Q3 Q4 Tot Letr Xtra

Q1 Q2 Q3 Q4 Tot Letr Xtra Mathematics 54.1 Final Exam, 12 May 2011 180 minutes, 90 points NAME: ID: GSI: INSTRUCTIONS: You must justify your answers, except when told otherwise. All the work for a question should be on the respective

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra)

AMS526: Numerical Analysis I (Numerical Linear Algebra) AMS526: Numerical Analysis I (Numerical Linear Algebra) Lecture 1: Course Overview & Matrix-Vector Multiplication Xiangmin Jiao SUNY Stony Brook Xiangmin Jiao Numerical Analysis I 1 / 20 Outline 1 Course

More information