MATH 304, Fall Take Home QUIZ # 4. Due: 02/15/2018. In Class. Print name (LAST, First): SECTION #:

Size: px
Start display at page:

Download "MATH 304, Fall Take Home QUIZ # 4. Due: 02/15/2018. In Class. Print name (LAST, First): SECTION #:"

Transcription

1 MATH 304, Fall 2017 Take Home QUIZ # 4 Due: 02/15/2018. In Class Print name (LAST, First): SECTION #: INSTRUCTOR: Dr. Marco A. Roque Sol THE AGGIE CODE OF HONOR "An Aggie does not lie, cheat, or steal, or tolerate those who do." By signing below, you indicate that all work is your own and that you have neither given nor received help from any external sources. Show all your work neatly and concisely. You will be graded not merely on the final answer, but also on the quality and correctness of the work leading up to it. SIGNATURE:... Science is organized knowledge. Wisdom is organized life... Immanuel Kant MATLAB has a help facility that explains all its operations and commands. For example, to obtain information on the MATLAB command rand, you need only type help rand. The commands used in the MATLAB problems shown below are inv,floor, rand, tic, toc, rref, abs, max, round, sum, eye, triu, ones, zeros, and magic. The operations introduced are +,,,, and \. The + and represent the usual addition and subtraction operations for both scalars and matrices. The corresponds to multiplication of either scalars or matrices. For matrices whose entries are all real numbers the operation corresponds to the transpose operation. If A is a nonsingular n n matrix and B is any n r matrix, the operation A \ B is equivalent to computing A 1 B. 1. Use MATLAB to generate random 4 4 matrices A and B. For each of the following, compute A1, A2, A3, and A4 as indicated and determine which of the matrices are equal (you can use MATLAB to test whether two matrices are equal by computing their difference). (a) A1 = A B, A2 = B A, A3 = (A B ), A4 = (B A ) (b) A1 = A B, A2 = (A B), A3 = B A, A4 = (B A) (c) A1 = inv(a B), A2 = inv(a) inv(b), A3 = inv(b A), A4 = inv(b) inv(a) (d) A1 = inv((a B) ), A2 = inv(a B, A3 = inv(a ) inv(b ), A4 = (inv(a) inv(b))

2 2. Set n = 200 and generate an n n matrix and two vectors in R n, both having integer entries, by setting A = floor(10 rand(n)); b = sum(a ) ; z = ones(n, 1); (Since the matrix and vectors are large, we use semicolons to suppress the printout.) (a) The exact solution of the system Ax = b should be the vector z. Why? Explain. One could compute the solution in MATLAB using the \ operation or by computing A 1 and then multiplying A 1 times b. Let us compare these two computational methods for both speed and accuracy. One can use MATLAB s tic and toc commands to measure the elapsed time for each computation. To do this, use the commands tic, x = A \ b; toc tic, y = inv(a) b; toc Which method is faster? To compare the accuracy of the two methods, we can measure how close the computed solutions x and y are to the exact solution z. Do this with the commands max(abs(x z)) Which method produces the most accurate solution? (b) Repeat part (a), using n = 500 and n = 1000 max(abs(y z)) 3. Set A = floor(10 rand(6)). By construction, the matrix A will have integer entries. Let us change the sixth column of A so as to make the matrix singular. Set B = A, A(:, 6) = sum(b(1 : 5, :)) (a) Set x = ones(6, 1) and use MATLAB to compute Ax. Why do we know that A must be singular? Explain. Check that A is singular by computing its reduced row echelon form. (b) Set B = x [1 : 6] The product AB should equal the zero matrix. Why? Explain. Verify that this is so by computing AB with the MATLAB operation. (c) Set and C = floor(10 rand(6)) D = B + C Although C = D, the products AC and AD should be equal. Why? Explain. Compute A C and A D, and verify that they are indeed equal.

3 4.. Construct a matrix as follows: Set Why do we know that B must be nonsingular? Set B = eye(10) triu(ones(10), 1) C = inv(b) and x = C(:, 10) Now change B slightly by setting B(10, 1) = 1/256. Use MATLAB to compute the product Bx. From the result of this computation, what can you conclude about the new matrix B? Is it still nonsingular? Explain. Use MATLAB to compute its reduced row echelon form. 5. Using MATLAB. Generate a matrix A by setting A = floor(10 rand(6)) and generate a vector b by setting b = floor(20 rand(6, 1)) - 10 (a) Since A was generated randomly, we would expect it to be nonsingular. The system Ax = b should have a unique solution. Find the solution using the \ operation. Use MATLAB to compute the reduced row echelon form U of [A b]. How does the last column of U compare with the solution x? In exact arithmetic, they should be the same. Why? Explain. To compare the two, compute the difference U(:, 7) x or examine both using format long. (b) Let us now change A so as to make it singular. Set Use MATLAB to compute rre f ([A (c) Set and y = floor(20 rand(6, 1)) - 10 and c = A y A(:, 3) = A(:, 1 : 2) [4 3] b]). How many solutions will the system Ax = b have? Explain. Why do we know that the system Ax = c must be consistent? Explain. Compute the reduced row echelon form U of [A c].how many solutions does the system Ax = c have? Explain. 6. Set A = magic(8) and then compute its reduced row echelon form. The leading 1 s should correspond to the first three variables x 1, x 2, and x 3, and the remaining five variables are all free. a) Set c = [1 : 8] and determine whether the system Ax = c is consistent by computing the reduced row echelon form of [A c]. Does the system turn out to be consistent? Explain. b) Set b = [ ] ; and consider the system Ax = b. This sys- tem should be consistent. Verify that it is by computing U = rre f ([Ab]). We should be able to find a solution for any choice of the five free variables. Indeed, set x2 = f loor(10 rand(5, 1)). If x2 represents the last five coordinates of a solution of the system, then we should be able to determine x1 = (x 1, x 2, x 3 ) T in terms of x 2. To do this, set U = rre f ([Ab]). The nonzero rows of U correspond to a linear system with block form To solve the above equation, set ( I V ) ( x1 x2 ) = c V = U(1 : 3, 4 : 8), c = U(1 : 3, 9) and use MATLAB to compute x1 in terms of x2, c, and V. Set x = [x1; x2] and verify that x is a solution of the system.

4 7. In a certain town, 30 percent of the married women get divorced each year and 20 percent of the single women get married each year. There are 8000 married women and 2000 single women. Assuming that the total population of women remains constant, how many married women and how many single women will there be after 3? Guess a formula for the number of married and single women after n years. 8. A toy manufacturer makes toy airplanes, boats, and cars. Each toy is fabricated in a factory F 1 in Taiwan and then assembled in factory F 2 in the U.S. The total cost of each product consists of the manufacturing cost and the shipping cost. Then the costs at each factory (in $ US) can be described as and F 1 = Manuf. F 2 = Ship Manuf. Ship Airplanes Boats Cars Airplanes Boats Cars Find a matrix that gives the total manufacturing and shipping costs for each product. 9. Suppose that in a primitive society, the members of a tribe are engaged in three occupations: farming, manufacturing of tools and utensils, and the weaving and sewing of clothing. Assume that initially the tribe has no monetary system and that all goods and services are bartered. Let the three groups be denoted by F, M, and C, respectively. Suppose that this directed graph indicates how the bartering system works in practice: F M C F M C Determine the relative values of x 1, x 2, x 3 to the three types of goods that fairly represent the current bartering system. 10. An inheritance of $24, 000 is to be divided among three trusts, with the second trust receiving twice as much as the first trust. The three trusts pay interest at the rates of 9%, 10%, and 6% annually, respectively, and return a total in interest of $2210 at the end of the first year. How much was invested in each trust?

5 11. Consider the following chemical equation C 2 H 4 + O 2 CO 2 + H 2 O Balance this chemical reaction. 12. Consider the following chemical equation MnS + As 2 Cr 10 O 35 + H 2 SO 4 HMnO 4 + AsH 3 + CrS 3 O 12 + H 2 O Find the equations, to balance this chemical reaction ( but do not solve them!!!! ).

PRINT. 4. Be sure to write your name, section and version letter of the exam on the Scantron form.

PRINT. 4. Be sure to write your name, section and version letter of the exam on the Scantron form. PRINT LAST NAME INSTRUCTOR: UIN: FIRST NAME SECTION NUMBER: SEAT NUMBER: Directions. The use of all electronic devices is prohibited. 2. In Part (Problems -2), mark the correct choice on your Scantron

More information

MAT 343 Laboratory 3 The LU factorization

MAT 343 Laboratory 3 The LU factorization In this laboratory session we will learn how to MAT 343 Laboratory 3 The LU factorization 1. Find the LU factorization of a matrix using elementary matrices 2. Use the MATLAB command lu to find the LU

More information

MATH 151, FALL 2017 COMMON EXAM III - VERSION B

MATH 151, FALL 2017 COMMON EXAM III - VERSION B MATH 151, FALL 2017 COMMON EXAM III - VERSION B LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF cell

More information

Finite Mathematics Chapter 2. where a, b, c, d, h, and k are real numbers and neither a and b nor c and d are both zero.

Finite Mathematics Chapter 2. where a, b, c, d, h, and k are real numbers and neither a and b nor c and d are both zero. Finite Mathematics Chapter 2 Section 2.1 Systems of Linear Equations: An Introduction Systems of Equations Recall that a system of two linear equations in two variables may be written in the general form

More information

MATH 152, Fall 2017 COMMON EXAM III - VERSION A

MATH 152, Fall 2017 COMMON EXAM III - VERSION A MATH 152, Fall 2017 COMMON EXAM III - VERSION A LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF cell

More information

MATH 152, Fall 2017 COMMON EXAM III - VERSION B

MATH 152, Fall 2017 COMMON EXAM III - VERSION B MATH 152, Fall 2017 COMMON EXAM III - VERSION B LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF cell

More information

MATH 151, SPRING 2018

MATH 151, SPRING 2018 MATH 11, SPRING 018 COMMON EXAM I - VERSIONAKEY LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited.. TURN OFF cell

More information

MATH 151, SPRING 2018

MATH 151, SPRING 2018 MATH 151, SPRING 018 COMMON EXAM I - VERSIONBKEY LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited.. TURN OFF cell

More information

Identity Matrix: EDU> eye(3) ans = Matrix of Ones: EDU> ones(2,3) ans =

Identity Matrix: EDU> eye(3) ans = Matrix of Ones: EDU> ones(2,3) ans = Very Basic MATLAB Peter J. Olver October, 2003 Matrices: Type your matrix as follows: Use, or space to separate entries, and ; or return after each row. EDU> [;5 0-3 6;; - 5 ] or EDU> [,5,6,-9;5,0,-3,6;7,8,5,0;-,,5,]

More information

1.2 Row Echelon Form EXAMPLE 1

1.2 Row Echelon Form EXAMPLE 1 .2 Row Echelon Form 7. The two systems 2x + x 2 = 4x + x 2 = 5 and 2x + x 2 = 4x + x 2 = have the same coefficient matrix but different righthand sides. Solve both systems simultaneously by eliminating

More information

MATH 151, FALL 2017 COMMON EXAM 2, VERSION B. LAST NAME (print) : FIRST NAME (print): INSTRUCTOR : SECTION NUMBER: DIRECTIONS THE AGGIE HONOR CODE

MATH 151, FALL 2017 COMMON EXAM 2, VERSION B. LAST NAME (print) : FIRST NAME (print): INSTRUCTOR : SECTION NUMBER: DIRECTIONS THE AGGIE HONOR CODE MATH 5, FALL 7 COMMON EXAM, VERSION B LAST NAME (print) : FIRST NAME (print): INSTRUCTOR : SECTION NUMBER: DIRECTIONS. The use of a calculator, laptop, or computer is prohibited.. TURN OFF cell phones

More information

18.06 Problem Set 1 - Solutions Due Wednesday, 12 September 2007 at 4 pm in

18.06 Problem Set 1 - Solutions Due Wednesday, 12 September 2007 at 4 pm in 18.6 Problem Set 1 - Solutions Due Wednesday, 12 September 27 at 4 pm in 2-16. Problem : from the book.(5=1+1+1+1+1) (a) problem set 1.2, problem 8. (a) F. A Counterexample: u = (1,, ), v = (, 1, ) and

More information

MATH 151, FALL 2017 COMMON EXAM I - VERSION A

MATH 151, FALL 2017 COMMON EXAM I - VERSION A MATH 11, FALL 017 COMMON EXAM I - VERSION A LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited.. TURN OFF cell phones

More information

MATH 152, Fall 2017 COMMON EXAM II - VERSION A

MATH 152, Fall 2017 COMMON EXAM II - VERSION A MATH 15, Fall 17 COMMON EXAM II - VERSION A LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited.. TURN OFF cell phones

More information

Math 22AL Lab #4. 1 Objectives. 2 Header. 0.1 Notes

Math 22AL Lab #4. 1 Objectives. 2 Header. 0.1 Notes Math 22AL Lab #4 0.1 Notes Green typewriter text represents comments you must type. Each comment is worth one point. Blue typewriter text represents commands you must type. Each command is worth one point.

More information

Math 151, Fall 2018 Common Exam 1 Version A

Math 151, Fall 2018 Common Exam 1 Version A Math 151, Fall 018 Common Exam 1 Version A LAST NAME (print): FIRST NAME (print): INSTRUCTOR: STUDENT ID NUMBER: Directions: 1. No calculators, cell phones, or other electronic devices may be used, and

More information

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB

(Mathematical Operations with Arrays) Applied Linear Algebra in Geoscience Using MATLAB Applied Linear Algebra in Geoscience Using MATLAB (Mathematical Operations with Arrays) Contents Getting Started Matrices Creating Arrays Linear equations Mathematical Operations with Arrays Using Script

More information

Computer Assignment 2

Computer Assignment 2 Computer Assignment 2 Chapter 2, section, problem 3 Apes = [7 5;3 6] Diet = [25 4 2;5 3 25] Result = Apes * Diet Apes = 7 5 3 6 Diet = 25 4 2 5 3 25 Result = 25 43 265 65 3 2 The meaning of the calculation:

More information

Lecture 9: Elementary Matrices

Lecture 9: Elementary Matrices Lecture 9: Elementary Matrices Review of Row Reduced Echelon Form Consider the matrix A and the vector b defined as follows: 1 2 1 A b 3 8 5 A common technique to solve linear equations of the form Ax

More information

Multiplying matrices by diagonal matrices is faster than usual matrix multiplication.

Multiplying matrices by diagonal matrices is faster than usual matrix multiplication. 7-6 Multiplying matrices by diagonal matrices is faster than usual matrix multiplication. The following equations generalize to matrices of any size. Multiplying a matrix from the left by a diagonal matrix

More information

The matrix will only be consistent if the last entry of row three is 0, meaning 2b 3 + b 2 b 1 = 0.

The matrix will only be consistent if the last entry of row three is 0, meaning 2b 3 + b 2 b 1 = 0. ) Find all solutions of the linear system. Express the answer in vector form. x + 2x + x + x 5 = 2 2x 2 + 2x + 2x + x 5 = 8 x + 2x + x + 9x 5 = 2 2 Solution: Reduce the augmented matrix [ 2 2 2 8 ] to

More information

Matrix Arithmetic. j=1

Matrix Arithmetic. j=1 An m n matrix is an array A = Matrix Arithmetic a 11 a 12 a 1n a 21 a 22 a 2n a m1 a m2 a mn of real numbers a ij An m n matrix has m rows and n columns a ij is the entry in the i-th row and j-th column

More information

Matrices and Systems of Equations

Matrices and Systems of Equations M CHAPTER 3 3 4 3 F 2 2 4 C 4 4 Matrices and Systems of Equations Probably the most important problem in mathematics is that of solving a system of linear equations. Well over 75 percent of all mathematical

More information

TOPIC 2 Computer application for manipulating matrix using MATLAB

TOPIC 2 Computer application for manipulating matrix using MATLAB YOGYAKARTA STATE UNIVERSITY MATHEMATICS AND NATURAL SCIENCES FACULTY MATHEMATICS EDUCATION STUDY PROGRAM TOPIC 2 Computer application for manipulating matrix using MATLAB Definition of Matrices in MATLAB

More information

Matrices and Systems of Equations

Matrices and Systems of Equations M CHAPTER 4 F 2 2 4 C 4 4 Matrices and Systems of Equations Probably the most important problem in mathematics is that of solving a system of linear equations. Well over 75 percent of all mathematical

More information

3.4 Elementary Matrices and Matrix Inverse

3.4 Elementary Matrices and Matrix Inverse Math 220: Summer 2015 3.4 Elementary Matrices and Matrix Inverse A n n elementary matrix is a matrix which is obtained from the n n identity matrix I n n by a single elementary row operation. Elementary

More information

MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra

MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra A. Vectors A vector is a quantity that has both magnitude and direction, like velocity. The location of a vector is irrelevant;

More information

pset3-sol September 7, 2017

pset3-sol September 7, 2017 pset3-sol September 7, 2017 1 18.06 pset 3 Solutions 1.1 Problem 1 Suppose that you solve AX = B with and find that X is 1 1 1 1 B = 0 2 2 2 1 1 0 1 1 1 0 1 X = 1 0 1 3 1 0 2 1 1.1.1 (a) What is A 1? (You

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

MATH 151, SPRING 2013 COMMON EXAM II - VERSION A. Print name (LAST, First): SECTION #: INSTRUCTOR: SEAT #:

MATH 151, SPRING 2013 COMMON EXAM II - VERSION A. Print name (LAST, First): SECTION #: INSTRUCTOR: SEAT #: MATH 151, SPRING 2013 COMMON EXAM II - VERSION A Print name (LAST, First): SECTION #: INSTRUCTOR: SEAT #: THE AGGIE CODE OF HONOR "An Aggie does not lie, cheat, or steal, or tolerate those who do." By

More information

Section 12.4 Algebra of Matrices

Section 12.4 Algebra of Matrices 244 Section 2.4 Algebra of Matrices Before we can discuss Matrix Algebra, we need to have a clear idea what it means to say that two matrices are equal. Let's start a definition. Equal Matrices Two matrices

More information

Lecture 3: Special Matrices

Lecture 3: Special Matrices Lecture 3: Special Matrices Feedback of assignment1 Random matrices The magic matrix commend magic() doesn t give us random matrix. Random matrix means we will get different matrices each time when we

More information

Using MATLAB. Linear Algebra

Using MATLAB. Linear Algebra Using MATLAB in Linear Algebra Edward Neuman Department of Mathematics Southern Illinois University at Carbondale One of the nice features of MATLAB is its ease of computations with vectors and matrices.

More information

Find the solution set of 2x 3y = 5. Answer: We solve for x = (5 + 3y)/2. Hence the solution space consists of all vectors of the form

Find the solution set of 2x 3y = 5. Answer: We solve for x = (5 + 3y)/2. Hence the solution space consists of all vectors of the form Math 2 Homework #7 March 4, 2 7.3.3. Find the solution set of 2x 3y = 5. Answer: We solve for x = (5 + 3y/2. Hence the solution space consists of all vectors of the form ( ( ( ( x (5 + 3y/2 5/2 3/2 x =

More information

5.1 Introduction to Matrices

5.1 Introduction to Matrices 5.1 Introduction to Matrices Reminder: A matrix with m rows and n columns has size m x n. (This is also sometimes referred to as the order of the matrix.) The entry in the ith row and jth column of a matrix

More information

Pre-Calculus I. For example, the system. x y 2 z. may be represented by the augmented matrix

Pre-Calculus I. For example, the system. x y 2 z. may be represented by the augmented matrix Pre-Calculus I 8.1 Matrix Solutions to Linear Systems A matrix is a rectangular array of elements. o An array is a systematic arrangement of numbers or symbols in rows and columns. Matrices (the plural

More information

Math 140, c Benjamin Aurispa. 2.1 Matrices

Math 140, c Benjamin Aurispa. 2.1 Matrices 2.1 Matrices Reminder: A matrix with m rows and n columns has size m x n. (This is also sometimes referred to as the order of the matrix.) The entry in the ith row and jth column of a matrix A is denoted

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

If A is a 4 6 matrix and B is a 6 3 matrix then the dimension of AB is A. 4 6 B. 6 6 C. 4 3 D. 3 4 E. Undefined

If A is a 4 6 matrix and B is a 6 3 matrix then the dimension of AB is A. 4 6 B. 6 6 C. 4 3 D. 3 4 E. Undefined Question 1 If A is a 4 6 matrix and B is a 6 3 matrix then the dimension of AB is A. 4 6 B. 6 6 C. 4 3 D. 3 4 E. Undefined Quang T. Bach Math 18 October 18, 2017 1 / 17 Question 2 1 2 Let A = 3 4 1 2 3

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

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

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

Systems of Linear Equations in Two Variables. Break Even. Example. 240x x This is when total cost equals total revenue.

Systems of Linear Equations in Two Variables. Break Even. Example. 240x x This is when total cost equals total revenue. Systems of Linear Equations in Two Variables 1 Break Even This is when total cost equals total revenue C(x) = R(x) A company breaks even when the profit is zero P(x) = R(x) C(x) = 0 2 R x 565x C x 6000

More information

Lesson U2.1 Study Guide

Lesson U2.1 Study Guide Lesson U2.1 Study Guide Sunday, June 3, 2018 2:05 PM Matrix operations, The Inverse of a Matrix and Matrix Factorization Reading: Lay, Sections 2.1, 2.2, 2.3 and 2.5 (about 24 pages). MyMathLab: Lesson

More information

Applied Matrix Algebra Lecture Notes Section 2.2. Gerald Höhn Department of Mathematics, Kansas State University

Applied Matrix Algebra Lecture Notes Section 2.2. Gerald Höhn Department of Mathematics, Kansas State University Applied Matrix Algebra Lecture Notes Section 22 Gerald Höhn Department of Mathematics, Kansas State University September, 216 Chapter 2 Matrices 22 Inverses Let (S) a 11 x 1 + a 12 x 2 + +a 1n x n = b

More information

MATH 152, Spring 2019 COMMON EXAM I - VERSION A

MATH 152, Spring 2019 COMMON EXAM I - VERSION A MATH 15, Spring 19 COMMON EXAM I - VERSION A LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: ROW NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited.. TURN

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

TAMU Spring Math 151, Spring 2019 Common Exam 1 Version A

TAMU Spring Math 151, Spring 2019 Common Exam 1 Version A TAMU Spring 019 Math 151, Spring 019 Common Eam 1 Version A LAST NAME (print): FIRST NAME (print): INSTRUCTOR: SECTION NUMBER: STUDENT ID NUMBER: Directions: 1. No calculators, cell phones, or other electronic

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

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Midterm 3c 4/11/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 10 pages (including this cover page) and 10 problems. Check to see if

More information

7.1 Solving Systems of Equations

7.1 Solving Systems of Equations Date: Precalculus Notes: Unit 7 Systems of Equations and Matrices 7.1 Solving Systems of Equations Syllabus Objectives: 8.1 The student will solve a given system of equations or system of inequalities.

More information

Matrix Algebra. Matrix Algebra. Chapter 8 - S&B

Matrix Algebra. Matrix Algebra. Chapter 8 - S&B Chapter 8 - S&B Algebraic operations Matrix: The size of a matrix is indicated by the number of its rows and the number of its columns. A matrix with k rows and n columns is called a k n matrix. The number

More information

MATH 152, SPRING 2017 COMMON EXAM I - VERSION A

MATH 152, SPRING 2017 COMMON EXAM I - VERSION A MATH 152, SPRING 2017 COMMON EXAM I - VERSION A LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF cell

More information

Chapter 1 Matrices and Systems of Equations

Chapter 1 Matrices and Systems of Equations Chapter 1 Matrices and Systems of Equations System of Linear Equations 1. A linear equation in n unknowns is an equation of the form n i=1 a i x i = b where a 1,..., a n, b R and x 1,..., x n are variables.

More information

MATH 1B03: Midterm 1 - VERSION 1 Instructor: Adam Van Tuyl Date: October 4, :00PM Duration: 75 min.

MATH 1B03: Midterm 1 - VERSION 1 Instructor: Adam Van Tuyl Date: October 4, :00PM Duration: 75 min. MATH B3: Midterm - VERSION Instructor: Adam Van Tuyl Date: October 4, 27 7:PM Duration: 75 min. Name: ID #: Instructions: This test paper contains 2 multiple choice questions printed on both sides of the

More information

18.06 Problem Set 3 Solution Due Wednesday, 25 February 2009 at 4 pm in Total: 160 points.

18.06 Problem Set 3 Solution Due Wednesday, 25 February 2009 at 4 pm in Total: 160 points. 8.6 Problem Set 3 Solution Due Wednesday, 25 February 29 at 4 pm in 2-6. Total: 6 points. Problem : Consider the matrix A = 2 4 2 6 3 4 2 7 (a) Reduce A to echelon form U, find a special solution for each

More information

Chapter 4 - MATRIX ALGEBRA. ... a 2j... a 2n. a i1 a i2... a ij... a in

Chapter 4 - MATRIX ALGEBRA. ... a 2j... a 2n. a i1 a i2... a ij... a in Chapter 4 - MATRIX ALGEBRA 4.1. Matrix Operations A a 11 a 12... a 1j... a 1n a 21. a 22.... a 2j... a 2n. a i1 a i2... a ij... a in... a m1 a m2... a mj... a mn The entry in the ith row and the jth column

More information

Chapter 3: Theory Review: Solutions Math 308 F Spring 2015

Chapter 3: Theory Review: Solutions Math 308 F Spring 2015 Chapter : Theory Review: Solutions Math 08 F Spring 05. What two properties must a function T : R m R n satisfy to be a linear transformation? (a) For all vectors u and v in R m, T (u + v) T (u) + T (v)

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

Instructions Please answer the five problems on your own paper. These are essay questions: you should write in complete sentences.

Instructions Please answer the five problems on your own paper. These are essay questions: you should write in complete sentences. Instructions Please answer the five problems on your own paper. These are essay questions: you should write in complete sentences.. Recall that P 3 denotes the vector space of polynomials of degree less

More information

8-15. Stop by or call (630)

8-15. Stop by or call (630) To review the basics Matrices, what they represent, and how to find sum, scalar product, product, inverse, and determinant of matrices, watch the following set of YouTube videos. They are followed by several

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

Matrices. A matrix is a method of writing a set of numbers using rows and columns. Cells in a matrix can be referenced in the form.

Matrices. A matrix is a method of writing a set of numbers using rows and columns. Cells in a matrix can be referenced in the form. Matrices A matrix is a method of writing a set of numbers using rows and columns. 1 2 3 4 3 2 1 5 7 2 5 4 2 0 5 10 12 8 4 9 25 30 1 1 Reading Information from a Matrix Cells in a matrix can be referenced

More information

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions Math 308 Midterm Answers and Comments July 18, 2011 Part A. Short answer questions (1) Compute the determinant of the matrix a 3 3 1 1 2. 1 a 3 The determinant is 2a 2 12. Comments: Everyone seemed to

More information

MATH 151, SPRING 2018

MATH 151, SPRING 2018 MATH 151, SPRING 2018 COMMON EXAM II - VERSIONBKEY LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF

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

7.6 The Inverse of a Square Matrix

7.6 The Inverse of a Square Matrix 7.6 The Inverse of a Square Matrix Copyright Cengage Learning. All rights reserved. What You Should Learn Verify that two matrices are inverses of each other. Use Gauss-Jordan elimination to find inverses

More information

Sections 6.1 and 6.2: Systems of Linear Equations

Sections 6.1 and 6.2: Systems of Linear Equations What is a linear equation? Sections 6.1 and 6.2: Systems of Linear Equations We are now going to discuss solving systems of two or more linear equations with two variables. Recall that solving an equation

More information

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations Chapter Linear Equations. Systems of Linear Equations A linear equation in the n variables x, x 2,..., x n is one that can be expressed in the form a x + a 2 x 2 + + a n x n = b where a, a 2,..., a n and

More information

Section 9.2: Matrices. Definition: A matrix A consists of a rectangular array of numbers, or elements, arranged in m rows and n columns.

Section 9.2: Matrices. Definition: A matrix A consists of a rectangular array of numbers, or elements, arranged in m rows and n columns. Section 9.2: Matrices Definition: A matrix A consists of a rectangular array of numbers, or elements, arranged in m rows and n columns. That is, a 11 a 12 a 1n a 21 a 22 a 2n A =...... a m1 a m2 a mn A

More information

MATLAB Project 2: MATH240, Spring 2013

MATLAB Project 2: MATH240, Spring 2013 1. Method MATLAB Project 2: MATH240, Spring 2013 This page is more information which can be helpful for your MATLAB work, including some new commands. You re responsible for knowing what s been done before.

More information

MATH 304 Linear Algebra Lecture 10: Linear independence. Wronskian.

MATH 304 Linear Algebra Lecture 10: Linear independence. Wronskian. MATH 304 Linear Algebra Lecture 10: Linear independence. Wronskian. Spanning set Let S be a subset of a vector space V. Definition. The span of the set S is the smallest subspace W V that contains S. If

More information

Solution Set 3, Fall '12

Solution Set 3, Fall '12 Solution Set 3, 86 Fall '2 Do Problem 5 from 32 [ 3 5 Solution (a) A = Only one elimination step is needed to produce the 2 6 echelon form The pivot is the in row, column, and the entry to eliminate is

More information

Graduate Mathematical Economics Lecture 1

Graduate Mathematical Economics Lecture 1 Graduate Mathematical Economics Lecture 1 Yu Ren WISE, Xiamen University September 23, 2012 Outline 1 2 Course Outline ematical techniques used in graduate level economics courses Mathematics for Economists

More information

Week 1 (8/24/2004-8/30/2004) Read 2.1: Solution of linear system by the Echelon method

Week 1 (8/24/2004-8/30/2004) Read 2.1: Solution of linear system by the Echelon method Week 1 (8/24/2004-8/30/2004) Read 2.1: Solution of linear system by the Echelon method Important Terms and Concepts: Possibilities for the solutions of a system of two linear equations in two unknowns

More information

CHAPTER 8: MATRICES and DETERMINANTS

CHAPTER 8: MATRICES and DETERMINANTS (Section 8.1: Matrices and Determinants) 8.01 CHAPTER 8: MATRICES and DETERMINANTS The material in this chapter will be covered in your Linear Algebra class (Math 254 at Mesa). SECTION 8.1: MATRICES and

More information

Chapter 8 Linear Algebraic Equations

Chapter 8 Linear Algebraic Equations PowerPoint to accompany Introduction to MATLAB for Engineers, Third Edition William J. Palm III Chapter 8 Linear Algebraic Equations Copyright 2010. The McGraw-Hill Companies, Inc. This work is only for

More information

Undergraduate Mathematical Economics Lecture 1

Undergraduate Mathematical Economics Lecture 1 Undergraduate Mathematical Economics Lecture 1 Yu Ren WISE, Xiamen University September 15, 2014 Outline 1 Courses Description and Requirement 2 Course Outline ematical techniques used in economics courses

More information

MATH 152 Spring 2018 COMMON EXAM I - VERSION A

MATH 152 Spring 2018 COMMON EXAM I - VERSION A MATH 52 Spring 28 COMMON EXAM I - VERSION A LAST NAME: FIRST NAME: INSTRUCTOR: SECTION NUMBER: UIN: DIRECTIONS:. The use of a calculator, laptop or cell phone is prohibited. 2. TURN OFF cell phones and

More information

Math 344 Lecture # Linear Systems

Math 344 Lecture # Linear Systems Math 344 Lecture #12 2.7 Linear Systems Through a choice of bases S and T for finite dimensional vector spaces V (with dimension n) and W (with dimension m), a linear equation L(v) = w becomes the linear

More information

Math 313 Chapter 1 Review

Math 313 Chapter 1 Review Math 313 Chapter 1 Review Howard Anton, 9th Edition May 2010 Do NOT write on me! Contents 1 1.1 Introduction to Systems of Linear Equations 2 2 1.2 Gaussian Elimination 3 3 1.3 Matrices and Matrix Operations

More information

Quiz ) Locate your 1 st order neighbors. 1) Simplify. Name Hometown. Name Hometown. Name Hometown.

Quiz ) Locate your 1 st order neighbors. 1) Simplify. Name Hometown. Name Hometown. Name Hometown. Quiz 1) Simplify 9999 999 9999 998 9999 998 2) Locate your 1 st order neighbors Name Hometown Me Name Hometown Name Hometown Name Hometown Solving Linear Algebraic Equa3ons Basic Concepts Here only real

More information

2.1 Matrices. 3 5 Solve for the variables in the following matrix equation.

2.1 Matrices. 3 5 Solve for the variables in the following matrix equation. 2.1 Matrices Reminder: A matrix with m rows and n columns has size m x n. (This is also sometimes referred to as the order of the matrix.) The entry in the ith row and jth column of a matrix A is denoted

More information

Chapter 9: Systems of Equations and Inequalities

Chapter 9: Systems of Equations and Inequalities Chapter 9: Systems of Equations and Inequalities 9. Systems of Equations Solve the system of equations below. By this we mean, find pair(s) of numbers (x, y) (if possible) that satisfy both equations.

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

MATRICES. a m,1 a m,n A =

MATRICES. a m,1 a m,n A = MATRICES Matrices are rectangular arrays of real or complex numbers With them, we define arithmetic operations that are generalizations of those for real and complex numbers The general form a matrix of

More information

Math 54 First Midterm Exam, Prof. Srivastava September 23, 2016, 4:10pm 5:00pm, 155 Dwinelle Hall.

Math 54 First Midterm Exam, Prof. Srivastava September 23, 2016, 4:10pm 5:00pm, 155 Dwinelle Hall. Math 54 First Midterm Exam, Prof Srivastava September 23, 26, 4:pm 5:pm, 55 Dwinelle Hall Name: SID: Instructions: Write all answers in the provided space This exam includes two pages of scratch paper,

More information

Chapter 3. Vector spaces

Chapter 3. Vector spaces Chapter 3. Vector spaces Lecture notes for MA1111 P. Karageorgis pete@maths.tcd.ie 1/22 Linear combinations Suppose that v 1,v 2,...,v n and v are vectors in R m. Definition 3.1 Linear combination We say

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

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

CHAPTER 9: Systems of Equations and Matrices

CHAPTER 9: Systems of Equations and Matrices MAT 171 Precalculus Algebra Dr. Claude Moore Cape Fear Community College CHAPTER 9: Systems of Equations and Matrices 9.1 Systems of Equations in Two Variables 9.2 Systems of Equations in Three Variables

More information

Math 3C Lecture 20. John Douglas Moore

Math 3C Lecture 20. John Douglas Moore Math 3C Lecture 20 John Douglas Moore May 18, 2009 TENTATIVE FORMULA I Midterm I: 20% Midterm II: 20% Homework: 10% Quizzes: 10% Final: 40% TENTATIVE FORMULA II Higher of two midterms: 30% Homework: 10%

More information

Matlab and similar matrix handlers

Matlab and similar matrix handlers Matlab and similar matrix handlers Bernt Arne Ødegaard 7 February 08 Matrix handlers (matlab, scilab, octave, etc) Purpose: Manipulating numerical relationships using notation similar to linear algebra.

More information

POLI270 - Linear Algebra

POLI270 - Linear Algebra POLI7 - Linear Algebra Septemer 8th Basics a x + a x +... + a n x n b () is the linear form where a, b are parameters and x n are variables. For a given equation such as x +x you only need a variable and

More information

MATH 260 LINEAR ALGEBRA EXAM II Fall 2013 Instructions: The use of built-in functions of your calculator, such as det( ) or RREF, is prohibited.

MATH 260 LINEAR ALGEBRA EXAM II Fall 2013 Instructions: The use of built-in functions of your calculator, such as det( ) or RREF, is prohibited. MAH 60 LINEAR ALGEBRA EXAM II Fall 0 Instructions: he use of built-in functions of your calculator, such as det( ) or RREF, is prohibited ) For the matrix find: a) M and C b) M 4 and C 4 ) Evaluate the

More information

Math 307 Learning Goals

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

More information

Math 515 Fall, 2008 Homework 2, due Friday, September 26.

Math 515 Fall, 2008 Homework 2, due Friday, September 26. Math 515 Fall, 2008 Homework 2, due Friday, September 26 In this assignment you will write efficient MATLAB codes to solve least squares problems involving block structured matrices known as Kronecker

More information

MA 138 Calculus 2 with Life Science Applications Matrices (Section 9.2)

MA 138 Calculus 2 with Life Science Applications Matrices (Section 9.2) MA 38 Calculus 2 with Life Science Applications Matrices (Section 92) Alberto Corso albertocorso@ukyedu Department of Mathematics University of Kentucky Friday, March 3, 207 Identity Matrix and Inverse

More information

Matrix operations Linear Algebra with Computer Science Application

Matrix operations Linear Algebra with Computer Science Application Linear Algebra with Computer Science Application February 14, 2018 1 Matrix operations 11 Matrix operations If A is an m n matrix that is, a matrix with m rows and n columns then the scalar entry in the

More information

SECTION 2: VECTORS AND MATRICES. ENGR 112 Introduction to Engineering Computing

SECTION 2: VECTORS AND MATRICES. ENGR 112 Introduction to Engineering Computing SECTION 2: VECTORS AND MATRICES ENGR 112 Introduction to Engineering Computing 2 Vectors and Matrices The MAT in MATLAB 3 MATLAB The MATrix (not MAThematics) LABoratory MATLAB assumes all numeric variables

More information