Introduction
Gauss-Jacobi Method एक important iterative method है जिसका उपयोग linear system of equations को solve करने के लिए किया जाता है। यह method direct methods (जैसे Gauss Elimination) से अलग है, क्योंकि इसमें solution एक ही step में नहीं मिलता, बल्कि धीरे-धीरे iterations के माध्यम से approximate किया जाता है।
इस method में हम initial guess (starting values) लेते हैं और बार-बार calculation करके solution को improve करते हैं, जब तक कि required accuracy प्राप्त न हो जाए।
यह method खासकर बड़े systems और programming implementation के लिए बहुत useful होता है।
Basic Idea
मान लो system है:
पहले हम equations को इस form में लिखते हैं:
फिर हर iteration में पुरानी values का use करके नई values निकालते हैं
Important Condition (Convergence)
Gauss-Jacobi Method सही result देने के लिए:
- matrix को diagonally dominant होना चाहिए
यानि:
Numerical Example (Step-by-Step)
Solve the system:
Step 1: Convert into iterative form
Step 2: Initial Guess लें
मान लेते हैं:
Step 3: First Iteration
Step 4: Second Iteration
अब previous values use करेंगे:
Step 5: Third Iteration (एक और step)
Observation
- values धीरे-धीरे stabilize हो रही हैं
- solution converge कर रहा है
Approx solution:
Explanation
- हर iteration में पुरानी values का use किया गया
- सभी variables को एक साथ update किया गया
- यही Jacobi method की खास बात है
Important Points
- यह iterative method है
- initial guess जरूरी होता है
- convergence condition important है
- programming में आसानी से implement होता है
Conclusion
Gauss-Jacobi Method एक simple और effective iterative technique है:
- large systems के लिए useful
- धीरे-धीरे accurate solution देता है
- numerical computation में widely used है