Introduction
Numerical Integration में Simpson’s 3/8 Rule एक important method है, जो definite integral का approximate मान निकालने के लिए उपयोग किया जाता है। यह भी Simpson’s family का ही एक method है, लेकिन इसका approach Simpson’s 1/3 Rule से थोड़ा अलग होता है।
इस method में curve को cubic polynomial (तीसरी degree के वक्र) के द्वारा approximate किया जाता है। इसलिए यह method उन situations में useful होता है जहाँ data points ऐसे हों कि Simpson’s 1/3 Rule directly apply न हो पाए।
यह method trapezoidal rule से अधिक accurate होता है और कुछ cases में Simpson’s 1/3 Rule के साथ combined रूप में भी use किया जाता है।
Condition (महत्वपूर्ण शर्त)
Simpson’s 3/8 Rule को apply करने के लिए:
- intervals की संख्या 3 के multiple (3, 6, 9, …) होनी चाहिए
- सभी x values equally spaced हों
Basic Idea
इस method में:
- चार consecutive points लिए जाते हैं
- उनके बीच curve को cubic curve से approximate किया जाता है
- हर तीन intervals के लिए area निकाला जाता है
- फिर सभी areas को जोड़कर final result प्राप्त किया जाता है
Formula
जहाँ:
-
- = first value
- = last value
- multiples of 3 index (जैसे ) को 2 से multiply किया जाता है
- बाकी middle terms को 3 से multiply किया जाता है
Numerical Example (Step-by-Step)
मान लो हमें यह data दिया गया है:
| x | y |
|---|---|
| 0 | 1 |
| 1 | 2 |
| 2 | 3 |
| 3 | 4 |
Step 1: Check Condition
- Total points = 4
- Intervals = 4 – 1 = 3
- 3, 3 का multiple है ✔
इसलिए rule apply कर सकते हैं
Step 2: Find h
Step 3: Apply Formula
Step 4: Values Put करें
Step 5: Solve करें
Final Answer
Approximate area = 7.5
Explanation of Result
इस method में:
- first और last values को direct लिया गया
- बीच की values को 3 से multiply किया गया
- क्योंकि cubic approximation में इनका contribution अधिक होता है
यह method curve को और smooth तरीके से approximate करता है, इसलिए accuracy अच्छी मिलती है।
Important Points
- intervals का 3 के multiple होना जरूरी है
- Simpson’s 1/3 Rule की तरह यह भी higher accuracy देता है
- complex data sets में useful है
- कभी-कभी दोनों Simpson rules को combine करके use किया जाता है
Conclusion
Simpson’s 3/8 Rule एक advanced numerical method है जो:
- cubic approximation के माध्यम से काम करता है
- special cases में बहुत useful होता है
- Numerical Integration के important exam questions में शामिल रहता है