MAT 1302B Mathematical Methods II

Size: px
Start display at page:

Download "MAT 1302B Mathematical Methods II"

Transcription

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

2 Announcements First Midterm: DGDs: Second class of next week. Covers Lectures 1 6 (up to and including today s lecture). Know your DGD number. You will be asked to write it on your exam. You must use pen, not pencil. No calculators. Bring your student ID. Next week TAs will go through some old/practice exams (available on course webpage). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 2 / 31

3 Three languages: Solution sets Theorem (How to translate) If A is an m n matrix with columns a 1,..., a n and b R m, then 1 the matrix equation A x = b, 2 the vector equation x 1 a x n a n = b, and 3 the LS with augmented matrix [ A b ] (1) all have the same solution set. In the above, x 1 x n x =. All of the above solution sets are found by row reducing the augmented matrix in (1). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 3 / 31

4 Three languages: Existence of solutions Theorem (How to translate) Suppose A is an m n matrix with columns a 1,..., a n, and b R m. then the following statements are equivalent: 1 The matrix equation A x = b has a solution. 2 The vector equation x 1 a x n a n = b has a solution. 3 b is a linear combination of a1,..., a n. 4 b is in Span{ a1,..., a n }. [ 5 The LS with augmented matrix A b ] has a solution. So there are 5 ways [ of asking] the same question! All are answered by row reducing the matrix A b to see if the rightmost column is a pivot column. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 4 / 31

5 Equivalent questions: example Suppose a 1 = (4, 7, 1), a 2 = ( 3, 8, 5), a 3 = (2, 0, 1), b = (0, 1, 6). Question 1: Is b a linear combination of a 1, a 2, a 3? Question 2: Is b in Span{ a 1, a 2, a 3 }? Question 3: Does the following vector equation have a solution? x 1 a 1 + x 2 a 2 + x 3 a 3 = b [ 4 3 ] 2 Question 4: Does the matrix equation A x = b with A = have a solution? Question 5: Does the following linear system have a solution? 4x 1 3x 2 + 2x 3 = 0 7x 1 + 8x 2 = 1 x 1 + 5x 2 + x 3 = 6 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 5 / 31

6 Equivalent questions: example [ We solve all of these questions by row reducing the matrix A [ A b ] = row reduce b ] : / / /139 Since the system is consistent, the answer to all the questions is YES. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 6 / 31

7 Example Suppose a 1 = 1, a 2 = 1, a 3 = 0, b = 1. 3 If possible, express b as a linear combination of a 1, a 2, and a 3. Solution: We row reduce: The general solution is row reduce x 1 + x 3 = 2 x 1 = 2 x 3 x 2 x 3 = 1 x 2 = 1 + x 3 x 3 free Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 7 / 31

8 Example (cont.) General solution: x 1 = 2 x 3 x 2 = 1 + x 3 x 3 free Since we are asked to express b as a linear combination of a 1, a 2, a 3, any solution will do. So we can pick any value for x 3 we like. Let s take x 3 = 0. Then x 1 = 2, x 2 = 1. Then we have a 1 a a 3 = = 1 = b Other choices for x 3 give other answers. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 8 / 31

9 Example a 1 = 2, a 2 = 1, a 3 = 1, b 1 b = b 2 b 3 For which values of b 1, b 2, b 3 is b Span{ a 1, a 2, a 3 }? Solution: We row reduce: b b b 3 R 2 +R 3 R 1 +R 2 2R 1 +R b b 1 + b b 1 + b b b 1 + b b 1 b 2 + b 3 The system is consistent if and only if b 1 b 2 + b 3 = 0. Therefore, b Span{ a 1, a 2, a 3 } if and only if b 1 b 2 + b 3 = 0. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 9 / 31

10 Today: Overview Three languages: Linear systems Vector equations Matrix equations Up to now, our final descriptions of solution sets have been in the language of linear systems (at least for solution sets with free variables) We want to complete this picture by describing solution sets in terms of vectors. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 10 / 31

11 Homogeneous linear systems Definition A LS is homogeneous if it can be written in the form A x = 0 where A is an m n matrix and 0 R m. A homogenous system always has the solution x = 0 R n, called the trivial solution. A nontrivial solution is a solution x 0. Theorem The homogeneous equation A x = 0 has a nontrivial solution iff it has at least one free variable. Reason: Every LS has 0, 1 or infinitely many solutions! Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 11 / 31

12 Example The linear system 3x 1 + 2x 2 + 4x 4 = 0 x x 3 8x 4 = 0 x 2 x 3 + x 4 = 0 is homogenous. This system is consistent (it has at least the trivial solution x 1 = x 2 = x 3 = x 4 = 0). To find out if it has nontrivial solutions, we d have to row reduce and see if there are free variables. Example 3x 1 + 2x 2 + 4x 4 = 0 x x 3 8x 4 = 4 x 2 x 3 + x 4 = 2 is not a homogenous system. To know if this system is consistent or inconsistent, we would have to row reduce. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 12 / 31

13 Example Consider the linear system: 2x 1 + 6x 2 x 3 = 0 4x 1 + 3x 2 + 2x 3 = 0 6x 1 5x 2 + 3x 3 = 0 We write down the augmented matrix and row reduce: row reduce So the general solution is x x 3 = 0 x 2 = 0 0 = 0 x 1 = 1 2 x 3 x 2 = 0 x 3 free Since there are free variables, the system has nontrivial solutions. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 13 / 31

14 Example (cont.) So the general solution to A x = 0, where A is the coefficient matrix of the above LS has the form x x x = x 2 = 0 = x 3 0 = x 3 v, where v = 0. x 3 x This is the vector parametric form of the solution. x 3 Span{ v} v x 2 x 1 The solution set is Span{ v}, the line through 0 and v. It consists of all scalar multiples of v. The trivial solution corresponds to the zero multiple (x 3 = 0). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 14 / 31

15 Another example Consider the equation (also a LS) The solution set is given by 3x 1 2x 2 5x 3 = 0 x 1 = 2 3 x x 3 x 2, x 3 free So the general solution is 2 x 1 3 x x x x 3 x = x 2 = x 2 = x x 3 x 3 0 x = x x 3 0, x 2, x 3 R vector parametric form 0 1 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 15 / 31

16 Another example (cont.) So the general solution is 2 5 ( ) ( ) 3 3 x x = x 2 u + x 3 v, where u = 3, 1, 0, v = 3, 0, where x 2, x 3 can be any scalars. x 3 So the solution set is Span{ u, v} v x 1 u x 2 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 16 / 31

17 Solutions to homogeneous systems Description in terms of Span The solution set of a homogeneous system can always be written in the form Span{ v 1,..., v p } for some vectors v 1,..., v p. To find the set of vectors {v 1,..., v p } we: solve the linear system as usual, write the solution in vector notation, (replace basic variables by their expressions in terms of free variables), split the vector into a sum, one term for each free variable, and factor out the free variables the vectors appearing yield the set. E.g. x 1 x =. = x 1 [. ] ] + x 4 [. (if x 1 and x 4 are the free variables) x n Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 17 / 31

18 Solutions to homogeneous systems Important note: The above is only true for homogeneous systems! For example, the system x = 1 y = 2 has the unique solution (x, y) = (1, 2) and this solution set is not the span of a set of vectors (for instance, 0 is always in any span). Another note: If a homogenous system has only the trivial solution, the solution set is Span{ 0}. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 18 / 31

19 Nonhomogeneous systems Example: Describe all solutions of A x = b where A = 1 3 6, b = Solution: We first row reduce: Then we write the general solution: row reduce x 1 + 3x 3 = 1 x 1 = 1 3x 3 x 2 x 3 = 2 x 2 = 2 + x 3 0 = 0 x 3 free Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 19 / 31

20 Then we switch to vector notation: x 1 = 1 3x 3 x 1 1 3x x 2 = 2 + x 3 x = x 2 = 2 + x 3 = 2 +x 3 1, x 3 free x 3 x So the vector parametric form of the general solution is x = p + t v, t R x 3 R where p = (1, 2, 0) and v = ( 3, 1, 1). Note: We have replaced x 3 by a parameter t. x 3 v x 2 The solution set is a line p through p, parallel to v. x 1 Solution set Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 20 / 31

21 Homogeneous and nonhomogeneous systems Question What is the relationship between homogeneous and nonhomogeneous systems? In our previous example, we solved A x = b and described the solution set as x = p + t v, t R. If we solved the corresponding homogeneous system A x = 0 we would get the solution (same A as above) x = t v, t R (same v as above). Note: The only difference is the presence of the vector p, which is a solution of the nonhomogeneous system (corresponding to parameter value t = 0). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 21 / 31

22 Homogenous and nonhomogeneous systems Theorem If A x = b is consistent and p is any solution, then full the solution set is the set of all vectors of the form w = p + v h where v h is any solution of the corresponding homogeneous equation A x = 0. Notation In the above, p is called a particular solution. So if we know all the solutions to the homogenous system (obtained by setting the constant terms to zero), then we get all the solutions to the nonhomogeneous system just by adding any particular solution p to them all! Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 22 / 31

23 Advantages The relation between homogeneous and nonhomogeneous systems can save us a lot of time. Question Suppose we have to solve a bunch of systems with the same coefficients but different constant terms. How could we do this efficiently? Answer 1 Solve the corresponding homogenous system. 2 For each system find one particular solution (sometimes this is easy to do by inspection). 3 Add the particular solutions to the solution set of the homogenous system. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 23 / 31

24 Geometric interpretation x 3 A x = b A x = 0 p x 2 x 1 The solution set of A x = b is obtained by shifting the solution set of A x = 0 by a particular solution p (i.e. vector satisfying A p = b). Note: We can shift by any particular solution (green arrows represent other choices). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 24 / 31

25 Another example Find the solution set to the matrix equation x = Write the answer in vector parametric form. Solution: The general solution is row reduce x 1 = 2x 2 5x 4 1 x 3 = 3x x 2, x 4 free Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 25 / 31

26 We switch to vector notation: x 1 2x 2 5x 4 1 x = x 2 x 3 = x 2 3x x 4 x 4 = x x 0 4 3, 0 1 x 2, x 4 R Question: What is the solution set to the corresponding homogeneous equation x = (same equation but with zeros on the right)? Answer: We just remove the particular solution. The solution set is Span 1 0, 0 3 = s t 0 3 s, t R Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 26 / 31

27 How to find the vector equation of a line Question: What is the vector with tail at point a and tip at point b? b a a b Example Vector with tip at point (3, 1, 5) and tail at ( 2, 0, 8) is v = (3 ( 2), 1 0, 5 8) = (5, 1, 3). Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 27 / 31

28 How to find the vector equation of a line Procedure To find the vector equation of a line 1 Find a vector v parallel to the line (can use any two points on the line and find the vector from one to the other as above). 2 Find a point p on the line. 3 The vector equation is then p + t v, t R. x 1 v x 2 p x 3 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 28 / 31

29 Example Question: Find the vector equation of the line through the points (2, 0, 3) and ( 1, 1, 2). Answer: A vector parallel to the line is A point on the line is Therefore, the vector equation is v = (2, 0, 3) ( 1, 1, 2) = (3, 1, 1). p = (2, 0, 3). (2, 0, 3) + t(3, 1, 1), t R. Note: There are lots of vector equations of any given line. Example: Another vector equation of the above line is ( 1, 1, 2) + t(3, 1, 1), t R. Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 29 / 31

30 Weekend problem goat You re on a game show There are 3 closed doors Behind 2 doors are goats, behind the other is 1 million dollars You choose a door (it remains closed) The host opens a door you did not choose, showing you a goat You are given a choice: stick with your original choice or switch to the other unopened door What should you do? Does it make any difference? Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 30 / 31

31 Next time For next time: Read Section LI Discuss homogeneous equations in the language of vector equations Linear dependence/independence Important: Students often find linear dependence a difficult topic. So read the section before class! Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 6 31 / 31

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 6 These are partial slides for following along in class. Full versions of these slides

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 3 Alistair Savage (uottawa) MAT 1302B Mathematical Methods II Winter 2015 Lecture 3

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

Announcements Monday, September 18

Announcements Monday, September 18 Announcements Monday, September 18 WeBWorK 1.4, 1.5 are due on Wednesday at 11:59pm. The first midterm is on this Friday, September 22. Midterms happen during recitation. The exam covers through 1.5. About

More information

Section 1.5. Solution Sets of Linear Systems

Section 1.5. Solution Sets of Linear Systems Section 1.5 Solution Sets of Linear Systems Plan For Today Today we will learn to describe and draw the solution set of an arbitrary system of linear equations Ax = b, using spans. Ax = b Recall: the solution

More information

University of Ottawa

University of Ottawa University of Ottawa Department of Mathematics and Statistics MAT 30B: Mathematical Methods II Instructor: Alistair Savage Second Midterm Test Solutions White Version 3 March 0 Surname First Name Student

More information

MA 242 LINEAR ALGEBRA C1, Solutions to First Midterm Exam

MA 242 LINEAR ALGEBRA C1, Solutions to First Midterm Exam MA 242 LINEAR ALGEBRA C Solutions to First Midterm Exam Prof Nikola Popovic October 2 9:am - :am Problem ( points) Determine h and k such that the solution set of x + = k 4x + h = 8 (a) is empty (b) contains

More information

University of Ottawa

University of Ottawa University of Ottawa Department of Mathematics and Statistics MAT 1302B : Mathematical Methods II Professor: Hadi Salmasian First Midterm Exam Version A February 3, 2017 Surname First Name Student # DGD

More information

Math 3A Winter 2016 Midterm

Math 3A Winter 2016 Midterm Math 3A Winter 016 Midterm Name Signature UCI ID # E-mail address There are 7 problems for a total of 115 points. Present your work as clearly as possible. Partial credit will be awarded, and you must

More information

1. Determine by inspection which of the following sets of vectors is linearly independent. 3 3.

1. Determine by inspection which of the following sets of vectors is linearly independent. 3 3. 1. Determine by inspection which of the following sets of vectors is linearly independent. (a) (d) 1, 3 4, 1 { [ [,, 1 1] 3]} (b) 1, 4 5, (c) 3 6 (e) 1, 3, 4 4 3 1 4 Solution. The answer is (a): v 1 is

More information

Review for Chapter 1. Selected Topics

Review for Chapter 1. Selected Topics Review for Chapter 1 Selected Topics Linear Equations We have four equivalent ways of writing linear systems: 1 As a system of equations: 2x 1 + 3x 2 = 7 x 1 x 2 = 5 2 As an augmented matrix: ( 2 3 ) 7

More information

MATH 1553, SPRING 2018 SAMPLE MIDTERM 1: THROUGH SECTION 1.5

MATH 1553, SPRING 2018 SAMPLE MIDTERM 1: THROUGH SECTION 1.5 MATH 553, SPRING 28 SAMPLE MIDTERM : THROUGH SECTION 5 Name Section Please read all instructions carefully before beginning You have 5 minutes to complete this exam There are no aids of any kind (calculators,

More information

Week #4: Midterm 1 Review

Week #4: Midterm 1 Review Week #4: Midterm Review April 5, NAMES: TARDIS : http://math.ucsb.edu/ kgracekennedy/spring 4A.html Week : Introduction to Systems of Linear Equations Problem.. What row operations are allowed and why?...

More information

Announcements Wednesday, September 05

Announcements Wednesday, September 05 Announcements Wednesday, September 05 WeBWorK 2.2, 2.3 due today at 11:59pm. The quiz on Friday coers through 2.3 (last week s material). My office is Skiles 244 and Rabinoffice hours are: Mondays, 12

More information

Linear Independence x

Linear Independence x Linear Independence A consistent system of linear equations with matrix equation Ax = b, where A is an m n matrix, has a solution set whose graph in R n is a linear object, that is, has one of only n +

More information

Linear Algebra MATH20F Midterm 1

Linear Algebra MATH20F Midterm 1 University of California San Diego NAME TA: Linear Algebra Wednesday, October st, 9 :am - :5am No aids are allowed Be sure to write all row operations used Remember that you can often check your answers

More information

MATH10212 Linear Algebra B Homework Week 4

MATH10212 Linear Algebra B Homework Week 4 MATH22 Linear Algebra B Homework Week 4 Students are strongly advised to acquire a copy of the Textbook: D. C. Lay Linear Algebra and its Applications. Pearson, 26. ISBN -52-2873-4. Normally, homework

More information

Math 314H EXAM I. 1. (28 points) The row reduced echelon form of the augmented matrix for the system. is the matrix

Math 314H EXAM I. 1. (28 points) The row reduced echelon form of the augmented matrix for the system. is the matrix Math 34H EXAM I Do all of the problems below. Point values for each of the problems are adjacent to the problem number. Calculators may be used to check your answer but not to arrive at your answer. That

More information

Announcements Wednesday, September 20

Announcements Wednesday, September 20 Announcements Wednesday, September 20 WeBWorK 1.4, 1.5 are due on Wednesday at 11:59pm. The first midterm is on this Friday, September 22. Midterms happen during recitation. The exam covers through 1.5.

More information

MATH 1553, C.J. JANKOWSKI MIDTERM 1

MATH 1553, C.J. JANKOWSKI MIDTERM 1 MATH 155, C.J. JANKOWSKI MIDTERM 1 Name Section Please read all instructions carefully before beginning. You have 5 minutes to complete this exam. There are no aids of any kind (calculators, notes, text,

More information

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.5 SOLUTION SETS OF LINEAR SYSTEMS HOMOGENEOUS LINEAR SYSTEMS A system of linear equations is said to be homogeneous if it can be written in the form A x= 0, where

More information

MTH 464: Computational Linear Algebra

MTH 464: Computational Linear Algebra MTH 464: Computational Linear Algebra Lecture Outlines Exam 1 Material Dr. M. Beauregard Department of Mathematics & Statistics Stephen F. Austin State University January 9, 2018 Linear Algebra (MTH 464)

More information

Math 1553 Introduction to Linear Algebra. School of Mathematics Georgia Institute of Technology

Math 1553 Introduction to Linear Algebra. School of Mathematics Georgia Institute of Technology Math 1553 Introduction to Linear Algebra School of Mathematics Georgia Institute of Technology Introduction to Linear Algebra Motivation and Overview Linear. Algebra. What is Linear Algebra? Linear having

More information

if b is a linear combination of u, v, w, i.e., if we can find scalars r, s, t so that ru + sv + tw = 0.

if b is a linear combination of u, v, w, i.e., if we can find scalars r, s, t so that ru + sv + tw = 0. Solutions Review # Math 7 Instructions: Use the following problems to study for Exam # which will be held Wednesday Sept For a set of nonzero vectors u v w} in R n use words and/or math expressions to

More information

Announcements Monday, September 17

Announcements Monday, September 17 Announcements Monday, September 17 WeBWorK 3.3, 3.4 are due on Wednesday at 11:59pm. The first midterm is on this Friday, September 21. Midterms happen during recitation. The exam covers through 3.4. About

More information

Chapter 1: Systems of Linear Equations

Chapter 1: Systems of Linear Equations Chapter : Systems of Linear Equations February, 9 Systems of linear equations Linear systems Lecture A linear equation in variables x, x,, x n is an equation of the form a x + a x + + a n x n = b, where

More information

MATH 152 Exam 1-Solutions 135 pts. Write your answers on separate paper. You do not need to copy the questions. Show your work!!!

MATH 152 Exam 1-Solutions 135 pts. Write your answers on separate paper. You do not need to copy the questions. Show your work!!! MATH Exam -Solutions pts Write your answers on separate paper. You do not need to copy the questions. Show your work!!!. ( pts) Find the reduced row echelon form of the matrix Solution : 4 4 6 4 4 R R

More information

Linear Algebra (wi1403lr) Lecture no.3

Linear Algebra (wi1403lr) Lecture no.3 Linear Algebra (wi1403lr) Lecture no.3 EWI / DIAM / Numerical Analysis group Matthias Möller 25/04/2014 M. Möller (EWI/NA group) LA (wi1403lr) 25/04/2014 1 / 18 Review of lecture no.2 1.3 Vector Equations

More information

Linear Algebra. Preliminary Lecture Notes

Linear Algebra. Preliminary Lecture Notes Linear Algebra Preliminary Lecture Notes Adolfo J. Rumbos c Draft date May 9, 29 2 Contents 1 Motivation for the course 5 2 Euclidean n dimensional Space 7 2.1 Definition of n Dimensional Euclidean Space...........

More information

Midterm 1 Review. Written by Victoria Kala SH 6432u Office Hours: R 12:30 1:30 pm Last updated 10/10/2015

Midterm 1 Review. Written by Victoria Kala SH 6432u Office Hours: R 12:30 1:30 pm Last updated 10/10/2015 Midterm 1 Review Written by Victoria Kala vtkala@math.ucsb.edu SH 6432u Office Hours: R 12:30 1:30 pm Last updated 10/10/2015 Summary This Midterm Review contains notes on sections 1.1 1.5 and 1.7 in your

More information

1300 Linear Algebra and Vector Geometry Week 2: Jan , Gauss-Jordan, homogeneous matrices, intro matrix arithmetic

1300 Linear Algebra and Vector Geometry Week 2: Jan , Gauss-Jordan, homogeneous matrices, intro matrix arithmetic 1300 Linear Algebra and Vector Geometry Week 2: Jan 14 18 1.2, 1.3... Gauss-Jordan, homogeneous matrices, intro matrix arithmetic R. Craigen Office: MH 523 Email: craigenr@umanitoba.ca Winter 2019 What

More information

a 1n a 2n. a mn, a n = a 11 a 12 a 1j a 1n a 21 a 22 a 2j a m1 a m2 a mj a mn a 11 v 1 + a 12 v a 1n v n a 21 v 1 + a 22 v a 2n v n

a 1n a 2n. a mn, a n = a 11 a 12 a 1j a 1n a 21 a 22 a 2j a m1 a m2 a mj a mn a 11 v 1 + a 12 v a 1n v n a 21 v 1 + a 22 v a 2n v n Let a 1,, a n R m and v R n a 11 a 1 = a 21, a 2 = a m1 a 12 a 22 a m2 Matrix-vector product, a j = a 1j a 2j a mj Let A be the m n matrix whose j-th column is a j : Define A = [ a 1 a 2 a j a n ] = A

More information

Linear Algebra. Preliminary Lecture Notes

Linear Algebra. Preliminary Lecture Notes Linear Algebra Preliminary Lecture Notes Adolfo J. Rumbos c Draft date April 29, 23 2 Contents Motivation for the course 5 2 Euclidean n dimensional Space 7 2. Definition of n Dimensional Euclidean Space...........

More information

The scope of the midterm exam is up to and includes Section 2.1 in the textbook (homework sets 1-4). Below we highlight some of the important items.

The scope of the midterm exam is up to and includes Section 2.1 in the textbook (homework sets 1-4). Below we highlight some of the important items. AMS 10: Review for the Midterm Exam The scope of the midterm exam is up to and includes Section 2.1 in the textbook (homework sets 1-4). Below we highlight some of the important items. Complex numbers

More information

Row Reduction and Echelon Forms

Row Reduction and Echelon Forms Row Reduction and Echelon Forms 1 / 29 Key Concepts row echelon form, reduced row echelon form pivot position, pivot, pivot column basic variable, free variable general solution, parametric solution existence

More information

1 Linear systems, existence, uniqueness

1 Linear systems, existence, uniqueness Jor-el Briones / Math 2F, 25 Summer Session, Practice Midterm Page of 9 Linear systems, existence, uniqueness For each part, construct an augmented matrix for a linear system with the given properties,

More information

Math 2210Q (Roby) Practice Midterm #1 Solutions Fall 2017

Math 2210Q (Roby) Practice Midterm #1 Solutions Fall 2017 Math Q (Roby) Practice Midterm # Solutions Fall 7 SHOW ALL YOUR WORK! Make sure you give reasons to support your answers. If you have any questions, do not hesitate to ask! For this exam no calculators

More information

Problem Sheet 1 with Solutions GRA 6035 Mathematics

Problem Sheet 1 with Solutions GRA 6035 Mathematics Problem Sheet 1 with Solutions GRA 6035 Mathematics BI Norwegian Business School 2 Problems 1. From linear system to augmented matrix Write down the coefficient matrix and the augmented matrix of the following

More information

MATH 2331 Linear Algebra. Section 1.1 Systems of Linear Equations. Finding the solution to a set of two equations in two variables: Example 1: Solve:

MATH 2331 Linear Algebra. Section 1.1 Systems of Linear Equations. Finding the solution to a set of two equations in two variables: Example 1: Solve: MATH 2331 Linear Algebra Section 1.1 Systems of Linear Equations Finding the solution to a set of two equations in two variables: Example 1: Solve: x x = 3 1 2 2x + 4x = 12 1 2 Geometric meaning: Do these

More information

Math 308 Midterm, Feb 11th 2015 Winter Form Bonus. Possible (6) 63

Math 308 Midterm, Feb 11th 2015 Winter Form Bonus. Possible (6) 63 Math 38 Midterm, Feb th 5 Winter 5 Your Name Your Signature Student ID # Points.. 3. 4. 5. Form Bonus Possible 6 6 6 3 (6) 63 No books are allowed. You may use a calculator. Place a box around your final

More information

0.0.1 Section 1.2: Row Reduction and Echelon Forms Echelon form (or row echelon form): 1. All nonzero rows are above any rows of all zeros.

0.0.1 Section 1.2: Row Reduction and Echelon Forms Echelon form (or row echelon form): 1. All nonzero rows are above any rows of all zeros. 0.0.1 Section 1.2: Row Reduction and Echelon Forms Echelon form (or row echelon form): 1. All nonzero rows are above any rows of all zeros. 2. Each leading entry (i.e. left most nonzero entry) of a row

More information

Chapter 1: Linear Equations

Chapter 1: Linear Equations Chapter : Linear Equations (Last Updated: September, 7) The material for these notes is derived primarily from Linear Algebra and its applications by David Lay (4ed).. Systems of Linear Equations Before

More information

Lecture 6: Spanning Set & Linear Independency

Lecture 6: Spanning Set & Linear Independency Lecture 6: Elif Tan Ankara University Elif Tan (Ankara University) Lecture 6 / 0 Definition (Linear Combination) Let v, v 2,..., v k be vectors in (V,, ) a vector space. A vector v V is called a linear

More information

Announcements Wednesday, November 15

Announcements Wednesday, November 15 Announcements Wednesday, November 15 The third midterm is on this Friday, November 17. The exam covers 3.1, 3.2, 5.1, 5.2, 5.3, and 5.5. About half the problems will be conceptual, and the other half computational.

More information

Chapter 3. Directions: For questions 1-11 mark each statement True or False. Justify each answer.

Chapter 3. Directions: For questions 1-11 mark each statement True or False. Justify each answer. Chapter 3 Directions: For questions 1-11 mark each statement True or False. Justify each answer. 1. (True False) Asking whether the linear system corresponding to an augmented matrix [ a 1 a 2 a 3 b ]

More information

Linear Equation: a 1 x 1 + a 2 x a n x n = b. x 1, x 2,..., x n : variables or unknowns

Linear Equation: a 1 x 1 + a 2 x a n x n = b. x 1, x 2,..., x n : variables or unknowns Linear Equation: a x + a 2 x 2 +... + a n x n = b. x, x 2,..., x n : variables or unknowns a, a 2,..., a n : coefficients b: constant term Examples: x + 4 2 y + (2 5)z = is linear. x 2 + y + yz = 2 is

More information

Linear Algebra Exam 1 Spring 2007

Linear Algebra Exam 1 Spring 2007 Linear Algebra Exam 1 Spring 2007 March 15, 2007 Name: SOLUTION KEY (Total 55 points, plus 5 more for Pledged Assignment.) Honor Code Statement: Directions: Complete all problems. Justify all answers/solutions.

More information

Math 2802 Applications of Linear Algebra. School of Mathematics Georgia Institute of Technology

Math 2802 Applications of Linear Algebra. School of Mathematics Georgia Institute of Technology Math 2802 Applications of Linear Algebra School of Mathematics Georgia Institute of Technology Resources There are links from Canvas. Everything is on the course webpage. Calendar How to succeed in class

More information

LECTURES 4/5: SYSTEMS OF LINEAR EQUATIONS

LECTURES 4/5: SYSTEMS OF LINEAR EQUATIONS LECTURES 4/5: SYSTEMS OF LINEAR EQUATIONS MA1111: LINEAR ALGEBRA I, MICHAELMAS 2016 1 Linear equations We now switch gears to discuss the topic of solving linear equations, and more interestingly, systems

More information

Solutions of Linear system, vector and matrix equation

Solutions of Linear system, vector and matrix equation Goals: Solutions of Linear system, vector and matrix equation Solutions of linear system. Vectors, vector equation. Matrix equation. Math 112, Week 2 Suggested Textbook Readings: Sections 1.3, 1.4, 1.5

More information

Linear Algebra Math 221

Linear Algebra Math 221 Linear Algebra Math 221 Open Book Exam 1 Open Notes 3 Sept, 24 Calculators Permitted Show all work (except #4) 1 2 3 4 2 1. (25 pts) Given A 1 2 1, b 2 and c 4. 1 a) (7 pts) Bring matrix A to echelon form.

More information

1300 Linear Algebra and Vector Geometry

1300 Linear Algebra and Vector Geometry 1300 Linear Algebra and Vector Geometry R. Craigen Office: MH 523 Email: craigenr@umanitoba.ca May-June 2017 Introduction: linear equations Read 1.1 (in the text that is!) Go to course, class webpages.

More information

Review Solutions for Exam 1

Review Solutions for Exam 1 Definitions Basic Theorems. Finish the definition: Review Solutions for Exam (a) A linear combination of vectors {v,..., v n } is: any vector of the form c v + c v + + c n v n (b) A set of vectors {v,...,

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

MATH 1553 PRACTICE MIDTERM 1 (VERSION A)

MATH 1553 PRACTICE MIDTERM 1 (VERSION A) MATH 1553 PRACTICE MIDTERM 1 (VERSION A) Name Section 1 2 3 4 5 Total Please read all instructions carefully before beginning. Each problem is worth 1 points. The maximum score on this exam is 5 points.

More information

MATH10212 Linear Algebra B Homework Week 3. Be prepared to answer the following oral questions if asked in the supervision class

MATH10212 Linear Algebra B Homework Week 3. Be prepared to answer the following oral questions if asked in the supervision class MATH10212 Linear Algebra B Homework Week Students are strongly advised to acquire a copy of the Textbook: D. C. Lay Linear Algebra its Applications. Pearson, 2006. ISBN 0-521-2871-4. Normally, homework

More information

Chapter 1: Linear Equations

Chapter 1: Linear Equations Chapter : Linear Equations (Last Updated: September, 6) The material for these notes is derived primarily from Linear Algebra and its applications by David Lay (4ed).. Systems of Linear Equations Before

More information

1 Last time: determinants

1 Last time: determinants 1 Last time: determinants Let n be a positive integer If A is an n n matrix, then its determinant is the number det A = Π(X, A)( 1) inv(x) X S n where S n is the set of n n permutation matrices Π(X, A)

More information

Announcements Monday, September 25

Announcements Monday, September 25 Announcements Monday, September 25 The midterm will be returned in recitation on Friday. You can pick it up from me in office hours before then. Keep tabs on your grades on Canvas. WeBWorK 1.7 is due Friday

More information

Check that your exam contains 20 multiple-choice questions, numbered sequentially.

Check that your exam contains 20 multiple-choice questions, numbered sequentially. MATH 22 MAKEUP EXAMINATION Fall 26 VERSION A NAME STUDENT NUMBER INSTRUCTOR SECTION NUMBER On your scantron, write and bubble your PSU ID, Section Number, and Test Version. Failure to correctly code these

More information

It is the purpose of this chapter to establish procedures for efficiently determining the solution of a system of linear equations.

It is the purpose of this chapter to establish procedures for efficiently determining the solution of a system of linear equations. Chapter 2. Linear Systems and their Solution It is the purpose of this chapter to establish procedures for efficiently determining the solution of a system of linear equations. We know that the data within

More information

MATH240: Linear Algebra Review for exam #1 6/10/2015 Page 1

MATH240: Linear Algebra Review for exam #1 6/10/2015 Page 1 MATH24: Linear Algebra Review for exam # 6//25 Page No review sheet can cover everything that is potentially fair game for an exam, but I tried to hit on all of the topics with these questions, as well

More information

MATH240: Linear Algebra Exam #1 solutions 6/12/2015 Page 1

MATH240: Linear Algebra Exam #1 solutions 6/12/2015 Page 1 MATH4: Linear Algebra Exam # solutions 6//5 Page Write legibly and show all work. No partial credit can be given for an unjustified, incorrect answer. Put your name in the top right corner and sign the

More information

Linear Combination. v = a 1 v 1 + a 2 v a k v k

Linear Combination. v = a 1 v 1 + a 2 v a k v k Linear Combination Definition 1 Given a set of vectors {v 1, v 2,..., v k } in a vector space V, any vector of the form v = a 1 v 1 + a 2 v 2 +... + a k v k for some scalars a 1, a 2,..., a k, is called

More information

Announcements Wednesday, August 30

Announcements Wednesday, August 30 Announcements Wednesday, August 30 WeBWorK due on Friday at 11:59pm. The first quiz is on Friday, during recitation. It covers through Monday s material. Quizzes mostly test your understanding of the homework.

More information

Solutions to Math 51 First Exam October 13, 2015

Solutions to Math 51 First Exam October 13, 2015 Solutions to Math First Exam October 3, 2. (8 points) (a) Find an equation for the plane in R 3 that contains both the x-axis and the point (,, 2). The equation should be of the form ax + by + cz = d.

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

5) homogeneous and nonhomogeneous systems 5a) The homogeneous matrix equation, A x = 0 is always consistent.

5) homogeneous and nonhomogeneous systems 5a) The homogeneous matrix equation, A x = 0 is always consistent. 5) homogeneous and nonhomogeneous systems 5a) The homogeneous matrix equation, A x is always consistent. 5b) If A x b is also consistent, then the solution set to A x b is a translation of the solution

More information

Abstract Vector Spaces and Concrete Examples

Abstract Vector Spaces and Concrete Examples LECTURE 18 Abstract Vector Spaces and Concrete Examples Our discussion of linear algebra so far has been devoted to discussing the relations between systems of linear equations, matrices, and vectors.

More information

Math 3191 Applied Linear Algebra

Math 3191 Applied Linear Algebra Math 191 Applied Linear Algebra Lecture 16: Change of Basis Stephen Billups University of Colorado at Denver Math 191Applied Linear Algebra p.1/0 Rank The rank of A is the dimension of the column space

More information

Determine whether the following system has a trivial solution or non-trivial solution:

Determine whether the following system has a trivial solution or non-trivial solution: Practice Questions Lecture # 7 and 8 Question # Determine whether the following system has a trivial solution or non-trivial solution: x x + x x x x x The coefficient matrix is / R, R R R+ R The corresponding

More information

1 General Tips and Guidelines for Proofs

1 General Tips and Guidelines for Proofs Math 20F, 2015SS1 / TA: Jor-el Briones / Sec: A01 / Handout Page 1 of 5 1 General Tips and Guidelines for Proofs Proofs, or really any question that asks you to justify or explain something, are a huge

More information

Announcements Wednesday, August 30

Announcements Wednesday, August 30 Announcements Wednesday, August 30 WeBWorK due on Friday at 11:59pm. The first quiz is on Friday, during recitation. It covers through Monday s material. Quizzes mostly test your understanding of the homework.

More information

Matrix equation Ax = b

Matrix equation Ax = b Fall 2017 Matrix equation Ax = b Authors: Alexander Knop Institute: UC San Diego Previously On Math 18 DEFINITION If v 1,..., v l R n, then a set of all linear combinations of them is called Span {v 1,...,

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

Lecture 03. Math 22 Summer 2017 Section 2 June 26, 2017

Lecture 03. Math 22 Summer 2017 Section 2 June 26, 2017 Lecture 03 Math 22 Summer 2017 Section 2 June 26, 2017 Just for today (10 minutes) Review row reduction algorithm (40 minutes) 1.3 (15 minutes) Classwork Review row reduction algorithm Review row reduction

More information

Solutions to Math 51 Midterm 1 July 6, 2016

Solutions to Math 51 Midterm 1 July 6, 2016 Solutions to Math 5 Midterm July 6, 26. (a) (6 points) Find an equation (of the form ax + by + cz = d) for the plane P in R 3 passing through the points (, 2, ), (2,, ), and (,, ). We first compute two

More information

Linear Algebra. Introduction. Marek Petrik 3/23/2017. Many slides adapted from Linear Algebra Lectures by Martin Scharlemann

Linear Algebra. Introduction. Marek Petrik 3/23/2017. Many slides adapted from Linear Algebra Lectures by Martin Scharlemann Linear Algebra Introduction Marek Petrik 3/23/2017 Many slides adapted from Linear Algebra Lectures by Martin Scharlemann Midterm Results Highest score on the non-r part: 67 / 77 Score scaling: Additive

More information

Math 2114 Common Final Exam May 13, 2015 Form A

Math 2114 Common Final Exam May 13, 2015 Form A Math 4 Common Final Exam May 3, 5 Form A Instructions: Using a # pencil only, write your name and your instructor s name in the blanks provided. Write your student ID number and your CRN in the blanks

More information

Math 301 Test I. M. Randall Holmes. September 8, 2008

Math 301 Test I. M. Randall Holmes. September 8, 2008 Math 0 Test I M. Randall Holmes September 8, 008 This exam will begin at 9:40 am and end at 0:5 am. You may use your writing instrument, a calculator, and your test paper; books, notes and neighbors to

More information

Math 1553 Introduction to Linear Algebra. School of Mathematics Georgia Institute of Technology

Math 1553 Introduction to Linear Algebra. School of Mathematics Georgia Institute of Technology Math 1553 Introduction to Linear Algebra School of Mathematics Georgia Institute of Technology Chapter 1 Overview Linear. Algebra. What is Linear Algebra? Linear having to do with lines/planes/etc. For

More information

Math 220: Summer Midterm 1 Questions

Math 220: Summer Midterm 1 Questions Math 220: Summer 2015 Midterm 1 Questions MOST questions will either look a lot like a Homework questions This lists draws your attention to some important types of HW questions. SOME questions will have

More information

Math 102, Winter 2009, Homework 7

Math 102, Winter 2009, Homework 7 Math 2, Winter 29, Homework 7 () Find the standard matrix of the linear transformation T : R 3 R 3 obtained by reflection through the plane x + z = followed by a rotation about the positive x-axes by 6

More information

Contents. 1 Vectors, Lines and Planes 1. 2 Gaussian Elimination Matrices Vector Spaces and Subspaces 124

Contents. 1 Vectors, Lines and Planes 1. 2 Gaussian Elimination Matrices Vector Spaces and Subspaces 124 Matrices Math 220 Copyright 2016 Pinaki Das This document is freely redistributable under the terms of the GNU Free Documentation License For more information, visit http://wwwgnuorg/copyleft/fdlhtml Contents

More information

Fall 2016 MATH*1160 Final Exam

Fall 2016 MATH*1160 Final Exam Fall 2016 MATH*1160 Final Exam Last name: (PRINT) First name: Student #: Instructor: M. R. Garvie Dec 16, 2016 INSTRUCTIONS: 1. The exam is 2 hours long. Do NOT start until instructed. You may use blank

More information

b for the linear system x 1 + x 2 + a 2 x 3 = a x 1 + x 3 = 3 x 1 + x 2 + 9x 3 = 3 ] 1 1 a 2 a

b for the linear system x 1 + x 2 + a 2 x 3 = a x 1 + x 3 = 3 x 1 + x 2 + 9x 3 = 3 ] 1 1 a 2 a Practice Exercises for Exam Exam will be on Monday, September 8, 7. The syllabus for Exam consists of Sections One.I, One.III, Two.I, and Two.II. You should know the main definitions, results and computational

More information

Section Gaussian Elimination

Section Gaussian Elimination Section. - Gaussian Elimination A matrix is said to be in row echelon form (REF) if it has the following properties:. The first nonzero entry in any row is a. We call this a leading one or pivot one..

More information

Math 2331 Linear Algebra

Math 2331 Linear Algebra 1.2 Echelon Forms Math 2331 Linear Algebra 1.2 Row Reduction and Echelon Forms Shang-Huan Chiu Department of Mathematics, University of Houston schiu@math.uh.edu math.uh.edu/ schiu/ January 22, 2018 Shang-Huan

More information

Math 220 Some Exam 1 Practice Problems Fall 2017

Math 220 Some Exam 1 Practice Problems Fall 2017 Math Some Exam Practice Problems Fall 7 Note that this is not a sample exam. This is much longer than your exam will be. However, the ideas and question types represented here (along with your homework)

More information

APPM 2360 Exam 2 Solutions Wednesday, March 9, 2016, 7:00pm 8:30pm

APPM 2360 Exam 2 Solutions Wednesday, March 9, 2016, 7:00pm 8:30pm APPM 2360 Exam 2 Solutions Wednesday, March 9, 206, 7:00pm 8:30pm ON THE FRONT OF YOUR BLUEBOOK write: () your name, (2) your student ID number, (3) recitation section (4) your instructor s name, and (5)

More information

Math 54. Selected Solutions for Week 5

Math 54. Selected Solutions for Week 5 Math 54. Selected Solutions for Week 5 Section 4. (Page 94) 8. Consider the following two systems of equations: 5x + x 3x 3 = 5x + x 3x 3 = 9x + x + 5x 3 = 4x + x 6x 3 = 9 9x + x + 5x 3 = 5 4x + x 6x 3

More information

Mid-term Exam #1 MATH 205, Fall 2014

Mid-term Exam #1 MATH 205, Fall 2014 Mid-term Exam # MATH, Fall Name: Instructions: Please answer as many of the following questions as possible. Show all of your work and give complete explanations when requested. Write your final answer

More information

Week 3 September 5-7.

Week 3 September 5-7. MA322 Weekl topics and quiz preparations Week 3 September 5-7. Topics These are alread partl covered in lectures. We collect the details for convenience.. Solutions of homogeneous equations AX =. 2. Using

More information

Math 220 F11 Lecture Notes

Math 220 F11 Lecture Notes Math 22 F Lecture Notes William Chen November 4, 2. Lecture. Firstly, lets just get some notation out of the way. Notation. R, Q, C, Z, N,,,, {},, A B. Everyone in high school should have studied equations

More information

Sections 1.5, 1.7. Ma 322 Fall Ma 322. Sept

Sections 1.5, 1.7. Ma 322 Fall Ma 322. Sept Sections 1.5, 1.7 Ma 322 Fall 213 Ma 322 Sept. 9-13 Summary ˆ Solutions of homogeneous equations AX =. ˆ Using the rank. ˆ Parametric solution of AX = B. ˆ Linear dependence and independence of vectors

More information

Announcements Wednesday, November 15

Announcements Wednesday, November 15 3π 4 Announcements Wednesday, November 15 Reviews today: Recitation Style Solve and discuss Practice problems in groups Preparing for the exam tips and strategies It is not mandatory Eduardo at Culc 141,

More information

Math 308 Midterm Practice Winter 2015

Math 308 Midterm Practice Winter 2015 Math 308 Midterm Practice Winter 205 The Midterm will take place Feb th, during lecture time. It will cover the material of Chapter, Chapter 2 and Chapter 3, Section 3.. You do not need to bring paper

More information

Linear Algebra Homework and Study Guide

Linear Algebra Homework and Study Guide Linear Algebra Homework and Study Guide Phil R. Smith, Ph.D. February 28, 20 Homework Problem Sets Organized by Learning Outcomes Test I: Systems of Linear Equations; Matrices Lesson. Give examples of

More information

Additional Problems for Midterm 1 Review

Additional Problems for Midterm 1 Review Additional Problems for Midterm Review About This Review Set As stated in the syllabus, a goal of this course is to prepare students for more advanced courses that have this course as a pre-requisite.

More information