MTH 464: Computational Linear Algebra

Size: px
Start display at page:

Download "MTH 464: Computational Linear Algebra"

Transcription

1 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) Lecture Outlines January 9, / 86 Contents I 1 Lecture 01 2 Lecture 02 3 Lecture 03 4 Lecture 04 5 Lecture 05 6 Lecture 06 7 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

2 Lecture 01 Overview Goal for today: Understand the basics of linear systems [section 1.1] Outline: 1 Linear Systems 2 Matrix notation and augmented form 3 Solutions 4 Solving Linear Systems Assignment (1.1): Read: sections 1.1 and 1.2 Work: section 1.1 (p. 10) #3, 5, 9, 13, 15, 17, 22, 23, 25 Extra practice: remaining odds (1 31) Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

3 Lecture 01 Linear Systems What is a linear system? Examples Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

4 Lecture 01 Matrix and Vector Notation Definition An m n matrix is a rectangular layout of numbers having m rows and n columns. For a matrix A the notation a ij will refer to the entry or number in the row i and column j of A. Definition A column vector of size m is a m 1 matrix. We denote a vector using a bold lower case letter or as an arrow above a lower case letter. For v or v the notation v i will refer to the entry or number in the i position. Remarks: We call an m n matrix of all zeros the zero matrix and is written as 0. We call a m dimensional vector of all zeros the zero vector and is written as 0. Sage makes it simple to evaluate and manipulate vectors and Linear matrices. Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

5 Coefficient Matrix Lecture 01 In a linear system we notice that what matter what the variable names are rather it is their coefficients. This motivates the creation of the coefficient matrix. Definition Consider the linear system a 11 x a 1n x n = b 1 a 21 x a 2n x n = b 2. =. a m1 x a mn x n = b m. The coefficient matrix for the linear system is defined as the matrix A with entries a ij. The solution vector is x with entries x i. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

6 Lecture 01 Augmented Matrix Definition Suppose we have a system of m equations with n variables with coefficient matrix A and the vector of constants b. Then the augmented matrix of the system of equations is the m (n + 1) matrix whose first n columns are the columns of A and last column is the column vector b. We denote this matrix as [ A b ]. Remarks: The solution set to the augmented problem is identical to the solution set of the linear system. It is far easier to manipulate the augmented problem since we are just focusing on the numbers. It is important to remember the augmented problem is equivalent to the linear system. Column j refers to the coefficients of x j for each equation. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

7 Lecture 01 Solutions Definition (page 3) A solution of a linear system in variables x 1, x 2,..., x n is a list (s 1, s 2,..., s n ) of corresponding values which together satisfy all of the equations. Claim (page 4) Any linear system has: exactly one solution, infinitely many solutions, or no solution. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

8 Solving Linear Systems Lecture 01 Overview: 1 Represent the system as an augmented matrix [ A b ] 2 Reduce it to an equivalent system (with same solution set) in simpler form using elementary row operations (EROs): Replacement: add a multiple of one row to another (replacing it) Interchange: swap two rows Scaling: multiply one row by a nonzero constant 3 Read off the solutions from the resulting simpler form Note: The simpler form is Reduced Echelon Form (section 1.2) Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 01 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

9 Lecture 02 Overview Goal for today: Outline: Understand the definition of consistent equations and to identify pivot positions [section 1.2] 1 Echelon forms 2 Pivots 3 Definition of consistency Assignment (1.2): Read: sections 1.3 Work: section 1.2 (p. 21) #1, 3, 9, 11, 14, 15, 17, 22, 23, 25 Extra practice: #5, 7, 13, 19, 21, 29 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

10 Echelon Forms Definition (page 13) Lecture 02 A matrix is in echelon form (EF) if and only if: every nonzero row is above all zero rows each leading entry is right of the leading entry in the previous row It is in reduced echelon form (REF) if also: each leading entry is a 1 each leading 1 is the only nozero entry in its column Definition (page 13) Two matrices are row-equivalent if and only if one can be row-reduced to the other. Notation: A B Theorem 1 (page 13) Each matrix is row-equivalent to exactly one matrix in REF. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

11 Lecture 02 Row Reduction Definition (page 14) A pivot position in a matrix is the location of a leading entry in the REF of that matrix. Method: Row-Reduction (pages 15 17) To reduce a matrix to REF, use EROs to put zeros: 1 below the pivot positions (working left to right) 2 above the pivot positions (working right to left) Remarks: Also known as Gaussian Elimination This is the fastest method for solving linear systems By hand: use 1 s as pivots where possible (to avoid fractions) On computer: use largest available pivot (to minimize roundoff) Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

12 Lecture 02 Solutions from REF Convention (page 19) From REF, solve for the variables corresponding to the pivots (basic variables) in terms of the rest, called free variables. Definition A linear system is consistent if there exists a solution. Theorem 2 (page 21) A linear system is consistent if and only if the REF of its augmented matrix does not have a row of the form [ b ] with b 0 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

13 Lecture 02 Free Variables Remarks: The number of pivots is enough denoted as r. This number enables one to prove many properties of a matrix or about the solution set of a linear system involving this matrix. The appearance of free variables is not bad, per se. It suggests a loss of uniqueness of a solution, if it exists, in a linear system. Much on more on this later. Your Mantra: If you need to know only one thing, then know that pivots are king! Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

14 Lecture 02 Examples Example 3 Consider the matrix A = If A is an augmented matrix then is there a solution? Is it unique? 2 If A is a coefficient matrix then given any 3 1 vector of constants, b, is there a solution? If so, is it unique? 3 Answer the same questions for the matrix: A = Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 02 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

15 Lecture 03 Overview Goal for today: Understand the vector equation x 1 a x n a n = b [section 1.3] Outline: 1 Vectors 2 Linear Combinations 3 Span Assignment (1.3): Read: section 1.4 Work: section 1.3 (p. 32) #3, 8, 9, 12, 13, 16, 19, 23, 24, 25 Extra practice: #1, 15, 17, 21 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

16 Lecture 03 Vectors Definition (page 27) A vector is a one-column matrix. The set of all vectors with n real entries is denoted by R n and called n-dimensional Euclidean space. Geometric interpretation: points and directions Operations: sums and scalar multiples Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

17 Interpretation of Vectors Lecture 03 There are two common ways of interpreting vectors: 1 Forces - the vector has a magnitude or length and is pointing in a particular direction. 2 Displacements - the vector stores the change in an object s coordinate position. For instance if you are at the point (2, 1) and move one unit along the line with slope 3/4 then where would your new position be? x new = x start + x = y new = y start + y = Hence we have moved one unit step along v = ( 3 5, 4 ). 5 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

18 Lecture 03 Algebraic Properties of Vectors For all vectors u, v, w in R n and all scalars c and d: (i) u + v = v + u (ii) (u + v) + w = u + (v + w) (iii) u + 0 = 0 + u = u (iv) u + ( u) = 0 (v) c(u + v) = cu + cv (vi) (c + d)u = cu + du (vii) c(du) = (cd)u (viii) 1u = u Remark: There is no such thing as vector multiplication. Then what is the dot product? Cross product? Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

19 Lecture 03 Linear Combinations Definition (page 27) Given vectors v 1,..., v p in R n and scalars c 1,..., c p, the vector y = c 1 v c p v p is a linear combination of vectors v 1,..., v p with weights c 1,..., c p. Fact (page 29 part of Theorem 3) The vector equation x 1 a 1 + x 2 a x n a n = b has the same solution set as the linear system with augmented matrix [ a1 a 2... a n b ] Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

20 Lecture 03 Geometric Interpretation of Linear Combinations d c b u v 2v a w -2v -v -u x y Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 ] Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

21 Lecture 03 Span (as a noun) Definition (page 30) Given vectors v 1,..., v p in R n, the span of these vectors is the set of all linear combinations of them. In symbols: Span { v 1,..., v p } = { c 1 v c p v p : c 1,..., c p R } Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 03 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

22 Lecture 04 Overview Goal for today: Understand the matrix equation Ax = b [section 1.4] Outline: 1 Span (revisited) 2 Matrix Equation 3 Equivalence 4 Linear Systems and Span Assignment (1.4): Read: section 1.5 Work: section 1.4 (p. 40) #3, 5, 7, 9, 11, 14, 17, 19, 23 Extra practice: #1, 13, 15, 21, 25, 27 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 04 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

23 Lecture 04 Span (revisited) Span (as a noun): Definition (page 30) Given vectors v 1,..., v p in R m, the span of (or subset generated by) these vectors is the set of all linear combinations of them. In symbols: Span { v 1,..., v p } = { c 1 v c p v p : c 1,..., c p R } Span (as a verb): Definition (page 37) A set of vectors v 1,..., v p in R m spans (or generates) R m if and only if every vector in R m is a linear combination of v 1,..., v p : that is, if and only if Span { v 1,..., v p } = R m Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 04 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

24 Lecture 04 Matrix Equation Definition (page 35) If A is an m n matrix with columns a 1,..., a n, and x R n then the matrix-vector product, is n Ax = x i a i Notice the matrix-vector product is a vector in R m. Remarks: Why is the matrix vector product generate a vector in R m? Why does x have to be of size n? Given b R m then Ax = b is called a matrix equation. i=1 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 04 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

25 Lecture 04 Equivalence A linear system of equations can be written in three alternative forms: 1 (Transformation) A matrix equation: Ax = b. 2 (Coordinates) A vector equation: x 1 a x n a n = b. 3 (Matrices) An augmented problem: [ A b ]. Remarks: The solution set is identical for each situation. The interpretation of the solution is different in each context. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 04 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

26 Lecture 04 Span and Existence of Solutions Theorem 4 (page 37) Let A be an m n matrix. The following are equivalent: For each b in R m, the matrix equation Ax = b has a solution. Each b in R m is a linear combination of the columns of A. The columns of A span R m. A has a pivot position in every row. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 04 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

27 Lecture 05 Overview Goal for today: Outline: Learn to find solution sets in parametric vector form [section 1.5] 1 Span (yep, again!) 2 Overview 3 Homogeneous Systems 4 Nonhomogeneous Systems Assignment (1.5): Read: section 1.6 Work: section 1.5 (p. 47) #5, 8, 12, 13, 17, 20(think about y=mx+b), 22, 24, 29, 30 Extra practice: Remaining problems in Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

28 Lecture 05 Span (one more time... ) Definition (page 30) Given vectors v 1,..., v p in R m, the span of (or subset generated by) these vectors is the set of all linear combinations of them. Definition (page 37) A set of vectors v 1,..., v p in R m spans (or generates) R m if and only if every vector in R m is a linear combination of v 1,..., v p. Theorem 4 (page 37) Let A be an m n matrix. The following are equivalent: For each b in R m, the matrix equation Ax = b has a solution. Each b in R m is a linear combination of the columns of A. The columns of A span R m. A has a pivot position in every row. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

29 Lecture 05 Overview A system of linear equations is equivalent to: An augmented problem: A matrix equation: [ A b ] Ax = b Solution Strategy: 1 Represent linear system or matrix equation as an augmented problem. 2 Reduce the matrix to an echelon form.rref is preferred but not necessary. 3 The number of pivots and locations indicate if a solution exists and if it is unique or not. Answering this question is often called the fundamental question of linear algebra. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

30 Lecture 05 Example 5 Consider the system of equations: x 1 + x 3 = 5 2x 2 + x 2 + 3x 3 = 0 1 Matrix Equation: ( ) x x x 3 = ( ) Augmented Problem: ( ) Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

31 Lecture 05 Example-Continued ( ) ( ) How many pivots? What are the pivot columns? How many solutions? Solve for x 1 and x 2 in terms of the free variable x 3. x = 5 x 3 10 x 3 x 3 It is preferred to write it in parametric vector form, that is, 5 1 x = x Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

32 Homogeneous Systems Lecture 05 Definition (page 43) A linear system Ax = b is: homogeneous if b = 0 nonhomogeneous if b 0 Fact (page 43) A homogeneous system Ax = 0 always has the solution x = 0, which is called the trivial solution. Fact (page 43) A homogeneous system Ax = 0 has a nontrivial solution (x 0) if and only if the system has at least one free variable. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

33 Finding the full solution Lecture 05 Method: 1 Reduce the augmented matrix to reduced echelon form 2 Express each basic variable in terms of the free variables 3 Write the solution x as a vector in terms of the free variables 4 Express the solution as combination of vectors with free variables factored out. This is called parametric vector form, that is, x = p + m α i v i, i=1 where Ax = p, α i are the free variables with coefficient vectors v i, and m is the number of free variables. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

34 Lecture 05 Exercises Consider the question: Is b Span { v 1, v 2, v 3, v 4 }? Rewrite this statement in an equivalent form (there are multiple!). True or False: 1 If b is in the span of the columns of a matrix A then there exists a solution to Ax = b. 2 If b = 2v 1 + 3v 3 then it is in the span of v 1, v 2, and v 3. 3 Let u be a nonzero vector. Then the Span{u} contains a line through u and the origin. 4 The set Span{u, v} can always be visualized as a plane through the origin. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 05 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

35 Lecture 06 Overview Goal for today: Learn to apply linear algebra to some problems [section 1.6] Outline: 1 Exchange Model 2 Network Flow Assignment (1.6): Read: section 1.7 Work: section 1.6 (p. 55) #3, 5, 13, 15 Extra practice: Remaining questions Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 06 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

36 Lecture 06 Exchange Model Example Suppose an economy has four sectors: Mining (M), Lumber (L), Energy (E), and Transportation (T): M sells 10% of its output to L, 60% to E, and retains the rest. L sells 15% to M, 50% to E, 20% to T, and retains the rest. E sells 20% to M, 15% to L, 20% to T, and retains the rest. T sells 20% to M, 10% to L, 50% to E, and retains the rest. (a) Construct the exchange table for this economy. (b) Find a set of equilibrium prices for the economy. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 06 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

37 Lecture 06 Balancing a chemical equation Example Aluminum oxide and carbon react to create elemental aluminum and carbon dioxide: α 1 Al 2 O 3 + α 2 C β 1 Al + β 2 CO 2 Determine the smallest natural numbers that satisfy the equation. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 06 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

38 Network Flow Example Lecture 06 Find the general flow pattern in the following network: 200 B x 1 x 2 A x 3 C x 4 x 5 D 60 What happens when x 4 = 0? What is the minimum value of x 1 then? Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 06 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

39 Overview Goal for today: Outline: Lecture 07 Further understand the concept of linear independence [section 1.7] 1 Concept and Definition 2 Matrix Formulation and connection to vector equation 3 Some Easy Cases 4 Alternate View Assignment (1.7): Review - Supplementary exercises (pg. 89) Work (DUE NEXT CLASS PERIOD): section 1.7 (p. 60) #2, 5, 12, 18, 20, 27, 28 Extra practice: #7, 9, 13, 25, 29 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

40 Lecture 07 What is Linear Independence? Concept: Linear independence Vectors are linearly independent iff they are in independent directions Definition (page 56) A set of vectors { v 1,..., v p } is: linearly independent if and only if the vector equation x 1 v x p v p = 0 has only the trivial solution x 1 = 0,..., x p = 0 linearly dependent if and only if there exist weights c 1,..., c p not all zero such that c 1 v c p v p = 0 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

41 Lecture 07 Matrix Formulation Fact (page 57) The columns of a matrix A are linearly independent if and only if the equation Ax = 0 has only the trivial solution x = 0. Some easy cases: Any set which includes the zero vector is linearly dependent Any set containing one (nonzero) vector is linearly independent Any set containing two vectors is linearly independent if and only if neither vector is a multiple of the other Any set containing more vectors than entries is linearly dependent: Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

42 Lecture 07 Alternate View Theorem 8 (page 59) If v 1,..., v p are p vectors in R n and p > n, then { v 1,..., v p } is linearly dependent. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

43 Lecture 07 True/False If v 1,..., v 4 R 4 and v 3 = 2v 1 + v 2, then {v 1, v 2, v 3, v 4 } is a set of linearly independent vectors. If v 1 and v 2 are in R 4 and v 2 is not a scalar multiple of v 1, then {v 1, v 2 } is a set of linearly independent vectors. If v 1,..., v 4 are linear independent vectors in R 4 then {v 1, v 2, v 3 } is a set of linearly independent vectors. If v 1,..., v 4 are linear independent vectors in R 4 then the matrix [v 1 v 2 v 3 ] has 3 pivots. Let A be an m n matrix. If there exists a solution to Ax = b for every b R m then the columns of A are linearly independent. Linear Algebra (MTH 464) Lecture Outlines January 9, / 86 Lecture 07 Linear Algebra (MTH 464) Lecture Outlines January 9, / 86

MTH 464: Computational Linear Algebra

MTH 464: Computational Linear Algebra MTH 464: Computational Linear Algebra Lecture Outlines Exam 2 Material Prof. M. Beauregard Department of Mathematics & Statistics Stephen F. Austin State University March 2, 2018 Linear Algebra (MTH 464)

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

MTH 464: Computational Linear Algebra

MTH 464: Computational Linear Algebra MTH 464: Computational Linear Algebra Lecture Outlines Exam 2 Material Prof. M. Beauregard Department of Mathematics & Statistics Stephen F. Austin State University February 6, 2018 Linear Algebra (MTH

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

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 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

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

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

1 - Systems of Linear Equations

1 - Systems of Linear Equations 1 - Systems of Linear Equations 1.1 Introduction to Systems of Linear Equations Almost every problem in linear algebra will involve solving a system of equations. ü LINEAR EQUATIONS IN n VARIABLES We are

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

Lecture 22: Section 4.7

Lecture 22: Section 4.7 Lecture 22: Section 47 Shuanglin Shao December 2, 213 Row Space, Column Space, and Null Space Definition For an m n, a 11 a 12 a 1n a 21 a 22 a 2n A = a m1 a m2 a mn, the vectors r 1 = [ a 11 a 12 a 1n

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

Linear equations in linear algebra

Linear equations in linear algebra Linear equations in linear algebra Samy Tindel Purdue University Differential equations and linear algebra - MA 262 Taken from Differential equations and linear algebra Pearson Collections Samy T. Linear

More information

1 Last time: linear systems and row operations

1 Last time: linear systems and row operations 1 Last time: linear systems and row operations Here s what we did last time: a system of linear equations or linear system is a list of equations a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22

More information

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.3 VECTOR EQUATIONS VECTOR EQUATIONS Vectors in 2 A matrix with only one column is called a column vector, or simply a vector. An example of a vector with two entries

More information

Linear Algebra I Lecture 8

Linear Algebra I Lecture 8 Linear Algebra I Lecture 8 Xi Chen 1 1 University of Alberta January 25, 2019 Outline 1 2 Gauss-Jordan Elimination Given a system of linear equations f 1 (x 1, x 2,..., x n ) = 0 f 2 (x 1, x 2,..., x n

More information

DM559 Linear and Integer Programming. Lecture 2 Systems of Linear Equations. Marco Chiarandini

DM559 Linear and Integer Programming. Lecture 2 Systems of Linear Equations. Marco Chiarandini DM559 Linear and Integer Programming Lecture Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Outline 1. Outline 1. 3 A Motivating Example You are organizing

More information

ICS 6N Computational Linear Algebra Vector Equations

ICS 6N Computational Linear Algebra Vector Equations ICS 6N Computational Linear Algebra Vector Equations Xiaohui Xie University of California, Irvine xhx@uci.edu January 17, 2017 Xiaohui Xie (UCI) ICS 6N January 17, 2017 1 / 18 Vectors in R 2 An example

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

3. Replace any row by the sum of that row and a constant multiple of any other row.

3. Replace any row by the sum of that row and a constant multiple of any other row. Section. Solution of Linear Systems by Gauss-Jordan Method A matrix is an ordered rectangular array of numbers, letters, symbols or algebraic expressions. A matrix with m rows and n columns has size or

More information

Chapter 1. Vectors, Matrices, and Linear Spaces

Chapter 1. Vectors, Matrices, and Linear Spaces 1.4 Solving Systems of Linear Equations 1 Chapter 1. Vectors, Matrices, and Linear Spaces 1.4. Solving Systems of Linear Equations Note. We give an algorithm for solving a system of linear equations (called

More information

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra Sections 5.1 5.3 A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are

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

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

x n -2.5 Definition A list is a list of objects, where multiplicity is allowed, and order matters. For example, as lists

x n -2.5 Definition A list is a list of objects, where multiplicity is allowed, and order matters. For example, as lists Vectors, Linear Combinations, and Matrix-Vector Mulitiplication In this section, we introduce vectors, linear combinations, and matrix-vector multiplication The rest of the class will involve vectors,

More information

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. Sections A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra Sections 5.1 5.3 A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are

More information

Math 4A Notes. Written by Victoria Kala Last updated June 11, 2017

Math 4A Notes. Written by Victoria Kala Last updated June 11, 2017 Math 4A Notes Written by Victoria Kala vtkala@math.ucsb.edu Last updated June 11, 2017 Systems of Linear Equations A linear equation is an equation that can be written in the form a 1 x 1 + a 2 x 2 +...

More information

Math Week 1 notes

Math Week 1 notes Math 2270-004 Week notes We will not necessarily finish the material from a given day's notes on that day. Or on an amazing day we may get farther than I've predicted. We may also add or subtract some

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

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

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are real numbers. 1

More information

LECTURES 14/15: LINEAR INDEPENDENCE AND BASES

LECTURES 14/15: LINEAR INDEPENDENCE AND BASES LECTURES 14/15: LINEAR INDEPENDENCE AND BASES MA1111: LINEAR ALGEBRA I, MICHAELMAS 2016 1. Linear Independence We have seen in examples of span sets of vectors that sometimes adding additional vectors

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 1314 Week #14 Notes

Math 1314 Week #14 Notes Math 3 Week # Notes Section 5.: A system of equations consists of two or more equations. A solution to a system of equations is a point that satisfies all the equations in the system. In this chapter,

More information

Lecture 2 Systems of Linear Equations and Matrices, Continued

Lecture 2 Systems of Linear Equations and Matrices, Continued Lecture 2 Systems of Linear Equations and Matrices, Continued Math 19620 Outline of Lecture Algorithm for putting a matrix in row reduced echelon form - i.e. Gauss-Jordan Elimination Number of Solutions

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

Row Space, Column Space, and Nullspace

Row Space, Column Space, and Nullspace Row Space, Column Space, and Nullspace MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Introduction Every matrix has associated with it three vector spaces: row space

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

System of Linear Equations

System of Linear Equations Math 20F Linear Algebra Lecture 2 1 System of Linear Equations Slide 1 Definition 1 Fix a set of numbers a ij, b i, where i = 1,, m and j = 1,, n A system of m linear equations in n variables x j, is given

More information

Linear Algebra I Lecture 10

Linear Algebra I Lecture 10 Linear Algebra I Lecture 10 Xi Chen 1 1 University of Alberta January 30, 2019 Outline 1 Gauss-Jordan Algorithm ] Let A = [a ij m n be an m n matrix. To reduce A to a reduced row echelon form using elementary

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

Chapter 1: Systems of linear equations and matrices. Section 1.1: Introduction to systems of linear equations

Chapter 1: Systems of linear equations and matrices. Section 1.1: Introduction to systems of linear equations Chapter 1: Systems of linear equations and matrices Section 1.1: Introduction to systems of linear equations Definition: A linear equation in n variables can be expressed in the form a 1 x 1 + a 2 x 2

More information

Notes on Row Reduction

Notes on Row Reduction Notes on Row Reduction Francis J. Narcowich Department of Mathematics Texas A&M University September The Row-Reduction Algorithm The row-reduced form of a matrix contains a great deal of information, both

More information

Study Guide for Linear Algebra Exam 2

Study Guide for Linear Algebra Exam 2 Study Guide for Linear Algebra Exam 2 Term Vector Space Definition A Vector Space is a nonempty set V of objects, on which are defined two operations, called addition and multiplication by scalars (real

More information

Section 1.1 System of Linear Equations. Dr. Abdulla Eid. College of Science. MATHS 211: Linear Algebra

Section 1.1 System of Linear Equations. Dr. Abdulla Eid. College of Science. MATHS 211: Linear Algebra Section 1.1 System of Linear Equations College of Science MATHS 211: Linear Algebra (University of Bahrain) Linear System 1 / 33 Goals:. 1 Define system of linear equations and their solutions. 2 To represent

More information

Math 54 HW 4 solutions

Math 54 HW 4 solutions Math 54 HW 4 solutions 2.2. Section 2.2 (a) False: Recall that performing a series of elementary row operations A is equivalent to multiplying A by a series of elementary matrices. Suppose that E,...,

More information

SYMBOL EXPLANATION EXAMPLE

SYMBOL EXPLANATION EXAMPLE MATH 4310 PRELIM I REVIEW Notation These are the symbols we have used in class, leading up to Prelim I, and which I will use on the exam SYMBOL EXPLANATION EXAMPLE {a, b, c, } The is the way to write the

More information

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 1 x 2. x n 8 (4) 3 4 2

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 1 x 2. x n 8 (4) 3 4 2 MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS SYSTEMS OF EQUATIONS AND MATRICES Representation of a linear system The general system of m equations in n unknowns can be written a x + a 2 x 2 + + a n x n b a

More information

Linear Algebra Summary. Based on Linear Algebra and its applications by David C. Lay

Linear Algebra Summary. Based on Linear Algebra and its applications by David C. Lay Linear Algebra Summary Based on Linear Algebra and its applications by David C. Lay Preface The goal of this summary is to offer a complete overview of all theorems and definitions introduced in the chapters

More information

Linear Algebra. The analysis of many models in the social sciences reduces to the study of systems of equations.

Linear Algebra. The analysis of many models in the social sciences reduces to the study of systems of equations. POLI 7 - Mathematical and Statistical Foundations Prof S Saiegh Fall Lecture Notes - Class 4 October 4, Linear Algebra The analysis of many models in the social sciences reduces to the study of systems

More information

1111: Linear Algebra I

1111: Linear Algebra I 1111: Linear Algebra I Dr. Vladimir Dotsenko (Vlad) Lecture 13 Dr. Vladimir Dotsenko (Vlad) 1111: Linear Algebra I Lecture 13 1 / 8 The coordinate vector space R n We already used vectors in n dimensions

More information

Properties of Linear Transformations from R n to R m

Properties of Linear Transformations from R n to R m Properties of Linear Transformations from R n to R m MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Topic Overview Relationship between the properties of a matrix transformation

More information

Matrices and RRE Form

Matrices and RRE Form Matrices and RRE Form Notation R is the real numbers, C is the complex numbers (we will only consider complex numbers towards the end of the course) is read as an element of For instance, x R means that

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

Solving Linear Systems Using Gaussian Elimination

Solving Linear Systems Using Gaussian Elimination Solving Linear Systems Using Gaussian Elimination DEFINITION: A linear equation in the variables x 1,..., x n is an equation that can be written in the form a 1 x 1 +...+a n x n = b, where a 1,...,a n

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

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.1 SYSTEMS OF LINEAR EQUATIONS LINEAR EQUATION x 1,, x n A linear equation in the variables equation that can be written in the form a 1 x 1 + a 2 x 2 + + a n x n

More information

Topics. Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij

Topics. Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij Topics Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij or a ij lives in row i and column j Definition of a matrix

More information

VECTORS [PARTS OF 1.3] 5-1

VECTORS [PARTS OF 1.3] 5-1 VECTORS [PARTS OF.3] 5- Vectors and the set R n A vector of dimension n is an ordered list of n numbers Example: v = [ ] 2 0 ; w = ; z = v is in R 3, w is in R 2 and z is in R? 0. 4 In R 3 the R stands

More information

LINEAR ALGEBRA W W L CHEN

LINEAR ALGEBRA W W L CHEN LINEAR ALGEBRA W W L CHEN c W W L Chen, 1982, 28. This chapter originates from material used by the author at Imperial College, University of London, between 1981 and 199. It is available free to all individuals,

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

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

Lecture 6 & 7. Shuanglin Shao. September 16th and 18th, 2013

Lecture 6 & 7. Shuanglin Shao. September 16th and 18th, 2013 Lecture 6 & 7 Shuanglin Shao September 16th and 18th, 2013 1 Elementary matrices 2 Equivalence Theorem 3 A method of inverting matrices Def An n n matrice is called an elementary matrix if it can be obtained

More information

13. Systems of Linear Equations 1

13. Systems of Linear Equations 1 13. Systems of Linear Equations 1 Systems of linear equations One of the primary goals of a first course in linear algebra is to impress upon the student how powerful matrix methods are in solving systems

More information

Glossary of Linear Algebra Terms. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB

Glossary of Linear Algebra Terms. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB Glossary of Linear Algebra Terms Basis (for a subspace) A linearly independent set of vectors that spans the space Basic Variable A variable in a linear system that corresponds to a pivot column in the

More information

Elementary Linear Algebra

Elementary Linear Algebra Elementary Linear Algebra Linear algebra is the study of; linear sets of equations and their transformation properties. Linear algebra allows the analysis of; rotations in space, least squares fitting,

More information

Span & Linear Independence (Pop Quiz)

Span & Linear Independence (Pop Quiz) Span & Linear Independence (Pop Quiz). Consider the following vectors: v = 2, v 2 = 4 5, v 3 = 3 2, v 4 = Is the set of vectors S = {v, v 2, v 3, v 4 } linearly independent? Solution: Notice that the number

More information

Lecture 12: Solving Systems of Linear Equations by Gaussian Elimination

Lecture 12: Solving Systems of Linear Equations by Gaussian Elimination Lecture 12: Solving Systems of Linear Equations by Gaussian Elimination Winfried Just, Ohio University September 22, 2017 Review: The coefficient matrix Consider a system of m linear equations in n variables.

More information

Methods for Solving Linear Systems Part 2

Methods for Solving Linear Systems Part 2 Methods for Solving Linear Systems Part 2 We have studied the properties of matrices and found out that there are more ways that we can solve Linear Systems. In Section 7.3, we learned that we can use

More information

Matrix Algebra Lecture Notes. 1 What is Matrix Algebra? Last change: 18 July Linear forms

Matrix Algebra Lecture Notes. 1 What is Matrix Algebra? Last change: 18 July Linear forms Matrix Algebra Lecture Notes Last change: 18 July 2017 1 What is Matrix Algebra? 1.1 Linear forms It is well-known that the total cost of a purchase of amounts (in kilograms) g 1, g 2, g 3 of some goods

More information

Matrices and systems of linear equations

Matrices and systems of linear equations Matrices and systems of linear equations Samy Tindel Purdue University Differential equations and linear algebra - MA 262 Taken from Differential equations and linear algebra by Goode and Annin Samy T.

More information

1.1 SOLUTIONS. Replace R2 by R2 + (2)R1 and obtain: 2. Scale R2 by 1/3: Replace R1 by R1 + ( 5)R2:

1.1 SOLUTIONS. Replace R2 by R2 + (2)R1 and obtain: 2. Scale R2 by 1/3: Replace R1 by R1 + ( 5)R2: SOLUIONS Notes: he key exercises are 7 (or or ), 9, and 5 For brevity, the symbols R, R,, stand for row (or equation ), row (or equation ), and so on Additional notes are at the end of the section x +

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

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

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

2. Every linear system with the same number of equations as unknowns has a unique solution.

2. Every linear system with the same number of equations as unknowns has a unique solution. 1. For matrices A, B, C, A + B = A + C if and only if A = B. 2. Every linear system with the same number of equations as unknowns has a unique solution. 3. Every linear system with the same number of equations

More information

INVERSE OF A MATRIX [2.2]

INVERSE OF A MATRIX [2.2] INVERSE OF A MATRIX [2.2] The inverse of a matrix: Introduction We have a mapping from R n to R n represented by a matrix A. Can we invert this mapping? i.e. can we find a matrix (call it B for now) such

More information

We know how to identify the location of a point by means of coordinates: (x, y) for a point in R 2, or (x, y,z) for a point in R 3.

We know how to identify the location of a point by means of coordinates: (x, y) for a point in R 2, or (x, y,z) for a point in R 3. Vectors We know how to identify the location of a point by means of coordinates: (x, y) for a point in R 2, or (x, y,z) for a point in R 3. More generally, n-dimensional real Euclidean space R n is the

More information

Elementary maths for GMT

Elementary maths for GMT Elementary maths for GMT Linear Algebra Part 2: Matrices, Elimination and Determinant m n matrices The system of m linear equations in n variables x 1, x 2,, x n a 11 x 1 + a 12 x 2 + + a 1n x n = b 1

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

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

PH1105 Lecture Notes on Linear Algebra.

PH1105 Lecture Notes on Linear Algebra. PH05 Lecture Notes on Linear Algebra Joe Ó hógáin E-mail: johog@mathstcdie Main Text: Calculus for the Life Sciences by Bittenger, Brand and Quintanilla Other Text: Linear Algebra by Anton and Rorres Matrices

More information

Last Time. x + 3y = 6 x + 2y = 1. x + 3y = 6 y = 1. 2x + 4y = 8 x 2y = 1. x + 3y = 6 2x y = 7. Lecture 2

Last Time. x + 3y = 6 x + 2y = 1. x + 3y = 6 y = 1. 2x + 4y = 8 x 2y = 1. x + 3y = 6 2x y = 7. Lecture 2 January 9 Last Time 1. Last time we ended with saying that the following four systems are equivalent in the sense that we can move from one system to the other by a special move we discussed. (a) (b) (c)

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

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

Lectures on Linear Algebra for IT

Lectures on Linear Algebra for IT Lectures on Linear Algebra for IT by Mgr. Tereza Kovářová, Ph.D. following content of lectures by Ing. Petr Beremlijski, Ph.D. Department of Applied Mathematics, VSB - TU Ostrava Czech Republic 2. Systems

More information

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are real numbers. 1

More information

Mon Feb Matrix algebra and matrix inverses. Announcements: Warm-up Exercise:

Mon Feb Matrix algebra and matrix inverses. Announcements: Warm-up Exercise: Math 2270-004 Week 5 notes We will not necessarily finish the material from a given day's notes on that day We may also add or subtract some material as the week progresses, but these notes represent an

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

Exercise Sketch these lines and find their intersection.

Exercise Sketch these lines and find their intersection. These are brief notes for the lecture on Friday August 21, 2009: they are not complete, but they are a guide to what I want to say today. They are not guaranteed to be correct. 1. Solving systems of linear

More information

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS

chapter 12 MORE MATRIX ALGEBRA 12.1 Systems of Linear Equations GOALS chapter MORE MATRIX ALGEBRA GOALS In Chapter we studied matrix operations and the algebra of sets and logic. We also made note of the strong resemblance of matrix algebra to elementary algebra. The reader

More information

Chapter 4. Solving Systems of Equations. Chapter 4

Chapter 4. Solving Systems of Equations. Chapter 4 Solving Systems of Equations 3 Scenarios for Solutions There are three general situations we may find ourselves in when attempting to solve systems of equations: 1 The system could have one unique solution.

More information

Span and Linear Independence

Span and Linear Independence Span and Linear Independence It is common to confuse span and linear independence, because although they are different concepts, they are related. To see their relationship, let s revisit the previous

More information

Solving Systems of Linear Equations

Solving Systems of Linear Equations LECTURE 5 Solving Systems of Linear Equations Recall that we introduced the notion of matrices as a way of standardizing the expression of systems of linear equations In today s lecture I shall show how

More information

Elementary Matrices. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics

Elementary Matrices. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics Elementary Matrices MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Outline Today s discussion will focus on: elementary matrices and their properties, using elementary

More information

Linear Algebra Practice Problems

Linear Algebra Practice Problems Math 7, Professor Ramras Linear Algebra Practice Problems () Consider the following system of linear equations in the variables x, y, and z, in which the constants a and b are real numbers. x y + z = a

More information

MTH 464: Computational Linear Algebra

MTH 464: Computational Linear Algebra MTH 464: Computational Linear Algebra Lecture Outlines Exam 4 Material Prof. M. Beauregard Department of Mathematics & Statistics Stephen F. Austin State University April 15, 2018 Linear Algebra (MTH 464)

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

Solving Linear Systems

Solving Linear Systems Math 240 TA: Shuyi Weng Winter 2017 January 12, 2017 Solving Linear Systems Linear Systems You have dealt with linear equations and systems of linear equations since you first learn mathematics in elementary

More information

MATH 2050 Assignment 6 Fall 2018 Due: Thursday, November 1. x + y + 2z = 2 x + y + z = c 4x + 2z = 2

MATH 2050 Assignment 6 Fall 2018 Due: Thursday, November 1. x + y + 2z = 2 x + y + z = c 4x + 2z = 2 MATH 5 Assignment 6 Fall 8 Due: Thursday, November [5]. For what value of c does have a solution? Is it unique? x + y + z = x + y + z = c 4x + z = Writing the system as an augmented matrix, we have c R

More information