Introduction
Linear System of Equations को solve करने के लिए Gauss Elimination Method एक बहुत important direct method है। इस method में equations को step-by-step simplify करके उन्हें ऐसी form में बदला जाता है जिससे solution आसानी से निकाला जा सके।
यह method खासकर बड़े systems (2, 3 या उससे अधिक variables) के लिए उपयोगी होता है और programming implementation में भी widely use किया जाता है।
इसका मुख्य उद्देश्य equations को upper triangular form में बदलना होता है, ताकि back substitution द्वारा variables के मान निकाले जा सकें।
Basic Idea
इस method में दो मुख्य steps होते हैं:
- Forward Elimination
- equations को simplify करके lower part को zero बनाया जाता है
- system को upper triangular form में बदला जाता है
- Backward Substitution
- last equation से value निकालते हैं
- फिर ऊपर की equations में put करके बाकी values निकालते हैं
General Form
मान लो system है:
इसे हम step-by-step simplify करते हैं
Numerical Example (Step-by-Step)
Solve the system:
Step 1: Eliminate x from 2nd and 3rd equation
Second equation:
Third equation:
👉 अब system बन गया:
Step 2: Solve last equation
Step 3: Put value of y in second equation
Step 4: Put y and z in first equation
Final Answer
Explanation
- पहले हमने equations को simplify किया
- फिर triangular form बनाई
- फिर नीचे से ऊपर values निकालते गए
Important Points
- यह direct method है (iteration की जरूरत नहीं)
- large systems के लिए efficient है
- programming में बहुत use होता है
Conclusion
Gauss Elimination Method एक systematic approach है जिससे:
- complex linear equations आसानी से solve होते हैं
- step-by-step simplification से exact solution मिलता है