You are on page 1of 11

Name of Student :- Prathamesh Umesh Poyarekar

PRN No. :- 1930331507047


Class :- S.Y. Chemical Engineering (B.Tech)
Subject :- MATLAB
College :- Dr. Babasaheb Ambedkar Technological University,
Lonere
Date :- 14 August 2021
Signature :-
INDEX

Sr. No. Contents Page No.

1 Gauss Elimination Method 3-5

2 Eigen Value & Eigen Vector 6-10

3 End 11
Date :- 14 August 2021

PRACTICAL No. 06
GAUSS ELIMINATION METHOD

Aim :- To solve linear equations using gauss elimination method in MATLAB Software.

Theory :- This method for solving a pair of simultaneous linear equations reduces one
equation to one that has only a single variable. Once this has been done, the solution is the
same as that for when one line was vertical or parallel. This method is known as the Gaussian
elimination method. Gaussian elimination is a method of solving a liner system AX = b by
bringing the augmented matrix. To an upper triangular form. This elimination process is
called as the forward elimination method.

Gauss Elimination (Algorithm) :-

 Create Matrix A aug = [A | b]


 In each step A (i, i) is the pivot element.
 Use pivot element to create zeros in pivot column.
 Rj = Rj – ai ,j*Ri Where ai , j = A (j, i) / A (i ,i)

Back Substitution :-

 X3 = b(3) / A(3,3)
 X2 = b(2) – A (2,3)x3 / A(2,2)
 X1 = b(1) – A (1,3) x3 – A (1,2) x2 / A (1,1)

Problem Statement :-
Evaluate the following system of linear equation by using gauss elimination method.
x+y+z=4
2x + y + 3z = 7
3x + 4y – 2z = 9
Date :- 14 August 2021
PRACTICAL No. 07
EIGEN VALUE/ EIGEN VECTOR
Aim :- To find the Eigen value and Eigen vector of given matrix by using MATLAB
Software.
Problem Statement :-
Find the Eigen value and Eigen vector of following :-
1. A = [5 4, 1 2]
2. A = [1 2 3, 4 5 6, 7 8 9]
THANK YOU

You might also like