1 / 96

Gaussian Elimination

Gaussian Elimination. Electrical Engineering Majors Author(s): Autar Kaw http://numericalmethods.eng.usf.edu Transforming Numerical Methods Education for STEM Undergraduates. Naïve Gauss Elimination http://numericalmethods.eng.usf.edu. Naïve Gaussian Elimination.

cachez
Télécharger la présentation

Gaussian Elimination

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Gaussian Elimination Electrical Engineering Majors Author(s): Autar Kaw http://numericalmethods.eng.usf.edu Transforming Numerical Methods Education for STEM Undergraduates

  2. Naïve Gauss Eliminationhttp://numericalmethods.eng.usf.edu

  3. Naïve Gaussian Elimination A method to solve simultaneous linear equations of the form [A][X]=[C] Two steps 1. Forward Elimination 2. Back Substitution

  4. Forward Elimination The goal of forward elimination is to transform the coefficient matrix into an upper triangular matrix

  5. Forward Elimination A set of n equations and n unknowns . . . . . . (n-1) steps of forward elimination

  6. Forward Elimination Step 1 For Equation 2, divide Equation 1 by and multiply by .

  7. Forward Elimination Subtract the result from Equation 2. − _________________________________________________ or

  8. Forward Elimination Repeat this procedure for the remaining equations to reduce the set of equations as . . . . . . . . . End of Step 1

  9. Forward Elimination Step 2 Repeat the same procedure for the 3rd term of Equation 3. . . . . . . End of Step 2

  10. Forward Elimination At the end of (n-1) Forward Elimination steps, the system of equations will look like . . . . . . End of Step (n-1)

  11. Matrix Form at End of Forward Elimination

  12. Back Substitution Solve each equation starting from the last equation Example of a system of 3 equations

  13. Back Substitution Starting Eqns . . . . . .

  14. Back Substitution Start with the last equation because it has only one unknown

  15. Back Substitution

  16. THE END http://numericalmethods.eng.usf.edu

  17. Naïve Gauss EliminationExamplehttp://numericalmethods.eng.usf.edu

  18. Example: Unbalanced three phase load Three-phase loads are common in AC systems. When the system is balanced the analysis can be simplified to a single equivalent circuit model. However, when it is unbalanced the only practical solution involves the solution of simultaneous linear equations. In a model the following equations need to be solved. Find the values of Iar , Iai , Ibr , Ibi , Icr , and Iciusing Naïve Gaussian Elimination.

  19. Example: Unbalanced three phase load Forward Elimination: Step 1 For the new row 2: For the new row 3:

  20. Example: Unbalanced three phase load Forward Elimination: Step 1 For the new row 4: For the new row 5:

  21. Example: Unbalanced three phase load Forward Elimination: Step 1 For the new row 6: The system of equations after the completion of the first step of forward elimination is:

  22. Example: Unbalanced three phase load Forward Elimination: Step 2 For the new row 3: For the new row 4:

  23. Example: Unbalanced three phase load Forward Elimination: Step 2 For the new row 5: For the new row 6:

  24. Example: Unbalanced three phase load The system of equations after the completion of the second step of forward elimination is:

  25. Example: Unbalanced three phase load Forward Elimination: Step 3 For the new row 4: For the new row 5:

  26. Example: Unbalanced three phase load Forward Elimination: Step 3 For the new row 6: The system of equations after the completion of the third step of forward elimination is:

  27. Example: Unbalanced three phase load Forward Elimination: Step 4 For the new row 5: For the new row 6:

  28. Example: Unbalanced three phase load The system of equations after the completion of the fourth step of forward elimination is:

  29. Example: Unbalanced three phase load Forward Elimination: Step 5 For the new row 6: The system of equations after the completion of forward elimination is:

  30. Example: Unbalanced three phase load Back Substitution The six equations obtained at the end of the forward elimination process are: Now solve the six equations starting with the sixth equation and back substituting to solve the remaining equations, ending with equation one

  31. Example: Unbalanced three phase load Back Substitution Substituting the value of Ici in the fifth equation: From the sixth equation:

  32. Example: Unbalanced three phase load Back Substitution Substituting the value of Icr and Ici in the fourth equation Substituting the value of Ibi , Icr and Ici in the third equation

  33. Example: Unbalanced three phase load Back Substitution Substituting the value of Ibr , Ibi , Icr and Ici in the second equation Substituting the value of Iai , Ibr , Ibi , Icr and Ici in the first equation

  34. Example: Unbalanced three phase load Solution: The solution vector is

  35. THE END http://numericalmethods.eng.usf.edu

  36. Naïve Gauss EliminationPitfallshttp://numericalmethods.eng.usf.edu

  37. Pitfall#1. Division by zero

  38. Is division by zero an issue here?

  39. Is division by zero an issue here? YES Division by zero is a possibility at any step of forward elimination

  40. Pitfall#2. Large Round-off Errors Exact Solution

  41. Pitfall#2. Large Round-off Errors Solve it on a computer using 6 significant digits with chopping

  42. Pitfall#2. Large Round-off Errors Solve it on a computer using 5 significant digits with chopping Is there a way to reduce the round off error?

  43. Avoiding Pitfalls • Increase the number of significant digits • Decreases round-off error • Does not avoid division by zero

  44. Avoiding Pitfalls • Gaussian Elimination with Partial Pivoting • Avoids division by zero • Reduces round off error

  45. THE END http://numericalmethods.eng.usf.edu

  46. Gauss Elimination with Partial Pivotinghttp://numericalmethods.eng.usf.edu

  47. Pitfalls of Naïve Gauss Elimination • Possible division by zero • Large round-off errors

  48. Avoiding Pitfalls • Increase the number of significant digits • Decreases round-off error • Does not avoid division by zero

  49. Avoiding Pitfalls • Gaussian Elimination with Partial Pivoting • Avoids division by zero • Reduces round off error

  50. What is Different About Partial Pivoting? At the beginning of the kth step of forward elimination, find the maximum of If the maximum of the values is in the p th row, then switch rows p and k.

More Related