Part 7: Newton Gregory Forward Interpolation for UPSC ISS: Predicting the Beginning

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

Welcome to Part 7 and the opening of Module 2, updated for the UPSC ISS 2026 to 2027 cycle. In Part 6 we understood what interpolation is, its assumptions, and the error term. Now it is time for the most famous weapon in your arsenal: the Newton Gregory Forward Interpolation Formula.

The formula estimates the value of a function near the beginning of a table of equally spaced arguments. With step value u=xx0hu = \dfrac{x – x_0}{h}, it reads Pn(x)=y0+uΔy0+u(u1)2!Δ2y0+P_n(x) = y_0 + u\Delta y_0 + \dfrac{u(u-1)}{2!}\Delta^2 y_0 + \dots and is mathematically the binomial expansion of (1+Δ)uy0(1+\Delta)^u y_0​.

A quick word on stakes. Statistics Paper 1 is an objective paper of 80 questions worth 200 marks in 2 hours, so every question carries 2.5 marks, and each wrong answer deducts one third of that, about 0.83 marks. Numerical Analysis contributes close to 20 of those 80 questions, worth about 50 marks, and interpolation with equal intervals is its most directly tested topic. That is why Module 2 deserves your sharpest attention.

This post is Part 7 of the Interpolation with Equal Intervals Guide (Module 2), inside our UPSC ISS Numerical Analysis Complete Guide. New to the exam? Start at the UPSC ISS hub.

The Story of Amit and the Wheat Yield

Amit is a newly recruited ISS officer in the Ministry of Agriculture. He has wheat yield data for the years 2010, 2015, 2020, and 2025. His senior asks for the estimated yield of 2012 for a presentation.

Amit observes two things. The years are equally spaced, so h=5h = 5. And 2012 lies close to the beginning of the table, right after 2010. A value near the start of an equally spaced table calls for a formula built on the top entries of the difference table. That formula is Newton Gregory Forward.

Have you ever struggled to decide which interpolation formula to use in a mock test? Tell us your biggest confusion in the comments.
0
Have you ever struggled to decide which interpolation formula to use in a mock test? Tell us your biggest confusion in the comments.x

Why Is It Called Forward

The formula uses the values of the tabulated function from the leading term y0y_0 onward to the right, and nothing to its left. In the forward difference table, you read only the upper diagonal, the leading differences Δy0,Δ2y0,Δ3y0\Delta y_0, \Delta^2 y_0, \Delta^3 y_0, and so on.

The two condition decision rule: use Newton Gregory Forward when the arguments have equal intervals and the target value lies near the beginning of the table. Both conditions must hold.

The Master Formula

Let y=f(x)y = f(x) take the values y0,y1,,yny_0, y_1, \dots, y_n​ at the equidistant arguments x0,x1,,xnx_0, x_1, \dots, x_n​ with interval hh. First compute the step value:u=xx0hu = \frac{x – x_0}{h}

Then:Pn(x)=y0+uΔy0+u(u1)2!Δ2y0+u(u1)(u2)3!Δ3y0++u(u1)(un+1)n!Δny0P_n(x) = y_0 + u\,\Delta y_0 + \frac{u(u-1)}{2!}\,\Delta^2 y_0 + \frac{u(u-1)(u-2)}{3!}\,\Delta^3 y_0 + \dots + \frac{u(u-1)\cdots(u-n+1)}{n!}\,\Delta^n y_0

StatChakravyuh Pro Tips

  1. The binomial shortcut. The formula is exactly the expansion of (1+Δ)uy0(1+\Delta)^u y_0, which is Euy0E^u y_0​. If you remember the operator relation from Part 2, you never need to memorize the formula blindly. The coefficients are simply (u1),(u2),(u3)\binom{u}{1}, \binom{u}{2}, \binom{u}{3}, and so on.
  2. The degree check. Given n+1n+1 data points, the fitted polynomial has degree nn, so Δny0\Delta^n y_0 is constant and higher differences vanish. The moment a difference column becomes constant, stop building the table.
  3. The u check. For fast convergence, your uu should lie between 0 and 1. If your computed uu is large, you have picked the wrong origin or the wrong formula.
  4. The negative marking angle. At 2.5 marks per question with a deduction of about 0.83 for each wrong answer, one avoided sign error is worth more than one extra attempted question. Slow down exactly at the (u1)(u-1) bracket, which is where most sign slips happen.

Did you notice this formula is the Separation of Symbols result from Part 3 in disguise? Drop a yes if you spotted it.
0
Did you notice this formula is the Separation of Symbols result from Part 3 in disguise? Drop a yes if you spotted it.x

Solved PYQ Masterclass

PYQ pattern (a recurring direct evaluation type in ISS Paper 1): Given the points (0,1),(1,3),(2,7)(0, 1), (1, 3), (2, 7) find f(0.5)f(0.5) using Newton’s Forward formula.

Step 1: Parameters. Arguments 0, 1, 2 with h=1h = 1 and x0=0x_0 = 0. So u=0.501=0.5u = \dfrac{0.5 – 0}{1} = 0.5.

Step 2: Leading differences by mental math. Entries 1, 3, 7. First differences: 2 and 4, so Δy0=2\Delta y_0 = 2. Second difference: 42=24 – 2 = 2, so Δ2y0=2\Delta^2 y_0 = 2.

Step 3: Apply the formula.f(0.5)=1+(0.5)(2)+(0.5)(0.5)2(2)=1+10.25=1.75f(0.5) = 1 + (0.5)(2) + \frac{(0.5)(-0.5)}{2}(2) = 1 + 1 – 0.25 = 1.75

Final Answer: 1.75, solved in about 30 seconds with no rough work.

Speed cross check: the data fits y=x2+x+1y = x^2 + x + 1, and 0.25+0.5+1=1.750.25 + 0.5 + 1 = 1.75. When small data sets clearly follow a simple polynomial, verifying through the pattern is the fastest confidence boost available in the exam hall.

Common Traps to Avoid

Trap 1: Using the forward formula for a target near the end of the table. The truncated series then carries a large error, and the options are set to punish exactly that mistake.

Trap 2: Computing uuu from the wrong origin. In the forward formula, x0x_0​ is always the first tabulated argument.

Trap 3: Mixing the bracket signs. Forward uses (u1),(u2)(u-1), (u-2) with minus signs. The plus sign version belongs to the backward formula of Part 8.

Frequently Asked Questions

  1. When exactly should I use the Newton Gregory Forward formula?

    Strictly when the arguments have equal intervals and the value to be estimated lies near the beginning of the tabulated data.

  2. What does uu u represent in the formula?

    The scaled step distance from the origin, u=xx0hu = \dfrac{x – x_0}{h}​​, where x0x_0​ is the first argument and hh is the interval of differencing.

  3. Can this formula handle unequal intervals?

    No. Newton Gregory Forward and Backward are strictly for equidistant arguments. Unequal intervals need divided differences or Lagrange’s formula, which arrive in Module 4.

  4. Why does the formula stop at the nth difference?

    Because n+1n+1 points fit a polynomial of degree nn, and by the fundamental result of finite differences the (n+1)(n+1)th difference of that polynomial is zero.

  5. How is the formula related to the shift operator EE E?

    The whole formula is the algebraic expansion of Euy0=(1+Δ)uy0E^u y_0 = (1+\Delta)^u y_0​ by the Binomial Theorem.

Take the Next Step with StatChakravyuh

Join the Free UPSC ISS WhatsApp Community. Every part of this series, plus the Module 2 Practice PDF with 50 MCQs releasing this Sunday, is delivered there first. 👉 Join the WhatsApp Community now

Enroll in the Free UPSC ISS Course. Structured lessons and practice sets built on the Practice Improve Repeat system, at zero cost. 👉 Enroll in the Free Course

Coming up in Part 8: we flip the table. The Newton Gregory Backward formula for values near the end, and the negative u trap that catches thousands of aspirants.

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
2 Comments
Oldest
Newest Most Voted
trackback
2 days ago

[…] to Part 9, the final part of Module 2, updated for the UPSC ISS 2026 to 2027 cycle. The forward and backward formulas need a full difference table. But when a question asks for one missing value […]

trackback
1 day ago

[…] of Module 3, updated for the UPSC ISS 2026 to 2027 cycle. In Module 2 we predicted values near the beginning and the end of a table. But when the missing value sits exactly in the middle, both Newton Gregory […]

2
0
Got a similar doubt? Discuss here.x
()
x