Introduction
Linear System of Equations को solve करने के लिए Method of Factorization एक important direct method है। इस method में coefficient matrix को दो matrices के product के रूप में लिखा जाता है।
इस technique को आमतौर पर LU Decomposition Method भी कहा जाता है, क्योंकि इसमें matrix को:
- (Lower Triangular Matrix)
- (Upper Triangular Matrix)
में factorize किया जाता है।
यह method खासकर तब बहुत useful होता है जब:
- एक ही matrix के लिए multiple right-hand sides (RHS) हों
- programming या numerical computation करनी हो
Basic Idea
अगर system है:
तो हम को factorize करते हैं:
अब equation बनती है:
अब इसे दो steps में solve करते हैं:
- → Forward substitution
- → Backward substitution
Matrix Form
मान लो:
तो हम इसे ऐसे लिखेंगे:
Numerical Example (Step-by-Step)
Solve the system:
Step 1: Matrix Form में लिखें
Step 2: LU Factorization करें
Assume:
अब multiply करते हैं:
अब इसे से compare करें:
- u
- u
Step 3: L और U matrices
Step 4: Solve
Equations:
Step 5: Solve
Equations:
Final Answer
Explanation
- पहले matrix को और में divide किया
- फिर दो simple systems solve किए
- इससे calculation आसान हो गई
Important Points
- यह direct method है
- large systems के लिए efficient है
- multiple RHS problems में बहुत useful
- programming (especially matrix computation) में use होता है
Conclusion
Method of Factorization एक powerful technique है जिसमें:
- matrix को simpler parts में तोड़ा जाता है
- solving process step-by-step आसान हो जाती है
- numerical analysis में इसका बहुत महत्व है