Simpson’s 3/8 Rule

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

x0xnydx3h8[y0+yn+3(y1+y2+y4+y5+)+2(y3+y6+)]\int_{x_0}^{x_n} y\,dx \approx \frac{3h}{8} \left[y_0 + y_n + 3(y_1 + y_2 + y_4 + y_5 + \cdots) + 2(y_3 + y_6 + \cdots)\right]

जहाँ:

  • h=x1x0h = x_1 – x_0
  • y0y_0​ = first value
  • yny_n​ = last value
  • multiples of 3 index (जैसे y3,y6y_3, y_6​) को 2 से multiply किया जाता है
  • बाकी middle terms को 3 से multiply किया जाता है

Numerical Example (Step-by-Step)

मान लो हमें यह data दिया गया है:

xy
01
12
23
34

Step 1: Check Condition

  • Total points = 4
  • Intervals = 4 – 1 = 3
  • 3, 3 का multiple है ✔
    इसलिए rule apply कर सकते हैं

Step 2: Find h

h=x1x0=10=1h = x_1 – x_0 = 1 – 0 = 1

Step 3: Apply Formula

Area=3h8[y0+y3+3(y1+y2)]Area = \frac{3h}{8} [y_0 + y_3 + 3(y_1 + y_2)]

Step 4: Values Put करें

=38[1+4+3(2+3)]= \frac{3}{8} [1 + 4 + 3(2 + 3)]

Step 5: Solve करें

=38[1+4+15]= \frac{3}{8} [1 + 4 + 15]

=38×20=7.5= \frac{3}{8} \times 20 = 7.5

Final Answer

Approximate area = 7.5

Explanation of Result

इस method में:

  • first और last values को direct लिया गया
  • बीच की values y1,y2y_1, y_2 को 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 में शामिल रहता है

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top