Part 18: General Quadrature Formula for UPSC ISS: The Mother of All Integration Rules

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

Welcome back to Part 18 of Module 5, updated for the UPSC ISS 2026 to 2027 cycle. Part 17 taught us rates of change from tables. Today we learn accumulated areas from tables: Numerical Integration, and it all begins with one master equation, the General Quadrature Formula, also called the Newton Cotes Quadrature Formula.

Numerical quadrature evaluates a definite integral abf(x)dx\int_a^b f(x)\,dx from discrete values of the integrand. Integrating the Newton Gregory Forward formula over nnn equal parts gives the mother formula, and substituting n=1,2,3,4,6n = 1, 2, 3, 4, 6 produces the Trapezoidal Rule, Simpson’s 1/3, Simpson’s 3/8, Boole’s Rule, and Weddle’s Rule respectively.

Exam context: 80 questions, 200 marks, 2 hours, 2.5 marks per question, about 0.83 deducted per wrong answer, and integration questions form the heart of the Numerical Analysis block. Several are pure theory on this very page.

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

The Story of Karthik and the Highway Land Survey

Karthik, an ISS officer in the Ministry of Road Transport and Highways, must report the exact area of an irregular tract of land bordered by a curving river, so farmers can be compensated fairly for the new expressway.

A textbook problem would hand him the river’s equation to integrate. The real river obeys no equation. His surveyors instead give him the land’s width measured at equal 10 metre intervals. Karthik fits a polynomial through the discrete widths using Newton’s Forward formula, integrates the polynomial, and reports the area within minutes. That is numerical quadrature at work.

Have you ever measured the area of an irregular shape in a practical? How did you approach it? Share in the comments.
0
Have you ever measured the area of an irregular shape in a practical? How did you approach it? Share in the comments.x

Quadrature and Cubature

Numerical quadrature is the evaluation of a definite integral of a function of a single variable from discrete values, geometrically an area. When the object is a double integral in two variables, the process is called mechanical cubature, geometrically a volume. UPSC has framed direct definitional questions on the distinction.

The Mother Formula

Divide the range (a,b)(a, b) into nn equal parts of width hh, giving points x0,x0+h,,x0+nhx_0, x_0 + h, \dots, x_0 + nh. Approximating yy by Newton’s Forward formula and integrating from x0x_0​ to xnx_n​:I=h[ny0+n22Δy0+(n33n22)Δ2y02!+(n44n3+n2)Δ3y03!+]I = h\left[n\,y_0 + \frac{n^2}{2}\,\Delta y_0 + \left(\frac{n^3}{3} – \frac{n^2}{2}\right)\frac{\Delta^2 y_0}{2!} + \left(\frac{n^4}{4} – n^3 + n^2\right)\frac{\Delta^3 y_0}{3!} + \dots\right]

The family tree. Every famous rule is a child of this equation:

n=1n = 1 gives the Trapezoidal Rule. n=2n = 2 gives Simpson’s 1/3 Rule. n=3n = 3 gives Simpson’s 3/8 Rule. n=4n = 4 gives Boole’s Rule. n=6n = 6 gives Weddle’s Rule.

All these rules were born from a single master equation. Drop a yes if this connection surprised you.
0
All these rules were born from a single master equation. Drop a yes if this connection surprised you.x

Cote’s Numbers: The Hidden Goldmine

The Newton Cotes formula can also be written by weighting the entries directly: I=nhk=0nykCknI = nh\sum_{k=0}^{n} y_k\, C_k^n​, where the weights CknC_k^n are the Cote numbers, depending only on nn and kk and never on the function.

Two must memorize properties.

  1. Symmetry: Ckn=CnknC_k^n = C_{n-k}^n​. The coefficients mirror from both ends, so you only ever compute half of them.
  2. Unit sum: k=0nCkn=1\sum_{k=0}^{n} C_k^n = 1 for every nn, without exception.

StatChakravyuh Pro Tips

  1. The one second Cote hack. If a question asks for the sum of Cote coefficients for an 8th degree Newton Cotes formula, or any degree at all, the answer is 1. Tick and move on.
  2. The root formula fact. Asked which interpolation formula the general quadrature is derived from, the answer is strictly the Newton Gregory Forward formula.
  3. Equidistant only. The Newton Cotes family assumes strictly equal intervals. Unequal spacing requires integrating Lagrange’s polynomial instead.

Solved Derivation Masterclass

Question: Derive x0x1ydx\int_{x_0}^{x_1} y\,dx by putting n=1n = 1 in the General Quadrature Formula.

Solution.

  1. With n=1n = 1, the fitted curve through 2 points is a straight line, so second and higher differences vanish.
  2. Substitute: I=h[1y0+12Δy0]I = h\left[1 \cdot y_0 + \dfrac{1}{2}\Delta y_0\right].
  3. Use Δy0=y1y0\Delta y_0 = y_1 – y_0​: I=h[y0+12(y1y0)]=h2y0+y1y02I = h\left[y_0 + \dfrac{1}{2}(y_1 – y_0)\right] = h \cdot \dfrac{2y_0 + y_1 – y_0}{2}​​.

I=h2(y0+y1)I = \frac{h}{2}(y_0 + y_1)

Result: the exact Trapezoidal Rule, produced by pure algebra with no calculus. Part 19 explores this child in full depth.

Common Traps to Avoid

Trap 1: Attaching Weddle’s Rule to n=5n = 5. Weddle comes from n=6n = 6; the number 5 is the planted distractor.

Trap 2: Believing Cote numbers depend on the function being integrated. They depend only on nn and kk.

Trap 3: Applying Newton Cotes to unequally spaced data. The derivation itself assumes a constant hh.

Frequently Asked Questions

  1. What is the difference between quadrature and cubature?

    Quadrature is numerical integration of a single variable function, giving an area. Mechanical cubature evaluates a double integral in two variables, giving a volume.

  2. How is the General Quadrature Formula derived?

    By integrating the Newton Gregory Forward Interpolation Formula over a range divided into nn equal sub intervals.

  3. Which rules come from the Newton Cotes formula?

    Substituting n=1,2,3,4,6n = 1, 2, 3, 4, 6 gives the Trapezoidal Rule, Simpson’s 1/3 Rule, Simpson’s 3/8 Rule, Boole’s Rule, and Weddle’s Rule respectively.

  4. What are Cote’s numbers?

    The constant weights CknC_k^n multiplying the entries in the Newton Cotes formula. They depend only on nn and kk, never on the function being integrated.

  5. What are the exam critical properties of Cote’s numbers?

    Symmetry, Ckn=CnknC_k^n = C_{n-k}^n, and the unit sum, Ckn=1\sum C_k^n = 1 for every nn.

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 19: the first child of the family, the Trapezoidal Rule, and the local versus global error distinction that UPSC loves to test.

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