Part 21: Simpson’s 3/8 Rule and Weddle’s Rule for UPSC ISS: Multiples of 3 and 6

Practice on the go. Get our Android app.
Install App

Welcome back to Part 21 of Module 5, updated for the UPSC ISS 2026 to 2027 cycle. Simpson’s 1/3 Rule upgraded straight lines to parabolas, but it locked us into an even number of intervals. What if the data arrives in groups of 3 or 6? Two formulas answer: Simpson’s 3/8 Rule and the precision champion, Weddle’s Rule.

Simpson’s 3/8, from n=3n = 3, fits a cubic through every four points, needs a multiple of 3 sub intervals, and is exact up to degree 3. Weddle’s Rule, from n=6n = 6, needs a multiple of 6 sub intervals, hence at least 7 consecutive values, and is exact for polynomials of degree 5 or lower with an error of order O(h6)O(h^6).

Exam context: 80 questions, 200 marks, 2 hours, 2.5 marks per question, about 0.83 deducted per wrong answer. Both rules have produced direct constraint questions in recent cycles, and both are solved below.

This post is Part 21 of the Numerical Calculus Guide (Module 5), inside our UPSC ISS Numerical Analysis Complete Guide. Roadmap at the UPSC ISS hub.

The Story of Sanjay and the Monsoon Rainfall

Sanjay, an ISS officer at the Meteorological Department, must compute the total accumulated rainfall over a 6 month monsoon season, with readings on the last day of each month: exactly 6 equal sub intervals.

A junior suggests the Trapezoidal Rule; Sanjay knows it will underestimate the heavy mid season peaks. Another suggests Simpson’s 1/3, which works since 6 is even. But Sanjay wants the highest accuracy for the national database. Six is a multiple of 3, so Simpson’s 3/8 qualifies, and better still, six is a multiple of 6, so Weddle’s Rule applies, delivering the most accurate estimate of all.

When several formulas all qualify, how do you decide which is best? Tell us below.
0
When several formulas all qualify, how do you decide which is best? Tell us below.x

Simpson’s 3/8 Rule: The Multiple of 3 Rule

Putting n=3n = 3 in the General Quadrature Formula and neglecting differences above the third order gives a rule that fits a cubic polynomial over groups of three sub intervals:I=3h8[(y0+yn)+3(y1+y2+y4+y5+)+2(y3+y6+)]I = \frac{3h}{8}\left[(y_0 + y_n) + 3(y_1 + y_2 + y_4 + y_5 + \dots) + 2(y_3 + y_6 + \dots)\right]

In simple words: three eighths of the gap, times the first plus last, plus three times the ordinates whose index is not a multiple of 3, plus twice the ordinates whose index is a multiple of 3.

Constraints and accuracy. The number of sub intervals must be a multiple of 3 (3, 6, 9, 12). The global error is O(h4)O(h^4), and since the error term carries the fourth derivative, the rule is exact for polynomials of degree 3 or less, matching Simpson’s 1/3 in exactness.

Weddle’s Rule: The Precision Champion

Putting n=6n = 6 in the master formula gives Weddle’s Rule:I=3h10[y0+5y1+y2+6y3+y4+5y5+y6+]I = \frac{3h}{10}\left[y_0 + 5y_1 + y_2 + 6y_3 + y_4 + 5y_5 + y_6 + \dots\right]

The weight pattern per block of six intervals reads 1,5,1,6,1,5,11, 5, 1, 6, 1, 5, 1.

Constraints and accuracy. The number of sub intervals must be a multiple of 6, so one application alone needs at least 7 consecutive values, y0y_0​ through y6y_6. The global error is remarkably small, of order O(h6)O(h^6), and through the same style of cancellation seen in Part 20, the rule is exact for polynomials of degree 5 or lower. Among the standard Newton Cotes rules, Weddle is generally the most accurate.

Simpson’s rules cap at degree 3, Weddle reaches degree 5. Which fact will you anchor first? Drop a comment.
0
Simpson's rules cap at degree 3, Weddle reaches degree 5. Which fact will you anchor first? Drop a comment.x

Solved PYQ Masterclass

PYQ 1, the constraint question (UPSC ISS 2021 cycle, as recorded in our PYQ archive): The number of sub intervals required in Simpson’s three eighth rule is a multiple of:

(a) 2 (b) 3 (c) 4 (d) 5

Logic: Simpson’s 1/3 needs multiples of 2, Weddle needs multiples of 6, and Simpson’s 3/8 needs multiples of 3. Answer: (b), in 2 seconds.

PYQ 2, the Weddle statements (UPSC ISS 2016 cycle, as recorded in our PYQ archive): Consider the statements:

  1. Weddle’s rule requires at least six consecutive values of the function.
  2. If f(x)f(x) is a polynomial of 4th degree, then Weddle’s rule gives an exact result.

Logic: Statement 1 is false: six sub intervals require seven points, y0y_0​ to y6y_6​, not six. Statement 2 is true: Weddle is exact up to degree 5, and 4 is below 5. Answer: Statement 2 only.

PYQ 3, the integration bypass pattern: 03(x3+2x+5)dx\int_0^3 (x^3 + 2x + 5)\,dx is evaluated by Simpson’s 3/8 rule with 3 equal sub intervals. The value obtained is?

Logic: The integrand has degree 3, and Simpson’s 3/8 is exact up to degree 3, so compute the plain integral: [x44+x2+5x]03=814+9+15=20.25+24=44.25\left[\dfrac{x^4}{4} + x^2 + 5x\right]_0^3 = \dfrac{81}{4} + 9 + 15 = 20.25 + 24 = 44.25. Answer: 44.25, no table built.

Common Traps to Avoid

Trap 1: Reading “at least six values” as true for Weddle. Six intervals demand seven points; the off by one option is a certified mark stealer.

Trap 2: Granting Weddle exactness for degree 6. The ceiling is degree 5.

Trap 3: Believing Simpson’s 3/8 beats Simpson’s 1/3 in exactness. Both cap at degree 3 with O(h4)O(h^4) errors; 3/8 simply serves a different interval count.

Frequently Asked Questions

  1. How do Simpson’s 1/3 and 3/8 rules differ?

    The 1/3 rule fits a parabola through 3 points and needs even sub intervals. The 3/8 rule fits a cubic through 4 points and needs sub intervals in multiples of 3.

  2. Which rule is the most accurate?

    Weddle’s Rule, generally, with an O(h6)O(h^6) error against O(h4)O(h^4) for both Simpson rules and O(h2)O(h^2) for the Trapezoidal rule.

  3. Why does Weddle’s rule need at least 7 points?

    It is built with n=6n = 6; six sub intervals have seven boundaries, y0y_0​ through y6y_6.

  4. Is Simpson’s 3/8 exact for a cubic?

    Yes. Its error carries the fourth derivative, which is zero for any cubic, so the result is perfectly exact up to degree 3.

  5. With 12 sub intervals, which rules can I use?

    All three. Twelve is even for Simpson’s 1/3, a multiple of 3 for Simpson’s 3/8, and a multiple of 6 for Weddle, which would give the most accurate estimate.

Take the Next Step with StatChakravyuh

Join the Free UPSC ISS WhatsApp Community. All parts of this series plus the Module 5 Practice PDF with 60 MCQs arrive there first. 👉 Join the WhatsApp Community now

Enroll in the Free UPSC ISS Course. Structured lessons and practice sets on the Practice Improve Repeat system, completely free. 👉 Enroll in the Free Course

Coming up in Part 22, the finale of Module 5: a rapid fire session solving real quadrature PYQs in 10 seconds using the exactness cheat codes.

Help other aspirants
UPSC ISS 2027 · Complete Chakravyuh

Stop buying tests one by one. Get all 6 papers in one package.

Complete Chakravyuh is the complete UPSC ISS test series for 2027. More than 6000 questions across all 6 papers, with every descriptive answer evaluated within 3 days. Practice. Improve. Repeat.

6000+Questions
All 6Papers Covered
6 + 1Courses in One
3 DaysAnswer Evaluation
₹7,499 ₹15,999 Regular price till 30 September 2026

Have a doubt or suggestion? Message us on WhatsApp

Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
0
Got a similar doubt? Discuss here.x
()
x