SlideShare a Scribd company logo
1 of 17
Admission in India 2015 
By: 
admission.edhole.com
2 
Gauss-Siedel Method 
admission.edhole.com
Gauss-Seidel Method 
An iterative method. 
Basic Procedure: 
-Algebraically solve each linear equation for xi 
-Assume an initial guess solution array 
-Solve for each xi and repeat 
-Use absolute relative approximate error after each iteration 
to check if error is within a pre-specified tolerance. 
http://numericalmethods.eng.usf.edu 
admission.edhole.com
Gauss-Seidel Method 
http://numericalmethods.eng.usf.edu 
Why? 
The Gauss-Seidel Method allows the user to control round-off error. 
Elimination methods such as Gaussian Elimination and LU 
Decomposition are prone to prone to round-off error. 
Also: If the physics of the problem are understood, a close initial 
guess can be made, decreasing the number of iterations needed. 
admission.edhole.com
Gauss-Seidel Method 
http://numericalmethods.eng.usf.edu 
Algorithm 
A set of n equations and n unknowns: 
11 1 12 2 13 3 1 1 a x a x a x ... a x b n n + + + + = 
21 1 22 2 23 3 2 a x a x a x ... a x b 2n n + + + + = 
. . 
. . 
. . 
n n n nn n n a x + a x + a x + ...+ a x = b 1 1 2 2 3 3 
If: the diagonal elements are 
non-zero 
Rewrite each equation solving 
for the corresponding unknown 
ex: 
First equation, solve for x1 
Second equation, solve for x2 
admission.edhole.com
Gauss-Seidel Method 
http://numericalmethods.eng.usf.edu 
Algorithm 
Rewriting each equation 
x c - a x - a x  
- 
a = 1 12 2 13 3 1 
n xn 1 a 
11 
x = c - a x - a x  
- 
a x 
2 21 1 23 3 2 
   
c a x a x  
a x a x 
n - 1 n - 1,1 1 n - 1,2 2 n - 1, n - 2 n - 2 n - 
1, 
n n 
1, 1 
c a x a x a x 
n n n n n n 
nn 
n 
n n 
n 
n n 
a 
x 
a 
x 
a 
1 1 2 2 , 1 1 
1 
22 
2 
- - 
- - 
- 
- - - - 
= 
- - - - 
= 
 
From Equation 1 
From equation 2 
From equation n-1 
From equation n 
admission.edhole.com
Gauss-Seidel Method 
n 
c a x 
n - 1 n - 
1, 
j j 
n j j 
- ¹ = 
1 
1 
n 
c a x 
n nj j 
n j j 
http://numericalmethods.eng.usf.edu 
Algorithm 
General Form of each equation 
å j j 
c a x 
1 1 
1 
1 
1 a 
11 
x 
n 
j j 
¹ = 
- 
= 
å j 
c a x 
2 2 
1 
2 
22 
2 a 
x 
j 
n 
j j 
¹ = 
- 
= 
1, 1 
1 
- - 
- 
- å 
= 
n n 
n a 
x 
nn 
n a 
x 
å 
¹ = 
- 
= 
1 
admission.edhole.co 
m
Gauss-Seidel Method 
http://numericalmethods.eng.usf.edu 
Algorithm 
General Form for any row ‘i’ 
, 1,2, , . 
c - 
a x 
i ij j 
1 
i n 
a 
x 
ii 
n 
i j j 
= 
= i  
å 
¹ = 
How or where can this equation be used? 
admission.edhole.co 
m
Gauss-Seidel Method 
Solve for the unknowns 
http://numericalmethods.eng.usf.edu 
Assume an initial guess for [X] 
ù 
ú ú ú ú ú ú 
û 
é 
ê ê ê ê ê ê 
ë 
x 
1 
2 
x 
n- 
n 
x 
x 
1 
 
Use rewritten equations to solve for 
each value of xi. 
Important: Remember to use the 
most recent value of xi. Which 
means to apply values calculated to 
the calculations remaining in the 
current iteration. 
admission.edhole.co 
m
Gauss-Seidel Method 
Calculate the Absolute Relative Approximate Error 
100 
http://numericalmethods.eng.usf.edu 
x x 
x 
new 
i 
old 
i 
new 
i 
a i e = - ´ 
So when has the answer been found? 
The iterations are stopped when the absolute relative 
approximate error is less than a prespecified tolerance for all 
unknowns. 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
12 3 5 
ù 
é - 
= 
1 5 3 
http://numericalmethods.eng.usf.edu 
Given the system of equations 
12x 3x - 5x 1 1 2 3 + = 
x 5x 3x 28 1 2 3 + + = 
3x 7x 13x 76 1 2 3 + + = 
With an initial guess of 
ù 
ú ú ú 
û 
1 
é 
= 
ê ê ê 
ë 
ù 
ú ú ú û 
é 
ê ê ê 
ë 
0 
1 
x 
1 
2 
3 
x 
x 
The coefficient matrix is: 
[ ] 
ú ú ú 
û 
ê ê ê 
ë 
3 7 13 
A 
Will the solution converge using the 
Gauss-Siedel method? 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
12 12 3 5 8 11 12 13 a = = ³ a + a = + - = 
http://numericalmethods.eng.usf.edu 
[ ] 
ù 
ú ú ú 
û 
é - 
= 
12 3 5 
ê ê ê 
ë 
1 5 3 
3 7 13 
A 
Checking if the coefficient matrix is diagonally dominant 
5 5 1 3 4 22 21 23 a = = ³ a + a = + = 
13 13 3 7 10 33 31 32 a = = ³ a + a = + = 
The inequalities are all true and at least one row is strictly greater than: 
Therefore: The solution should converge using the Gauss-Siedel Method 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
ù 
1 
é 
= 
ù 
é 
0 
x 
1 
2 
x 
1 x = - + = 
2 x = - - = 
x = 76 - 3 0.50000 - 7 4.9000 
= 
3 http://numericalmethods.eng.usf.edu 
Rewriting each equation 
ù 
ú ú ú û 
é 
= 
ê ê ê 
ë 
ù 
ú ú ú 
û 
é 
ê ê ê 
ë 
12 3 5 
ù 
ú ú ú 
û 
é - 
ê ê ê 
ë 
1 
28 
76 
1 5 3 
3 7 13 
a 
1 
2 
a 
x = - x + x 
3 
a 
1 3 5 2 3 
12 
1 
x = - x - x 
28 3 1 3 
5 
2 
x = - x - x 
76 3 7 1 2 
13 
3 
With an initial guess of 
ú ú ú 
û 
ê ê ê 
ë 
ú ú ú 
û 
ê ê ê 
ë 
1 
3 
x 
( ) ( ) 0.50000 
12 
1 3 0 5 1 
( ) ( ) 4.9000 
5 
28 0.5 3 1 
( ) ( ) 3.0923 
13 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
The absolute relative approximate error 
a 1 Î = - ´ = 
100 67.662% 
http://numericalmethods.eng.usf.edu 
0.50000 1.0000 
0.50000 
a 2 Î = - ´ = 
100 100.00% 
4.9000 0 
4.9000 
a 3 Î = - ´ = 
100 67.662% 
3.0923 1.0000 
3.0923 
The maximum absolute relative error after the first iteration is 100% 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
ù 
é 
= 
ù 
é 
0.5000 
x 
1 
Substituting the x values into the equations After Iteration #2 ú ú ú 
ù 
ú ú ú 
û 
0.14679 
é 
= 
ê ê ê 
ë 
ù 
ú ú ú 
û 
é 
ê ê ê 
ë 
3.7153 
3.8118 
x 
1 
2 
x 
x 
3 
http://numericalmethods.eng.usf.edu 
After Iteration #1 
4.9000 
2 
x 
( ) ( ) 0.14679 
x = 1 - 3 4.9000 + 5 3.0923 
= 
1 12 
( ) ( ) 3.7153 
x = 28 - 0.14679 - 3 3.0923 
= 
2 5 
( ) ( ) 3.8118 
x = 76 - 3 0.14679 - 7 4.900 
= 
3 13 
û 
ê ê ê 
ë 
ú ú ú 
û 
ê ê ê 
ë 
3.0923 
3 
x 
admission.edhole.co 
m
Gauss-Seidel Method: Example 2 
Iteration #2 absolute relative approximate error 
1 Î = - ´ = a 
100 240.62% 
http://numericalmethods.eng.usf.edu 
0.14679 0.50000 
0.14679 
2 Î = - ´ = a 
100 31.887% 
3.7153 4.9000 
3.7153 
3 Î = - ´ = a 
100 18.876% 
3.8118 3.0923 
3.8118 
The maximum absolute relative error after the first iteration is 240.62% 
This is much larger than the maximum absolute relative error obtained in 
aditmeraistisonio #n1.. eIsd thhios lae p.crooblem? 
m
Gauss-Seidel Method: Example 2 
Repeating more iterations, the following values are obtained 
a 2 e a 3 Iteration a e 1 a2 a3 
http://numericalmethods.eng.usf.edu 
a 1 e 
123456 
0.50000 
0.14679 
0.74275 
0.94675 
0.99177 
0.99919 
67.662 
240.62 
80.23 
21.547 
4.5394 
0.74260 
4.900 
3.7153 
3.1644 
3.0281 
3.0034 
3.0001 
100.00 
31.887 
17.409 
4.5012 
0.82240 
0.11000 
3.0923 
3.8118 
3.9708 
3.9971 
4.0001 
4.0001 
67.662 
18.876 
4.0042 
0.65798 
0.07499 
0.00000 
ù 
ú ú ú 
û 
ù 
é 
= 
ê ê ê 
ë 
0.99919 
3.0001 
ù 
ú ú ú 
û 
é 
ê ê ê 
ë 
1 
3 
4 
x 
1 
2 
3 
x 
x 
ú ú ú 
û 
é 
= 
ê ê ê 
ë 
ù 
ú ú ú 
û 
é 
ê ê ê 
ë 
4.0001 
x 
1 
2 
x 
3 
x 
The solution obtained 
is close to the exact solution of admission.edhole.co 
m

More Related Content

What's hot

Quadractic equations.steps
Quadractic equations.stepsQuadractic equations.steps
Quadractic equations.stepsZuriñe Zurutuza
 
Math533 finalexamreviewapr13
Math533 finalexamreviewapr13Math533 finalexamreviewapr13
Math533 finalexamreviewapr13Brent Heard
 
Ecuaciones diferenciales - Willian Sampedro
Ecuaciones diferenciales - Willian SampedroEcuaciones diferenciales - Willian Sampedro
Ecuaciones diferenciales - Willian SampedroWillianSampedro
 
Mendoza Veirana et al. 2021 v2
Mendoza Veirana et al. 2021 v2Mendoza Veirana et al. 2021 v2
Mendoza Veirana et al. 2021 v2SSSB
 
Pres Absolute Value Inequalities (Section 1.8)
Pres   Absolute Value Inequalities (Section 1.8)Pres   Absolute Value Inequalities (Section 1.8)
Pres Absolute Value Inequalities (Section 1.8)schrockb
 

What's hot (11)

Quadractic equations.steps
Quadractic equations.stepsQuadractic equations.steps
Quadractic equations.steps
 
07 interpolationnewton
07 interpolationnewton07 interpolationnewton
07 interpolationnewton
 
Lecture6
Lecture6Lecture6
Lecture6
 
Math533 finalexamreviewapr13
Math533 finalexamreviewapr13Math533 finalexamreviewapr13
Math533 finalexamreviewapr13
 
Computational Dynamics edited
Computational Dynamics editedComputational Dynamics edited
Computational Dynamics edited
 
04 gaussmethods
04 gaussmethods04 gaussmethods
04 gaussmethods
 
Ecuaciones diferenciales - Willian Sampedro
Ecuaciones diferenciales - Willian SampedroEcuaciones diferenciales - Willian Sampedro
Ecuaciones diferenciales - Willian Sampedro
 
Mendoza Veirana et al. 2021 v2
Mendoza Veirana et al. 2021 v2Mendoza Veirana et al. 2021 v2
Mendoza Veirana et al. 2021 v2
 
07 interpolation
07 interpolation07 interpolation
07 interpolation
 
Pres Absolute Value Inequalities (Section 1.8)
Pres   Absolute Value Inequalities (Section 1.8)Pres   Absolute Value Inequalities (Section 1.8)
Pres Absolute Value Inequalities (Section 1.8)
 
06 regression
06 regression06 regression
06 regression
 

Viewers also liked

Viewers also liked (20)

Load flow study
Load flow studyLoad flow study
Load flow study
 
Gauss sediel
Gauss sedielGauss sediel
Gauss sediel
 
Andrealozada
AndrealozadaAndrealozada
Andrealozada
 
Oop
OopOop
Oop
 
Inheritance
InheritanceInheritance
Inheritance
 
Hierarchical inheritance
Hierarchical inheritanceHierarchical inheritance
Hierarchical inheritance
 
inheritance in C++
inheritance in C++inheritance in C++
inheritance in C++
 
Inheritance
InheritanceInheritance
Inheritance
 
Es272 ch4b
Es272 ch4bEs272 ch4b
Es272 ch4b
 
inheritance
inheritanceinheritance
inheritance
 
C++ Multiple Inheritance
C++ Multiple InheritanceC++ Multiple Inheritance
C++ Multiple Inheritance
 
Linear Systems Gauss Seidel
Linear Systems   Gauss SeidelLinear Systems   Gauss Seidel
Linear Systems Gauss Seidel
 
Gauss seidel
Gauss seidelGauss seidel
Gauss seidel
 
Matemáticas II ecuaciones lineales
Matemáticas II   ecuaciones linealesMatemáticas II   ecuaciones lineales
Matemáticas II ecuaciones lineales
 
Solución de sistemas de ecuaciones lineales.
Solución de sistemas de ecuaciones lineales. Solución de sistemas de ecuaciones lineales.
Solución de sistemas de ecuaciones lineales.
 
Jacobi and gauss-seidel
Jacobi and gauss-seidelJacobi and gauss-seidel
Jacobi and gauss-seidel
 
OOPS IN C++
OOPS IN C++OOPS IN C++
OOPS IN C++
 
C++ OOPS Concept
C++ OOPS ConceptC++ OOPS Concept
C++ OOPS Concept
 
Inheritance
InheritanceInheritance
Inheritance
 
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
 

Similar to Admission in india 2015

Gauss Seidal method.ppt
Gauss Seidal method.pptGauss Seidal method.ppt
Gauss Seidal method.pptMohitBhandwal1
 
Iterative method for linear systems and.
Iterative method for linear systems and.Iterative method for linear systems and.
Iterative method for linear systems and.aechkay379
 
NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)krishnapriya R
 
lecture-3 laplce and poisson.pptx .
lecture-3 laplce and poisson.pptx                .lecture-3 laplce and poisson.pptx                .
lecture-3 laplce and poisson.pptx .happycocoman
 
Numerical Techniques
Numerical TechniquesNumerical Techniques
Numerical TechniquesYasir Mahdi
 
Numerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsNumerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsMujeeb UR Rahman
 
Secent method
Secent methodSecent method
Secent methodritu1806
 
clear allclc Ex2-1 A) Compute the 5 gravity profiles.docx
clear allclc Ex2-1 A)  Compute the 5 gravity profiles.docxclear allclc Ex2-1 A)  Compute the 5 gravity profiles.docx
clear allclc Ex2-1 A) Compute the 5 gravity profiles.docxmonicafrancis71118
 
Problem Based Learning Presentation NACA
Problem Based Learning Presentation NACAProblem Based Learning Presentation NACA
Problem Based Learning Presentation NACAWahid Dino Samo
 
STLtalk about statistical analysis and its application
STLtalk about statistical analysis and its applicationSTLtalk about statistical analysis and its application
STLtalk about statistical analysis and its applicationJulieDash5
 
MLHEP Lectures - day 2, basic track
MLHEP Lectures - day 2, basic trackMLHEP Lectures - day 2, basic track
MLHEP Lectures - day 2, basic trackarogozhnikov
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)Minhas Kamal
 
Regression vs Neural Net
Regression vs Neural NetRegression vs Neural Net
Regression vs Neural NetRatul Alahy
 
mws_gen_nle_ppt_bisection.ppt
mws_gen_nle_ppt_bisection.pptmws_gen_nle_ppt_bisection.ppt
mws_gen_nle_ppt_bisection.pptssuser6ff4d5
 
Trig substitution
Trig substitutionTrig substitution
Trig substitutiondynx24
 

Similar to Admission in india 2015 (20)

Gauss Seidal method.ppt
Gauss Seidal method.pptGauss Seidal method.ppt
Gauss Seidal method.ppt
 
Iterative method for linear systems and.
Iterative method for linear systems and.Iterative method for linear systems and.
Iterative method for linear systems and.
 
NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)
 
lecture-3 laplce and poisson.pptx .
lecture-3 laplce and poisson.pptx                .lecture-3 laplce and poisson.pptx                .
lecture-3 laplce and poisson.pptx .
 
Numerical Techniques
Numerical TechniquesNumerical Techniques
Numerical Techniques
 
Numerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsNumerical Analysis and Computer Applications
Numerical Analysis and Computer Applications
 
ilovepdf_merged
ilovepdf_mergedilovepdf_merged
ilovepdf_merged
 
Secent method
Secent methodSecent method
Secent method
 
clear allclc Ex2-1 A) Compute the 5 gravity profiles.docx
clear allclc Ex2-1 A)  Compute the 5 gravity profiles.docxclear allclc Ex2-1 A)  Compute the 5 gravity profiles.docx
clear allclc Ex2-1 A) Compute the 5 gravity profiles.docx
 
Problem Based Learning Presentation NACA
Problem Based Learning Presentation NACAProblem Based Learning Presentation NACA
Problem Based Learning Presentation NACA
 
STLtalk about statistical analysis and its application
STLtalk about statistical analysis and its applicationSTLtalk about statistical analysis and its application
STLtalk about statistical analysis and its application
 
Regression.pptx
Regression.pptxRegression.pptx
Regression.pptx
 
Regression.pptx
Regression.pptxRegression.pptx
Regression.pptx
 
MLHEP Lectures - day 2, basic track
MLHEP Lectures - day 2, basic trackMLHEP Lectures - day 2, basic track
MLHEP Lectures - day 2, basic track
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Linear)
 
Regression vs Neural Net
Regression vs Neural NetRegression vs Neural Net
Regression vs Neural Net
 
mws_gen_nle_ppt_bisection.ppt
mws_gen_nle_ppt_bisection.pptmws_gen_nle_ppt_bisection.ppt
mws_gen_nle_ppt_bisection.ppt
 
Trig substitution
Trig substitutionTrig substitution
Trig substitution
 
CALCULUS 2.pptx
CALCULUS 2.pptxCALCULUS 2.pptx
CALCULUS 2.pptx
 
Bisection and fixed point method
Bisection and fixed point methodBisection and fixed point method
Bisection and fixed point method
 

More from Edhole.com

Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarkaEdhole.com
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarkaEdhole.com
 
Website development company surat
Website development company suratWebsite development company surat
Website development company suratEdhole.com
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in suratEdhole.com
 
Website dsigning company in india
Website dsigning company in indiaWebsite dsigning company in india
Website dsigning company in indiaEdhole.com
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhiEdhole.com
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarkaEdhole.com
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarkaEdhole.com
 
Website development company surat
Website development company suratWebsite development company surat
Website development company suratEdhole.com
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in suratEdhole.com
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in indiaEdhole.com
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhiEdhole.com
 
Website designing company in mumbai
Website designing company in mumbaiWebsite designing company in mumbai
Website designing company in mumbaiEdhole.com
 
Website development company surat
Website development company suratWebsite development company surat
Website development company suratEdhole.com
 
Website desinging company in surat
Website desinging company in suratWebsite desinging company in surat
Website desinging company in suratEdhole.com
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in indiaEdhole.com
 

More from Edhole.com (20)

Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website dsigning company in india
Website dsigning company in indiaWebsite dsigning company in india
Website dsigning company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Website designing company in mumbai
Website designing company in mumbaiWebsite designing company in mumbai
Website designing company in mumbai
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website desinging company in surat
Website desinging company in suratWebsite desinging company in surat
Website desinging company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 

Recently uploaded

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 

Recently uploaded (20)

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 

Admission in india 2015

  • 1. Admission in India 2015 By: admission.edhole.com
  • 2. 2 Gauss-Siedel Method admission.edhole.com
  • 3. Gauss-Seidel Method An iterative method. Basic Procedure: -Algebraically solve each linear equation for xi -Assume an initial guess solution array -Solve for each xi and repeat -Use absolute relative approximate error after each iteration to check if error is within a pre-specified tolerance. http://numericalmethods.eng.usf.edu admission.edhole.com
  • 4. Gauss-Seidel Method http://numericalmethods.eng.usf.edu Why? The Gauss-Seidel Method allows the user to control round-off error. Elimination methods such as Gaussian Elimination and LU Decomposition are prone to prone to round-off error. Also: If the physics of the problem are understood, a close initial guess can be made, decreasing the number of iterations needed. admission.edhole.com
  • 5. Gauss-Seidel Method http://numericalmethods.eng.usf.edu Algorithm A set of n equations and n unknowns: 11 1 12 2 13 3 1 1 a x a x a x ... a x b n n + + + + = 21 1 22 2 23 3 2 a x a x a x ... a x b 2n n + + + + = . . . . . . n n n nn n n a x + a x + a x + ...+ a x = b 1 1 2 2 3 3 If: the diagonal elements are non-zero Rewrite each equation solving for the corresponding unknown ex: First equation, solve for x1 Second equation, solve for x2 admission.edhole.com
  • 6. Gauss-Seidel Method http://numericalmethods.eng.usf.edu Algorithm Rewriting each equation x c - a x - a x  - a = 1 12 2 13 3 1 n xn 1 a 11 x = c - a x - a x  - a x 2 21 1 23 3 2    c a x a x  a x a x n - 1 n - 1,1 1 n - 1,2 2 n - 1, n - 2 n - 2 n - 1, n n 1, 1 c a x a x a x n n n n n n nn n n n n n n a x a x a 1 1 2 2 , 1 1 1 22 2 - - - - - - - - - = - - - - =  From Equation 1 From equation 2 From equation n-1 From equation n admission.edhole.com
  • 7. Gauss-Seidel Method n c a x n - 1 n - 1, j j n j j - ¹ = 1 1 n c a x n nj j n j j http://numericalmethods.eng.usf.edu Algorithm General Form of each equation å j j c a x 1 1 1 1 1 a 11 x n j j ¹ = - = å j c a x 2 2 1 2 22 2 a x j n j j ¹ = - = 1, 1 1 - - - - å = n n n a x nn n a x å ¹ = - = 1 admission.edhole.co m
  • 8. Gauss-Seidel Method http://numericalmethods.eng.usf.edu Algorithm General Form for any row ‘i’ , 1,2, , . c - a x i ij j 1 i n a x ii n i j j = = i  å ¹ = How or where can this equation be used? admission.edhole.co m
  • 9. Gauss-Seidel Method Solve for the unknowns http://numericalmethods.eng.usf.edu Assume an initial guess for [X] ù ú ú ú ú ú ú û é ê ê ê ê ê ê ë x 1 2 x n- n x x 1  Use rewritten equations to solve for each value of xi. Important: Remember to use the most recent value of xi. Which means to apply values calculated to the calculations remaining in the current iteration. admission.edhole.co m
  • 10. Gauss-Seidel Method Calculate the Absolute Relative Approximate Error 100 http://numericalmethods.eng.usf.edu x x x new i old i new i a i e = - ´ So when has the answer been found? The iterations are stopped when the absolute relative approximate error is less than a prespecified tolerance for all unknowns. admission.edhole.co m
  • 11. Gauss-Seidel Method: Example 2 12 3 5 ù é - = 1 5 3 http://numericalmethods.eng.usf.edu Given the system of equations 12x 3x - 5x 1 1 2 3 + = x 5x 3x 28 1 2 3 + + = 3x 7x 13x 76 1 2 3 + + = With an initial guess of ù ú ú ú û 1 é = ê ê ê ë ù ú ú ú û é ê ê ê ë 0 1 x 1 2 3 x x The coefficient matrix is: [ ] ú ú ú û ê ê ê ë 3 7 13 A Will the solution converge using the Gauss-Siedel method? admission.edhole.co m
  • 12. Gauss-Seidel Method: Example 2 12 12 3 5 8 11 12 13 a = = ³ a + a = + - = http://numericalmethods.eng.usf.edu [ ] ù ú ú ú û é - = 12 3 5 ê ê ê ë 1 5 3 3 7 13 A Checking if the coefficient matrix is diagonally dominant 5 5 1 3 4 22 21 23 a = = ³ a + a = + = 13 13 3 7 10 33 31 32 a = = ³ a + a = + = The inequalities are all true and at least one row is strictly greater than: Therefore: The solution should converge using the Gauss-Siedel Method admission.edhole.co m
  • 13. Gauss-Seidel Method: Example 2 ù 1 é = ù é 0 x 1 2 x 1 x = - + = 2 x = - - = x = 76 - 3 0.50000 - 7 4.9000 = 3 http://numericalmethods.eng.usf.edu Rewriting each equation ù ú ú ú û é = ê ê ê ë ù ú ú ú û é ê ê ê ë 12 3 5 ù ú ú ú û é - ê ê ê ë 1 28 76 1 5 3 3 7 13 a 1 2 a x = - x + x 3 a 1 3 5 2 3 12 1 x = - x - x 28 3 1 3 5 2 x = - x - x 76 3 7 1 2 13 3 With an initial guess of ú ú ú û ê ê ê ë ú ú ú û ê ê ê ë 1 3 x ( ) ( ) 0.50000 12 1 3 0 5 1 ( ) ( ) 4.9000 5 28 0.5 3 1 ( ) ( ) 3.0923 13 admission.edhole.co m
  • 14. Gauss-Seidel Method: Example 2 The absolute relative approximate error a 1 Î = - ´ = 100 67.662% http://numericalmethods.eng.usf.edu 0.50000 1.0000 0.50000 a 2 Î = - ´ = 100 100.00% 4.9000 0 4.9000 a 3 Î = - ´ = 100 67.662% 3.0923 1.0000 3.0923 The maximum absolute relative error after the first iteration is 100% admission.edhole.co m
  • 15. Gauss-Seidel Method: Example 2 ù é = ù é 0.5000 x 1 Substituting the x values into the equations After Iteration #2 ú ú ú ù ú ú ú û 0.14679 é = ê ê ê ë ù ú ú ú û é ê ê ê ë 3.7153 3.8118 x 1 2 x x 3 http://numericalmethods.eng.usf.edu After Iteration #1 4.9000 2 x ( ) ( ) 0.14679 x = 1 - 3 4.9000 + 5 3.0923 = 1 12 ( ) ( ) 3.7153 x = 28 - 0.14679 - 3 3.0923 = 2 5 ( ) ( ) 3.8118 x = 76 - 3 0.14679 - 7 4.900 = 3 13 û ê ê ê ë ú ú ú û ê ê ê ë 3.0923 3 x admission.edhole.co m
  • 16. Gauss-Seidel Method: Example 2 Iteration #2 absolute relative approximate error 1 Î = - ´ = a 100 240.62% http://numericalmethods.eng.usf.edu 0.14679 0.50000 0.14679 2 Î = - ´ = a 100 31.887% 3.7153 4.9000 3.7153 3 Î = - ´ = a 100 18.876% 3.8118 3.0923 3.8118 The maximum absolute relative error after the first iteration is 240.62% This is much larger than the maximum absolute relative error obtained in aditmeraistisonio #n1.. eIsd thhios lae p.crooblem? m
  • 17. Gauss-Seidel Method: Example 2 Repeating more iterations, the following values are obtained a 2 e a 3 Iteration a e 1 a2 a3 http://numericalmethods.eng.usf.edu a 1 e 123456 0.50000 0.14679 0.74275 0.94675 0.99177 0.99919 67.662 240.62 80.23 21.547 4.5394 0.74260 4.900 3.7153 3.1644 3.0281 3.0034 3.0001 100.00 31.887 17.409 4.5012 0.82240 0.11000 3.0923 3.8118 3.9708 3.9971 4.0001 4.0001 67.662 18.876 4.0042 0.65798 0.07499 0.00000 ù ú ú ú û ù é = ê ê ê ë 0.99919 3.0001 ù ú ú ú û é ê ê ê ë 1 3 4 x 1 2 3 x x ú ú ú û é = ê ê ê ë ù ú ú ú û é ê ê ê ë 4.0001 x 1 2 x 3 x The solution obtained is close to the exact solution of admission.edhole.co m