Introduction
Runge-Kutta Method differential equations को solve करने का एक बहुत powerful और widely used numerical method है। यह method Euler और Modified Euler methods की limitations को दूर करता है और बिना higher derivatives निकाले अधिक accurate result देता है।
यह method step-by-step solution देता है, लेकिन हर step में multiple slopes (different points पर) calculate करके उनका weighted average लेता है। इसी कारण इसकी accuracy बहुत अच्छी होती है।
Runge-Kutta Method के कई orders होते हैं, जिनमें से 2nd order (RK-2) और 4th order (RK-4) सबसे ज्यादा उपयोग किए जाते हैं।
Runge-Kutta 2nd Order Method (RK-2)
Basic Idea
इस method में दो slopes (k₁ और k₂) निकाले जाते हैं और उनका average लेकर next value निकाली जाती है।
Formula
Numerical Example (RK-2)
Solve:
Find ,
Step 1: Initial values
Step 2: Calculate k₁
Step 3: Calculate k₂
Step 4: Find next value
Final Answer (RK-2)
Runge-Kutta 4th Order Method (RK-4)
Basic Idea
यह method चार slopes (k₁, k₂, k₃, k₄) निकालता है और उनका weighted average लेकर बहुत accurate result देता है।
Formula
Numerical Example (RK-4)
Same problem:
Step 1: Calculate k₁
Step 2: Calculate k₂
Step 3: Calculate k₃
Step 4: Calculate k₄
Step 5: Final calculation
Final Answer (RK-4)
Comparison (Important)
| Method | Accuracy |
|---|---|
| Euler | Low |
| Modified Euler | Medium |
| RK-2 | Better |
| RK-4 | Highest |
Important Points
- RK methods में higher derivatives की जरूरत नहीं होती
- RK-4 सबसे ज्यादा accurate और widely used है
- programming और scientific computation में standard method है
Conclusion
Runge-Kutta Methods powerful numerical techniques हैं जो:
- high accuracy प्रदान करते हैं
- complex differential equations को solve करते हैं
- practical और exam दोनों में बहुत important हैं