Solution of System of Linear Equations & Eigen Values and Eigen Vectors

Size: px
Start display at page:

Download "Solution of System of Linear Equations & Eigen Values and Eigen Vectors"

Transcription

1 Solution of System of Linear Equations & Eigen Values and Eigen Vectors P. Sam Johnson March 30, 2015 P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

2 Overview Linear systems occur widely in applied mathematics. Ax = b (1) They occur as direct formulations of real world problems ; but more often, they occur as a part of numerical analysis. There are two general categories of numerical methods for solving (1). Direct methods are methods with a finite number of steps ; and they end with the exact solution provided that all arithmetic operations are exact. Iterative methods are used in solving all types of linear systems, but they are most commonly used for large systems. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

3 Overview Iterative methods are faster than the direct methods. Even the round-off errors in iterative methods are smaller. In fact, iterative method is a self correcting process and any error made at any stage of computation gets automatically corrected in the subsequent steps. We start with a simple example of a linear system and we discuss consistency of system of linear equations, using the concept of determinant. Two iterative methods Gauss-Jacobi and Gauss-Seidel methods are discussed, to solve a given linear system numerically. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

4 Overview Eigen values are a special set of scalars associated with a linear system of equations. The determination of the eigen values and eigen vectors of a system is extremely important in physics and engineering, where it is equivalent to matrix diagonalization and arises in such common applications as stability analysis, the physics of rotating bodies, and small oscillations of vibrating systems, to name only a few. Each eigen value is paired with a corresponding vector, called eigen vector. We discuss properties of eigen values and eigen vectors in the lecture. Also we give a method, called Rayeigh s Power Method, to find out the largest eigen value in magnitude (also called, dominant eigen value). The special advantage of the power method is that the eigen vector corresponds to the dominant eigen value is also calculated at the same time. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

5 An Example A shopkeeper offers two standard packets because he is convinced that north indians each more wheat than rice and south indians each more rice than wheat. Packet one P 1 : 5kg wheat and 2kg rice ; Packet two P 2 : 2kg wheat and 5kg rice. Notation. (m, n) : m kg wheat and n kg rice. Suppose I need 19kg of wheat and 16kg of rice. Then I need to buy x packets of P 1 and y packets of P 2 so that x(5, 2) + y(2, 5) = (10, 16). Hence I have to solve the following system of linear equations 5x + 2y = 10 2x + 5y = 16. Suppose I need 34 kg of wheat and 1 kg of rice. Then I must buy 8 packets of P 1 and 3 packets of P 2. What does this mean? I buy 8 packets of P 1 and from these I make three packets of P 2 and give them back to the shopkeeper. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

6 Consistency of System of Linear Equations Graphically (1 Equation, 2 Variables) The solution of the equation ax + by = c is the set of all points satisfy the equation forms a straight line in the plane through the point (c/b, 0) and with slope a/b. Two lines parallel no solution intersect unique solution same infinitely many solutions. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

7 Consistency of System of Linear Equations Consider the system of m linear equations in n unkowns a 11 x 1 + a 12 x a 1n x n = b 1 a 21 x 1 + a 22 x a 2n x n = b =. a m1 x 1 + a m2 x a mn x n = b m. Its matrix form is a 11 a a 1n x 1 a 21 a a 2n x = a m1 a m2... a mn x m b 1 b 2. b m. That is, Ax = b, where A is called the coefficient matrix. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

8 To determine whether these equations are consistent or not, we find the ranks of the coefficient matrix A and the augmented matrix a 11 a a 1n b 1 a 21 a a 2n b 2 K = = [A b]..... a m1 a m2... a mn b m We denote the rank of A by r(a). 1. r(a) r(k), then the linear system Ax = b is inconsistent and has no solution. 2. r(a) = r(k) = n, then the linear system Ax = b is consistent and has a unique solution. 3. r(a) = r(k) < n, then the linear system Ax = b is consistent and has an infinite number of solutions. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

9 Solution of Linear Simultaneous Equations Simultaneous linear equations occur quite often in engineering and science. The analysis of electronic circuits consisting of invariant elements, analysis of a network under sinusoidal steady-state conditions, determination of the output of a chemical plant, finding the cost of chemical reactions are some of the problems which depend on the solution of simultaneous linear algebraic equations, the solution of such equations can be obtained by direct or iterative methods (successive approximation methods). Some direct methods are as follows: 1. Method of determinants Cramer s rule 2. Matrix inversion method 3. Gauss elimination method 4. Gauss-Jordan method 5. Factorization (triangulization) method. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

10 Iterative Methods Direct methods yield the solution after a certain amount of computation. On the other hand, an iterative method is that in which we start from an approximation to the true solution and obtain better and better approximations from a computation cycle repeated as often as may be necessary for achieving a desired accuracy. Thus in an iterative method, the amount of computation depends on the degree of accuracy required. For large systems, iterative methods are faster than the direct methods. Even the round-off errors in iterative methods are smaller. In fact, iteration is a self correcting process and any error made at any stage of computation gets automatically corrected in the subsequent steps. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

11 Diagonally Dominant Definition An n n matrix A is said to be diagonally dominant if, in each row, the absolute value of each leading diagonal element is greater than or equal to the sum of the absolute values of the remaining elements in that row The matrix A = is a diagonally dominant and the matrix A = is not a diagonally dominant matrix P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

12 Diagonal System Definition In the sytem of simultaneous linear equations in n unknowns AX = B, if A is diagonally dominant, then the system is said to be diagonal system. Thus the system of linear equations a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3 is a diagonal system if a 1 b 1 + c 1 b 2 a 2 + c 2 c 3 a 3 + b 3. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

13 The process of iteration in solving AX = B will converge quickly if the cofficient matrix A is diagonally dominant. If the coefficient matrix is not diagonally dominant we must rearrange the equations in such a way that the resulting coefficient matrix becomes dominant, if possible, before we apply the iteration method. Exercises 1. Is the system of equations diagonally dominant? If not, make it diagonally dominant. 2. Check whether the system of equations 3x + 9y 2z = 10 4x + 2y + 13z = 19 4x 2y + z = 3. x + 6y 2z = 5 4x + y + z = 6 3x + y + 7z = 5. is a diagonal system. If not, make it a diagonal system. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

14 Jacobi Iteration Method (also known as Gauss-Jacobi) Simple iterative methods can be designed for systems in which the coefficients of the leading diagonal are large as comparted to others. We now describe three such methods. Gauss-Jacobi Iteration Method Consider the system of linear equations a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3. If a 1, b 2, c 3 are large as compared to other coefficients (if not, rearrange the given linear equations), solve for x, y, z respectively. That is, the cofficient matrix is diagonally dominant. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

15 Then the system can be written as x = 1 a 1 (d 1 b 1 y c 1 z) y = 1 b 2 (d 2 a 2 x c 2 z) (2) z = 1 c 3 (d 3 a 3 x b 3 y). Let us start with the initital approximations x 0, y 0, z 0 for the values of x, y, z repectively. In the absence of any better estimates for x 0, y 0, z 0, these may each be taken as zero. Substituting these on the right sides of (2), we gt the first approximations. This process is repeated till the difference between two consecutive approximations is negligible. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

16 Exercises 3. Solve, by Jacobi s iterative method, the equations 20x + y 2z = 17 3x + 20y z = 18 2x 3y + 20z = Solve, by Jacobi s iterative method correct to 2 decimal places, the equations 10x + y z = x + 10y + z = x + y + 10z = Solve the equations, by Gauss-Jacobi iterative method 10x 1 2x 2 x 3 x 4 = 3 2x x 2 x 3 x 4 = 15 x 1 x x 3 2x 4 = 27 x 1 x 2 2x x 4 = 9. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

17 Gauss-Seidel Iteration Method This is a modification of Jacobi s Iterative Method. Consider the system of linear equations a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3. If a 1, b 2, c 3 are large as compared to other coefficients (if not, rearrange the given linear equations), solve for x, y, z respectively. Then the system can be written as x = 1 a 1 (d 1 b 1 y c 1 z) y = 1 b 2 (d 2 a 2 x c 2 z) (3) z = 1 c 3 (d 3 a 3 x b 3 y). P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

18 Here also we start with the initial approximations x 0, y 0, z 0 for x, y, z respectively, (each may be taken as zero). Subsituting y = y 0, z = z 0 in the first of the equations (3), we get x 1 = 1 a 1 (d 1 b 1 y 0 c 1 z 0 ). Then putting x = x 1, z = z 0 in the second of the equations (3), we get y 1 = 1 b 2 (d 2 a 2 x 1 c 2 z 0 ). Next subsituting x = x 1, y = y 1 in the third of the equations (3), we get and so on. z 1 = 1 c 3 (d 3 a 3 x 1 b 3 y 1 ) P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

19 That is, as soon as a new approximation for an unknown is found, it is immediately used in the next step. This process of iteration is repeatedly till the values of x, y, z are obtained to desired degree of accuracy. Since the most recent approximations of the unknowns are used which proceeding to the next step, the convergence in the Gauss-Seidel method is twice as fast as in Gauss-Jacobi method. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

20 Convergence Criteria The condition for convergence of Gauss-Jacobi and Gauss-Seidel methods is given by the following rule: The process of iteration will converge if in each equation of the system, the absolute value of the largest co-efficient is greater than the sum of the absolute values of all the remaining coefficients. That is, if the coefficient matrix is a diagonal dominant matrix, then the process of iteration will converge. For a given system of linear equations, before finding approximations by using Gauss-Jacobi / Gauss-Seidel methods, convergence criteria should be verified. If the coefficient matrix is a not diagonal dominant matrix, rearrange the equations, so that the new coefficient matrix is diagonal dominant. Note that all systems of linear equations are not diagonal dominant. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

21 Exercises 6. Apply Gauss-Seidel iterative method to solve the equations 20x + y 2z = 17 3x + 20y z = 18 2x 3y + 20z = Solve the equations, by Gauss-Jacobi and Gauss-Seidel methods (and compare the values) 27x + 6y z = 85 x + y + 54z = 110 6x + 15y + 2z = Apply Gauss-Seidel iterative method to solve the equations 10x 1 2x 2 x 3 x 4 = 3 2x x 2 x 3 x 4 = 15 x 1 x x 3 2x 4 = 27 x 1 x 2 2x x 4 = 9. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

22 Relaxation Method Consider the system of linear equations a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3. We define the residuals R x, R y, R z by the relations R x = d 1 a 1 x b 1 y c 1 z R y = d 2 a 2 x b 2 y c 2 z (4) R z = d 3 a 3 x b 3 y c 3 z. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

23 To start with we assume that x = y = z = 0 and calculate the initial residuals. Then the residuals are reduced step by step, by giving increments to the variables. We note from the equations (4) that if x is increased by 1 (keeping y and z constant), R x, R y and R z decrease by a 1, a 2, a 3 respectively. This is shown in the following table along with the effects on the residuals when y and z are given unit increments. δr x δr y δr z δx = 1 a 1 a 2 a 3 δy = 1 b 1 b 2 b 3 δz = 1 c 1 c 2 c 3 The table is the negative of transpose of the coefficient matrix. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

24 At each step, the numerically largest residual is reduced to almost zero. How can one reduce a particular residual? To reduce a particular residual, the value of the corresponding variable is changed. For example, to reduce R x by p, x should be increased by p/a 1. When all the residuals have been reduced to almost zero, the increments in x, y, z are added separately to give the desired solution. Verification Process : The residuals are not all negligible when the computed values of x, y, z are substituted in (4), then there is some mistake and the entire process should be rechecked. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

25 Convergence of the Relaxation Method Relaxation method can be applied successfully only if there is at least one row in which diagonal element of the coefficient matrix dominate the other coefficients in the corresponding row. That is, should be valid for at least one row. a 1 b 1 + c 1 b 2 a 2 + c 2 c 3 a 3 + b 3 P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

26 Exercises 9. Solve by relaxation method, the equations 9x 2y + z = 50 x + 5y 3z = 18 2x + 2y + 7z = Solve by relaxation method, the equations 10x 2y 3z = 205 2x + 10y 2z = 154 2x y + 10z = 120. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

27 Eigen Values and Eigen Vectors For any n n matrix A, consider the polynomial λ a 11 a 12 a 1n χ A (λ) := λi A = a 21 λ a 22 a 2n. (5) a n1 a n2 λ a nn Clearly this is a monic polynomial of degree n. By the fundamental theorem of algebra, χ(a) has exactly n (not necessarily distinct) roots. χ A (λ) χ A (λ) = 0 the roots of χ A (λ) distinct roots of χ A (λ) the characteristic polynomial of A the characteristic equation of A the characteristic roots of A the spectrum of A P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

28 Few Observations on Characteristic Polynomials The constant terms and the coefficient of λ n 1 in χ A (λ) are ( 1) n A and tr(a). The sum of the characteristic roots of A is tr(a) and the product of the characteristic roots of A is A. Since λi A T = (λi A) T, characteristic polynomials of A and A T are the same. Since λi P 1 AP = P 1 (λi A)P, similar matrices have the same characteristic polynomials. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

29 Eigen Values and Eigen Vectors Definition A complex number λ is an eigen value of A if there exists x 0 in C n such that Ax = λx. Any such (non-zero) x is an eigen vector of A corresponding to the eigen value λ. When we say that x is an eigen vector of A we mean that x is an eigen vector of A corresponding to some eigen value of A. λ is an eigen value of A iff the system (λi A)x = 0 has a non-trivial solution. λ is a characteristic root of A iff λi A is singular. Theorem A number λ is an eigen value of A iff λ is a characteristic root of A. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

30 The preceding theorem shows that eigen values are the same as characteristic roots. However, by the characteristic roots of A we mean the n roots of the characteristic polynomial of A whereas the eigen values of A would mean the distinct characteristic roots of A. Equivalent names: Eigen values Eigen vectors proper values, latent roots, etc. characteristic vectors, latent vectors, etc. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

31 Properties of Eigen Values 1. The sum and product of all eigen values of a matrix A is the sum of principal diagonals and determinant of A, respectively. Hence a matrix is not invertible if and only if it has a zero eigen value. 2. The eigen values of A and A T (the transpose of A) are same. 3. If λ 1, λ 2,..., λ n are eigen values of A, then (a) 1/λ 1, 1/λ 2,..., 1/λ n are eigen values of A 1. (b) kλ 1, kλ 2,..., kλ n are eigen values of ka. (c) kλ 1 + m, kλ 2 + m,..., kλ n + m are eigen values of ka + mi. (d) λ p 1, λp 2,..., λp n are eigen values of A p, for any positive integer p. 4. The transformation of A by a non-singular matrix P to P 1 AP is called a similarity transformation. Any similarity transformation applied to a matrix leaves its eigen values unchanged. 5. The eigen values of a real symmetric matrix are real. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

32 Cayley - Hamilton Theorem Theorem For every matrix A, the characteristic polynomial of A annihilates A. That is, every matrix satisfies its own characteristic equation. Main uses of Cayley-Hamilton theorem 1. To evaluate large powers A. 2. To evaluate a polynomial in A with large degree even if A is singular. 3. To express A 1 as a polynomial in A whereas A is non-singular. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

33 Dominant Eigen Value We have seen that the eigen values of an n n matrix A are obtained by solving its characteristic equation λ n + a n 1 λ n 1 + c n 2 λ n c 0 = 0. For large values of n, polynomial equations like this one are difficult and time-consuming to solve. Moreover, numerical techniques for approximating roots of polynomial equations of high degree are sensitive to rounding errors. We now look at an alternative method for approximating eigen values. As presented here, the method can be used only to find the eigen value of A, that is, largest in absolute value we call this eigen value the dominant eigen value of A. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

34 Dominant Eigen Vector Dominant eigen values are of primary interest in many physical applications. Let λ 1, λ 2,..., and λ n be the eigen values of an n n matrix A. λ 1 is called the dominant eigen value of A if For example, the matrix λ i > λ j, i = 2, 3,..., n. ( ) 1 0 has no dominant eigen value. 0 1 The eigen vectors corresponding to λ 1 are called dominant eigen vectors of A. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

35 Power Method In many engineering problems, it is required to compute the numerically largest eigen values (dominant eigen values) and the corresponding eigen vectors (dominant eigen vectors). In such cases, the following iterative method is quite convenient which is also well-suited for machine computations. Let x 1, x 2,..., x n be the eigen vectors corresponding to the eigen values λ 1, λ 2,..., λ n. We assume that the eigen values of A are real and distint with λ 1 > λ 2 > > λ n. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

36 As the vectors x 1, x 2,..., x n are linearly independent, any arbitrary column vector can be written as x = k 1 x 1 + k 2 x k n x n. We now operate A repeatedly on the vector x. Then Hence Ax = k 1 λ 1 x 1 + k 2 λ 2 x k n λ n x n. [ ( ) ( ] λ2 λn Ax = λ 1 k 1 x 1 + k 2 x k n )x n. λ 1 λ 1 and through iteration we obtain, [ ( ) r ( ) r ] A r λ2 λn x = λ 1 k 1 x 1 + k 2 x k n x n λ 1 λ 1 (6) provided λ 1 0. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

37 Since λ 1 is dominant, all terms inside the brackets have limit zero except the first term. That is, for large values of r, the vector ( ) r ( ) r λ2 λn k 1 x 1 + k 2 x k n x n λ 1 λ 1 will converge to k 1 x 1, that is the eigen vector of λ 1. The eigenvalue is obtained as (A r+1 x) p λ 1 = lim n (A r p = 1, 2,..., n x) p where the index p signifies the pth component in the corresponding vector. That is, if we take the ratio of any corresponding components of A r+1 x and A r x, this ratio should therefore have a limit λ 1. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

38 Linear Convergence Neglecting the terms of λ 2, λ 3,..., λ n in (6) we get A r+1 x k 1 λ1 r+1 x 1 = λ ( 2 A r ) x λ 1 k 1 λ r x 1 1 which shows that the convergence is linear with convergence ratio λ 2. λ 1 Thus, the convergence is faster than if this ratio is small. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

39 Working Rule To Find Dominant Eigen Value Choose x 0, an arbitrary real vector. Generally, we choose x as 1 1, 1 or, In other words, for the purpose of computation, we generally take x with 1 as the first component. We start with a column vector x which is as near the solution as possible and evaluate Ax which is written as λ (1) x (1) after normalization. This gives the first approximation λ (1) to the eigen value and x (1) is the eigen vector. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

40 Rayeigh s Power Method Similarly, we evaluate Ax (2) = λ (2) x (2) which gives the second approximation. We repeat this process till [x (r) x (r 1) ] becomes negligible. Then λ (r) will be the dominant (largest) eigen value and x (r), the corresponding eigen vector (dominant eigen vector). The iteration method of finding the dominant eigen value of a square matrix is called the Rayeigh s power method. At each stage of iteration, we take out the largest component from y (r) to find x (r) where y (r+1) = Ax (r), r = 0, 1, 2,.... P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

41 To find the Smallest Eigen Value To find the smallest eigen value of a given matrix A, apply power method to the matrix A 1. Find the dominant eigen value of A 1 and then take is reciprocal. Exercise 11. Say true or false with justification: If λ is the dominant eigen value of A and β is the dominant eigen value of A λi, then the smallest eigen value of A is λ + β. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

42 Exercises 12. Determine the largest eigen value and the corresponding eigen vector of the matrix ( ) Find the largest eigen value and the corresponding eigen vector of the matrix using power method. Take [1, 0, 0] T as an initial eigen vector. 14. Obtain by power method, the numerically dominant eigen value and eigen vector of the matrix P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

43 References 1. Richard L. Burden and J. Douglas Faires, Numerical Analysis - Theory and Applications, Cengage Learning, Singapore. 2. Kendall E. Atkinson, An Introduction to Numerical Analysis, Wiley India. 3. David Kincaid and Ward Cheney, Numerical Analysis - Mathematics of Scientific Computing, American Mathematical Society, Providence, Rhode Island. 4. S.S. Sastry, Introductory Methods of Numerical Analysis, Fourth Edition, Prentice-Hall, India. P. Sam Johnson (NITK) Solution of System of Linear Equations & Eigen Values and Eigen Vectors March 30, /43

MATRICES. knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns.

MATRICES. knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns. MATRICES After studying this chapter you will acquire the skills in knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns. List of

More information

Romberg Integration and Gaussian Quadrature

Romberg Integration and Gaussian Quadrature Romberg Integration and Gaussian Quadrature P. Sam Johnson October 17, 014 P. Sam Johnson (NITK) Romberg Integration and Gaussian Quadrature October 17, 014 1 / 19 Overview We discuss two methods for integration.

More information

Interpolation. P. Sam Johnson. January 30, P. Sam Johnson (NITK) Interpolation January 30, / 75

Interpolation. P. Sam Johnson. January 30, P. Sam Johnson (NITK) Interpolation January 30, / 75 Interpolation P. Sam Johnson January 30, 2015 P. Sam Johnson (NITK) Interpolation January 30, 2015 1 / 75 Overview One of the basic ideas in Mathematics is that of a function and most useful tool of numerical

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

Review of matrices. Let m, n IN. A rectangle of numbers written like A =

Review of matrices. Let m, n IN. A rectangle of numbers written like A = Review of matrices Let m, n IN. A rectangle of numbers written like a 11 a 12... a 1n a 21 a 22... a 2n A =...... a m1 a m2... a mn where each a ij IR is called a matrix with m rows and n columns or an

More information

Linear Algebra. Matrices Operations. Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0.

Linear Algebra. Matrices Operations. Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0. Matrices Operations Linear Algebra Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0 The rectangular array 1 2 1 4 3 4 2 6 1 3 2 1 in which the

More information

Next topics: Solving systems of linear equations

Next topics: Solving systems of linear equations Next topics: Solving systems of linear equations 1 Gaussian elimination (today) 2 Gaussian elimination with partial pivoting (Week 9) 3 The method of LU-decomposition (Week 10) 4 Iterative techniques:

More information

ANALYTICAL MATHEMATICS FOR APPLICATIONS 2018 LECTURE NOTES 3

ANALYTICAL MATHEMATICS FOR APPLICATIONS 2018 LECTURE NOTES 3 ANALYTICAL MATHEMATICS FOR APPLICATIONS 2018 LECTURE NOTES 3 ISSUED 24 FEBRUARY 2018 1 Gaussian elimination Let A be an (m n)-matrix Consider the following row operations on A (1) Swap the positions any

More information

MATRICES AND ITS APPLICATIONS

MATRICES AND ITS APPLICATIONS MATRICES AND ITS Elementary transformations and elementary matrices Inverse using elementary transformations Rank of a matrix Normal form of a matrix Linear dependence and independence of vectors APPLICATIONS

More information

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra 1.1. Introduction SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear algebra is a specific branch of mathematics dealing with the study of vectors, vector spaces with functions that

More information

Econ Slides from Lecture 7

Econ Slides from Lecture 7 Econ 205 Sobel Econ 205 - Slides from Lecture 7 Joel Sobel August 31, 2010 Linear Algebra: Main Theory A linear combination of a collection of vectors {x 1,..., x k } is a vector of the form k λ ix i for

More information

Introduction to Quantitative Techniques for MSc Programmes SCHOOL OF ECONOMICS, MATHEMATICS AND STATISTICS MALET STREET LONDON WC1E 7HX

Introduction to Quantitative Techniques for MSc Programmes SCHOOL OF ECONOMICS, MATHEMATICS AND STATISTICS MALET STREET LONDON WC1E 7HX Introduction to Quantitative Techniques for MSc Programmes SCHOOL OF ECONOMICS, MATHEMATICS AND STATISTICS MALET STREET LONDON WC1E 7HX September 2007 MSc Sep Intro QT 1 Who are these course for? The September

More information

Lecture Summaries for Linear Algebra M51A

Lecture Summaries for Linear Algebra M51A These lecture summaries may also be viewed online by clicking the L icon at the top right of any lecture screen. Lecture Summaries for Linear Algebra M51A refers to the section in the textbook. Lecture

More information

OHSx XM511 Linear Algebra: Solutions to Online True/False Exercises

OHSx XM511 Linear Algebra: Solutions to Online True/False Exercises This document gives the solutions to all of the online exercises for OHSx XM511. The section ( ) numbers refer to the textbook. TYPE I are True/False. Answers are in square brackets [. Lecture 02 ( 1.1)

More information

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to 1.1. Introduction Linear algebra is a specific branch of mathematics dealing with the study of vectors, vector spaces with functions that

More information

5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns

5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns 5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns (1) possesses the solution and provided that.. The numerators and denominators are recognized

More information

Linear Algebra: Lecture notes from Kolman and Hill 9th edition.

Linear Algebra: Lecture notes from Kolman and Hill 9th edition. Linear Algebra: Lecture notes from Kolman and Hill 9th edition Taylan Şengül March 20, 2019 Please let me know of any mistakes in these notes Contents Week 1 1 11 Systems of Linear Equations 1 12 Matrices

More information

Review Questions REVIEW QUESTIONS 71

Review Questions REVIEW QUESTIONS 71 REVIEW QUESTIONS 71 MATLAB, is [42]. For a comprehensive treatment of error analysis and perturbation theory for linear systems and many other problems in linear algebra, see [126, 241]. An overview of

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

Chapter 6 Page 1 of 10. Lecture Guide. Math College Algebra Chapter 6. to accompany. College Algebra by Julie Miller

Chapter 6 Page 1 of 10. Lecture Guide. Math College Algebra Chapter 6. to accompany. College Algebra by Julie Miller Chapter 6 Page 1 of 10 Lecture Guide Math 105 - College Algebra Chapter 6 to accompany College Algebra by Julie Miller Corresponding Lecture Videos can be found at Prepared by Stephen Toner & Nichole DuBal

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

Linear Algebra: Matrix Eigenvalue Problems

Linear Algebra: Matrix Eigenvalue Problems CHAPTER8 Linear Algebra: Matrix Eigenvalue Problems Chapter 8 p1 A matrix eigenvalue problem considers the vector equation (1) Ax = λx. 8.0 Linear Algebra: Matrix Eigenvalue Problems Here A is a given

More information

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING Lectures MODULE 8 MATRICES III Rank of a matrix 2 General systems of linear equations 3 Eigenvalues and eigenvectors Rank of a matrix

More information

Computational Methods. Systems of Linear Equations

Computational Methods. Systems of Linear Equations Computational Methods Systems of Linear Equations Manfred Huber 2010 1 Systems of Equations Often a system model contains multiple variables (parameters) and contains multiple equations Multiple equations

More information

GRE Subject test preparation Spring 2016 Topic: Abstract Algebra, Linear Algebra, Number Theory.

GRE Subject test preparation Spring 2016 Topic: Abstract Algebra, Linear Algebra, Number Theory. GRE Subject test preparation Spring 2016 Topic: Abstract Algebra, Linear Algebra, Number Theory. Linear Algebra Standard matrix manipulation to compute the kernel, intersection of subspaces, column spaces,

More information

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method 54 CHAPTER 10 NUMERICAL METHODS 10. ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS As a numerical technique, Gaussian elimination is rather unusual because it is direct. That is, a solution is obtained after

More information

Online Exercises for Linear Algebra XM511

Online Exercises for Linear Algebra XM511 This document lists the online exercises for XM511. The section ( ) numbers refer to the textbook. TYPE I are True/False. Lecture 02 ( 1.1) Online Exercises for Linear Algebra XM511 1) The matrix [3 2

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

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

Chap 3. Linear Algebra

Chap 3. Linear Algebra Chap 3. Linear Algebra Outlines 1. Introduction 2. Basis, Representation, and Orthonormalization 3. Linear Algebraic Equations 4. Similarity Transformation 5. Diagonal Form and Jordan Form 6. Functions

More information

ENGI 9420 Lecture Notes 2 - Matrix Algebra Page Matrix operations can render the solution of a linear system much more efficient.

ENGI 9420 Lecture Notes 2 - Matrix Algebra Page Matrix operations can render the solution of a linear system much more efficient. ENGI 940 Lecture Notes - Matrix Algebra Page.0. Matrix Algebra A linear system of m equations in n unknowns, a x + a x + + a x b (where the a ij and i n n a x + a x + + a x b n n a x + a x + + a x b m

More information

1. Linear systems of equations. Chapters 7-8: Linear Algebra. Solution(s) of a linear system of equations (continued)

1. Linear systems of equations. Chapters 7-8: Linear Algebra. Solution(s) of a linear system of equations (continued) 1 A linear system of equations of the form Sections 75, 78 & 81 a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2 a m1 x 1 + a m2 x 2 + + a mn x n = b m can be written in matrix

More information

A matrix is a rectangular array of. objects arranged in rows and columns. The objects are called the entries. is called the size of the matrix, and

A matrix is a rectangular array of. objects arranged in rows and columns. The objects are called the entries. is called the size of the matrix, and Section 5.5. Matrices and Vectors A matrix is a rectangular array of objects arranged in rows and columns. The objects are called the entries. A matrix with m rows and n columns is called an m n matrix.

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

CPE 310: Numerical Analysis for Engineers

CPE 310: Numerical Analysis for Engineers CPE 310: Numerical Analysis for Engineers Chapter 2: Solving Sets of Equations Ahmed Tamrawi Copyright notice: care has been taken to use only those web images deemed by the instructor to be in the public

More information

A matrix is a rectangular array of. objects arranged in rows and columns. The objects are called the entries. is called the size of the matrix, and

A matrix is a rectangular array of. objects arranged in rows and columns. The objects are called the entries. is called the size of the matrix, and Section 5.5. Matrices and Vectors A matrix is a rectangular array of objects arranged in rows and columns. The objects are called the entries. A matrix with m rows and n columns is called an m n matrix.

More information

Systems of Linear Equations. By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University

Systems of Linear Equations. By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University Systems of Linear Equations By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University Standard of Competency: Understanding the properties of systems of linear equations, matrices,

More information

Advanced Engineering Mathematics Prof. Pratima Panigrahi Department of Mathematics Indian Institute of Technology, Kharagpur

Advanced Engineering Mathematics Prof. Pratima Panigrahi Department of Mathematics Indian Institute of Technology, Kharagpur Advanced Engineering Mathematics Prof. Pratima Panigrahi Department of Mathematics Indian Institute of Technology, Kharagpur Lecture No. # 02 Vector Spaces, Subspaces, linearly Dependent/Independent of

More information

Lesson 3. Inverse of Matrices by Determinants and Gauss-Jordan Method

Lesson 3. Inverse of Matrices by Determinants and Gauss-Jordan Method Module 1: Matrices and Linear Algebra Lesson 3 Inverse of Matrices by Determinants and Gauss-Jordan Method 3.1 Introduction In lecture 1 we have seen addition and multiplication of matrices. Here we shall

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

GENERAL ARTICLE Realm of Matrices

GENERAL ARTICLE Realm of Matrices Realm of Matrices Exponential and Logarithm Functions Debapriya Biswas Debapriya Biswas is an Assistant Professor at the Department of Mathematics, IIT- Kharagpur, West Bengal, India. Her areas of interest

More information

Foundations of Matrix Analysis

Foundations of Matrix Analysis 1 Foundations of Matrix Analysis In this chapter we recall the basic elements of linear algebra which will be employed in the remainder of the text For most of the proofs as well as for the details, the

More information

Math Introduction to Numerical Analysis - Class Notes. Fernando Guevara Vasquez. Version Date: January 17, 2012.

Math Introduction to Numerical Analysis - Class Notes. Fernando Guevara Vasquez. Version Date: January 17, 2012. Math 5620 - Introduction to Numerical Analysis - Class Notes Fernando Guevara Vasquez Version 1990. Date: January 17, 2012. 3 Contents 1. Disclaimer 4 Chapter 1. Iterative methods for solving linear systems

More information

LINEAR ALGEBRA BOOT CAMP WEEK 2: LINEAR OPERATORS

LINEAR ALGEBRA BOOT CAMP WEEK 2: LINEAR OPERATORS LINEAR ALGEBRA BOOT CAMP WEEK 2: LINEAR OPERATORS Unless otherwise stated, all vector spaces in this worksheet are finite dimensional and the scalar field F has characteristic zero. The following are facts

More information

Linear System Equations

Linear System Equations King Saud University September 24, 2018 Table of contents 1 2 3 4 Definition A linear system of equations with m equations and n unknowns is defined as follows: a 1,1 x 1 + a 1,2 x 2 + + a 1,n x n = b

More information

Linear Algebra. Min Yan

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

More information

Linear Algebra Primer

Linear Algebra Primer Linear Algebra Primer D.S. Stutts November 8, 995 Introduction This primer was written to provide a brief overview of the main concepts and methods in elementary linear algebra. It was not intended to

More information

Chapter 3. Determinants and Eigenvalues

Chapter 3. Determinants and Eigenvalues Chapter 3. Determinants and Eigenvalues 3.1. Determinants With each square matrix we can associate a real number called the determinant of the matrix. Determinants have important applications to the theory

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

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

Linear Algebra Practice Problems

Linear Algebra Practice Problems Linear Algebra Practice Problems Math 24 Calculus III Summer 25, Session II. Determine whether the given set is a vector space. If not, give at least one axiom that is not satisfied. Unless otherwise stated,

More information

Fundamentals of Engineering Analysis (650163)

Fundamentals of Engineering Analysis (650163) Philadelphia University Faculty of Engineering Communications and Electronics Engineering Fundamentals of Engineering Analysis (6563) Part Dr. Omar R Daoud Matrices: Introduction DEFINITION A matrix is

More information

Problem Set (T) If A is an m n matrix, B is an n p matrix and D is a p s matrix, then show

Problem Set (T) If A is an m n matrix, B is an n p matrix and D is a p s matrix, then show MTH 0: Linear Algebra Department of Mathematics and Statistics Indian Institute of Technology - Kanpur Problem Set Problems marked (T) are for discussions in Tutorial sessions (T) If A is an m n matrix,

More information

MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~

MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~ MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~ Question No: 1 (Marks: 1) If for a linear transformation the equation T(x) =0 has only the trivial solution then T is One-to-one Onto Question

More information

Linear Algebra Highlights

Linear Algebra Highlights Linear Algebra Highlights Chapter 1 A linear equation in n variables is of the form a 1 x 1 + a 2 x 2 + + a n x n. We can have m equations in n variables, a system of linear equations, which we want to

More information

MAC Module 12 Eigenvalues and Eigenvectors. Learning Objectives. Upon completing this module, you should be able to:

MAC Module 12 Eigenvalues and Eigenvectors. Learning Objectives. Upon completing this module, you should be able to: MAC Module Eigenvalues and Eigenvectors Learning Objectives Upon completing this module, you should be able to: Solve the eigenvalue problem by finding the eigenvalues and the corresponding eigenvectors

More information

MAC Module 12 Eigenvalues and Eigenvectors

MAC Module 12 Eigenvalues and Eigenvectors MAC 23 Module 2 Eigenvalues and Eigenvectors Learning Objectives Upon completing this module, you should be able to:. Solve the eigenvalue problem by finding the eigenvalues and the corresponding eigenvectors

More information

Systems of Linear Equations and Matrices

Systems of Linear Equations and Matrices Chapter 1 Systems of Linear Equations and Matrices System of linear algebraic equations and their solution constitute one of the major topics studied in the course known as linear algebra. In the first

More information

(Refer Slide Time: 2:04)

(Refer Slide Time: 2:04) Linear Algebra By Professor K. C. Sivakumar Department of Mathematics Indian Institute of Technology, Madras Module 1 Lecture 1 Introduction to the Course Contents Good morning, let me welcome you to this

More information

Exact and Approximate Numbers:

Exact and Approximate Numbers: Eact and Approimate Numbers: The numbers that arise in technical applications are better described as eact numbers because there is not the sort of uncertainty in their values that was described above.

More information

Chapter 5 Eigenvalues and Eigenvectors

Chapter 5 Eigenvalues and Eigenvectors Chapter 5 Eigenvalues and Eigenvectors Outline 5.1 Eigenvalues and Eigenvectors 5.2 Diagonalization 5.3 Complex Vector Spaces 2 5.1 Eigenvalues and Eigenvectors Eigenvalue and Eigenvector If A is a n n

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

The iteration formula for to find the root of the equation

The iteration formula for to find the root of the equation SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES SUBJECT: NUMERICAL METHODS & LINEAR PROGRAMMING UNIT II SOLUTIONS OF EQUATION 1. If is continuous in then under

More information

DM559 Linear and Integer Programming. Lecture 6 Rank and Range. Marco Chiarandini

DM559 Linear and Integer Programming. Lecture 6 Rank and Range. Marco Chiarandini DM559 Linear and Integer Programming Lecture 6 and Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Outline 1. 2. 3. 2 Outline 1. 2. 3. 3 Exercise Solve the

More information

MAC1105-College Algebra. Chapter 5-Systems of Equations & Matrices

MAC1105-College Algebra. Chapter 5-Systems of Equations & Matrices MAC05-College Algebra Chapter 5-Systems of Equations & Matrices 5. Systems of Equations in Two Variables Solving Systems of Two Linear Equations/ Two-Variable Linear Equations A system of equations is

More information

Linear Algebra I for Science (NYC)

Linear Algebra I for Science (NYC) Element No. 1: To express concrete problems as linear equations. To solve systems of linear equations using matrices. Topic: MATRICES 1.1 Give the definition of a matrix, identify the elements and the

More information

MATH 583A REVIEW SESSION #1

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

More information

Elementary Linear Algebra

Elementary Linear Algebra Matrices J MUSCAT Elementary Linear Algebra Matrices Definition Dr J Muscat 2002 A matrix is a rectangular array of numbers, arranged in rows and columns a a 2 a 3 a n a 2 a 22 a 23 a 2n A = a m a mn We

More information

Eigen Values and Eigen Vectors - GATE Study Material in PDF

Eigen Values and Eigen Vectors - GATE Study Material in PDF Eigen Values and Eigen Vectors - GATE Study Material in PDF Some of the most used concepts in Linear Algebra and Matrix Algebra are Eigen Values and Eigen Vectors. This makes Eigen Values and Eigen Vectors

More information

Lecture Notes in Linear Algebra

Lecture Notes in Linear Algebra Lecture Notes in Linear Algebra Dr. Abdullah Al-Azemi Mathematics Department Kuwait University February 4, 2017 Contents 1 Linear Equations and Matrices 1 1.2 Matrices............................................

More information

MATH 20F: LINEAR ALGEBRA LECTURE B00 (T. KEMP)

MATH 20F: LINEAR ALGEBRA LECTURE B00 (T. KEMP) MATH 20F: LINEAR ALGEBRA LECTURE B00 (T KEMP) Definition 01 If T (x) = Ax is a linear transformation from R n to R m then Nul (T ) = {x R n : T (x) = 0} = Nul (A) Ran (T ) = {Ax R m : x R n } = {b R m

More information

Systems of Linear Equations and Matrices

Systems of Linear Equations and Matrices Chapter 1 Systems of Linear Equations and Matrices System of linear algebraic equations and their solution constitute one of the major topics studied in the course known as linear algebra. In the first

More information

Chapter 2 Notes, Linear Algebra 5e Lay

Chapter 2 Notes, Linear Algebra 5e Lay Contents.1 Operations with Matrices..................................1.1 Addition and Subtraction.............................1. Multiplication by a scalar............................ 3.1.3 Multiplication

More information

Jordan Journal of Mathematics and Statistics (JJMS) 5(3), 2012, pp A NEW ITERATIVE METHOD FOR SOLVING LINEAR SYSTEMS OF EQUATIONS

Jordan Journal of Mathematics and Statistics (JJMS) 5(3), 2012, pp A NEW ITERATIVE METHOD FOR SOLVING LINEAR SYSTEMS OF EQUATIONS Jordan Journal of Mathematics and Statistics JJMS) 53), 2012, pp.169-184 A NEW ITERATIVE METHOD FOR SOLVING LINEAR SYSTEMS OF EQUATIONS ADEL H. AL-RABTAH Abstract. The Jacobi and Gauss-Seidel iterative

More information

Numerical Methods - Numerical Linear Algebra

Numerical Methods - Numerical Linear Algebra Numerical Methods - Numerical Linear Algebra Y. K. Goh Universiti Tunku Abdul Rahman 2013 Y. K. Goh (UTAR) Numerical Methods - Numerical Linear Algebra I 2013 1 / 62 Outline 1 Motivation 2 Solving Linear

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

8. Diagonalization.

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

More information

3 Matrix Algebra. 3.1 Operations on matrices

3 Matrix Algebra. 3.1 Operations on matrices 3 Matrix Algebra A matrix is a rectangular array of numbers; it is of size m n if it has m rows and n columns. A 1 n matrix is a row vector; an m 1 matrix is a column vector. For example: 1 5 3 5 3 5 8

More information

MATH 2331 Linear Algebra. Section 2.1 Matrix Operations. Definition: A : m n, B : n p. Example: Compute AB, if possible.

MATH 2331 Linear Algebra. Section 2.1 Matrix Operations. Definition: A : m n, B : n p. Example: Compute AB, if possible. MATH 2331 Linear Algebra Section 2.1 Matrix Operations Definition: A : m n, B : n p ( 1 2 p ) ( 1 2 p ) AB = A b b b = Ab Ab Ab Example: Compute AB, if possible. 1 Row-column rule: i-j-th entry of AB:

More information

The Solution of Linear Systems AX = B

The Solution of Linear Systems AX = B Chapter 2 The Solution of Linear Systems AX = B 21 Upper-triangular Linear Systems We will now develop the back-substitution algorithm, which is useful for solving a linear system of equations that has

More information

Linear Algebra Primer

Linear Algebra Primer Introduction Linear Algebra Primer Daniel S. Stutts, Ph.D. Original Edition: 2/99 Current Edition: 4//4 This primer was written to provide a brief overview of the main concepts and methods in elementary

More information

Symmetric and anti symmetric matrices

Symmetric and anti symmetric matrices Symmetric and anti symmetric matrices In linear algebra, a symmetric matrix is a square matrix that is equal to its transpose. Formally, matrix A is symmetric if. A = A Because equal matrices have equal

More information

Chapter 7. Linear Algebra: Matrices, Vectors,

Chapter 7. Linear Algebra: Matrices, Vectors, Chapter 7. Linear Algebra: Matrices, Vectors, Determinants. Linear Systems Linear algebra includes the theory and application of linear systems of equations, linear transformations, and eigenvalue problems.

More information

3 (Maths) Linear Algebra

3 (Maths) Linear Algebra 3 (Maths) Linear Algebra References: Simon and Blume, chapters 6 to 11, 16 and 23; Pemberton and Rau, chapters 11 to 13 and 25; Sundaram, sections 1.3 and 1.5. The methods and concepts of linear algebra

More information

Linear Algebra: Lecture Notes. Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway

Linear Algebra: Lecture Notes. Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway Linear Algebra: Lecture Notes Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway November 6, 23 Contents Systems of Linear Equations 2 Introduction 2 2 Elementary Row

More information

GATE Engineering Mathematics SAMPLE STUDY MATERIAL. Postal Correspondence Course GATE. Engineering. Mathematics GATE ENGINEERING MATHEMATICS

GATE Engineering Mathematics SAMPLE STUDY MATERIAL. Postal Correspondence Course GATE. Engineering. Mathematics GATE ENGINEERING MATHEMATICS SAMPLE STUDY MATERIAL Postal Correspondence Course GATE Engineering Mathematics GATE ENGINEERING MATHEMATICS ENGINEERING MATHEMATICS GATE Syllabus CIVIL ENGINEERING CE CHEMICAL ENGINEERING CH MECHANICAL

More information

Diagonalization of Matrix

Diagonalization of Matrix of Matrix King Saud University August 29, 2018 of Matrix Table of contents 1 2 of Matrix Definition If A M n (R) and λ R. We say that λ is an eigenvalue of the matrix A if there is X R n \ {0} such that

More information

Mathematical foundations - linear algebra

Mathematical foundations - linear algebra Mathematical foundations - linear algebra Andrea Passerini passerini@disi.unitn.it Machine Learning Vector space Definition (over reals) A set X is called a vector space over IR if addition and scalar

More information

Root Finding For NonLinear Equations Bisection Method

Root Finding For NonLinear Equations Bisection Method Root Finding For NonLinear Equations Bisection Method P. Sam Johnson November 17, 2014 P. Sam Johnson (NITK) Root Finding For NonLinear Equations Bisection MethodNovember 17, 2014 1 / 26 Introduction The

More information

Jim Lambers MAT 610 Summer Session Lecture 2 Notes

Jim Lambers MAT 610 Summer Session Lecture 2 Notes Jim Lambers MAT 610 Summer Session 2009-10 Lecture 2 Notes These notes correspond to Sections 2.2-2.4 in the text. Vector Norms Given vectors x and y of length one, which are simply scalars x and y, the

More information

Algebra C Numerical Linear Algebra Sample Exam Problems

Algebra C Numerical Linear Algebra Sample Exam Problems Algebra C Numerical Linear Algebra Sample Exam Problems Notation. Denote by V a finite-dimensional Hilbert space with inner product (, ) and corresponding norm. The abbreviation SPD is used for symmetric

More information

2 Eigenvectors and Eigenvalues in abstract spaces.

2 Eigenvectors and Eigenvalues in abstract spaces. MA322 Sathaye Notes on Eigenvalues Spring 27 Introduction In these notes, we start with the definition of eigenvectors in abstract vector spaces and follow with the more common definition of eigenvectors

More information

Linear Algebra Practice Problems

Linear Algebra Practice Problems Linear Algebra Practice Problems Page of 7 Linear Algebra Practice Problems These problems cover Chapters 4, 5, 6, and 7 of Elementary Linear Algebra, 6th ed, by Ron Larson and David Falvo (ISBN-3 = 978--68-78376-2,

More information

Linear Algebra March 16, 2019

Linear Algebra March 16, 2019 Linear Algebra March 16, 2019 2 Contents 0.1 Notation................................ 4 1 Systems of linear equations, and matrices 5 1.1 Systems of linear equations..................... 5 1.2 Augmented

More information

Computational Linear Algebra

Computational Linear Algebra Computational Linear Algebra PD Dr. rer. nat. habil. Ralf Peter Mundani Computation in Engineering / BGU Scientific Computing in Computer Science / INF Winter Term 2017/18 Part 3: Iterative Methods PD

More information

Matrix & Linear Algebra

Matrix & Linear Algebra Matrix & Linear Algebra Jamie Monogan University of Georgia For more information: http://monogan.myweb.uga.edu/teaching/mm/ Jamie Monogan (UGA) Matrix & Linear Algebra 1 / 84 Vectors Vectors Vector: A

More information

Math Camp Lecture 4: Linear Algebra. Xiao Yu Wang. Aug 2010 MIT. Xiao Yu Wang (MIT) Math Camp /10 1 / 88

Math Camp Lecture 4: Linear Algebra. Xiao Yu Wang. Aug 2010 MIT. Xiao Yu Wang (MIT) Math Camp /10 1 / 88 Math Camp 2010 Lecture 4: Linear Algebra Xiao Yu Wang MIT Aug 2010 Xiao Yu Wang (MIT) Math Camp 2010 08/10 1 / 88 Linear Algebra Game Plan Vector Spaces Linear Transformations and Matrices Determinant

More information

Math 3191 Applied Linear Algebra

Math 3191 Applied Linear Algebra Math 9 Applied Linear Algebra Lecture 9: Diagonalization Stephen Billups University of Colorado at Denver Math 9Applied Linear Algebra p./9 Section. Diagonalization The goal here is to develop a useful

More information

Linear Algebra (Math-324) Lecture Notes

Linear Algebra (Math-324) Lecture Notes Linear Algebra (Math-324) Lecture Notes Dr. Ali Koam and Dr. Azeem Haider September 24, 2017 c 2017,, Jazan All Rights Reserved 1 Contents 1 Real Vector Spaces 6 2 Subspaces 11 3 Linear Combination and

More information

SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL UNIT I

SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL UNIT I SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL SUBJECT: NUMERICAL METHODS ( SEMESTER VI ) UNIT I SOLUTIONS OF EQUATIONS AND EIGEN VALUE PROBLEMS

More information