Part 8: Newton Gregory Backward Interpolation for UPSC ISS: Predicting the End

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

Welcome back to Part 8 of Module 2, updated for the UPSC ISS 2026 to 2027 cycle. In Part 7 we predicted values near the beginning of a table. Today the examiner flips the situation: the target sits near the end of the data. Use the forward formula there and your truncated series carries a large error. The correct tool is the twin sibling: the Newton Gregory Backward Interpolation Formula.

With step value u=xxnhu = \dfrac{x – x_n}{h}​​ measured from the last argument, the formula is Pn(x)=yn+uyn+u(u+1)2!2yn+P_n(x) = y_n + u\nabla y_n + \dfrac{u(u+1)}{2!}\nabla^2 y_n + \dots, the binomial expansion of (1)uyn(1-\nabla)^{-u} y_n​, built entirely on the bottom diagonal of the table.

Remember the stakes. Statistics Paper 1 gives you 80 questions worth 200 marks in 2 hours, so each question is worth 2.5 marks and each wrong answer costs about 0.83 marks. With close to 20 Numerical Analysis questions on the paper, choosing the wrong formula twice can quietly erase a full question’s worth of marks.

This post is Part 8 of the Interpolation with Equal Intervals Guide (Module 2), inside our UPSC ISS Numerical Analysis Complete Guide. For strategy and books, visit the UPSC ISS hub.

The Story of Ravi and the Urgent Estimate

Ravi, an economist in the Ministry of Finance, has sector output data at equal intervals of 10 years: 1990, 2000, 2010, and 2020. One evening his director asks for the estimated figure for 2018 before the next morning.

Ravi notices two things. The intervals are equal, h=10h = 10. And 2018 sits at the bottom of the table, just before 2020. A value near the end calls for the differences at the bottom diagonal, traced upward. That is the Newton Gregory Backward formula.

you ever used the forward formula when the backward one was needed? Be honest in the comments.
0
you ever used the forward formula when the backward one was needed? Be honest in the comments.x

Why Is It Called Backward

The formula contains the values of the tabulated function from the final term yny_n moving leftward, and it runs on the backward difference operator \nabla. Instead of the leading differences at the top, you pick yn,2yn,3yn\nabla y_n, \nabla^2 y_n, \nabla^3 y_n​ from the very bottom of the table.

The decision rule in one line: equal intervals plus a target near the end means backward; equal intervals plus a target near the beginning means forward.

The Master Formula

With equidistant arguments x0,,xnx_0, \dots, x_n interval hh and step value computed from the last argument:u=xxnhu = \frac{x – x_n}{h}Pn(x)=yn+uyn+u(u+1)2!2yn+u(u+1)(u+2)3!3yn++u(u+1)(u+n1)n!nynP_n(x) = y_n + u\,\nabla y_n + \frac{u(u+1)}{2!}\,\nabla^2 y_n + \frac{u(u+1)(u+2)}{3!}\,\nabla^3 y_n + \dots + \frac{u(u+1)\cdots(u+n-1)}{n!}\,\nabla^n y_n

StatChakravyuh Pro Tips

  1. The negative u trap. Since the target xx usually lies just before xnx_n​, the numerator xxnx – x_n is negative, so uu is almost always negative. Half the wrong options in the paper exist purely to catch a dropped minus sign here.
  2. Spot the plus signs. Forward uses (u1),(u2)(u-1), (u-2); backward uses (u+1),(u+2)(u+1), (u+2). One memory hook: the formula that walks backward compensates with plus signs.
  3. The operator connection. The full formula is the expansion of Euyn=(1)uynE^u y_n = (1-\nabla)^{-u} y_n. If you trust the operator algebra of Part 2, you can rebuild the formula in the exam hall instead of recalling it blindly.
  4. The bridge identity. yn=Δyn1\nabla y_n = \Delta y_{n-1}​. Both name the same number, ynyn1y_n – y_{n-1}​. Options often present the unfamiliar label to create doubt.

Which formula do you find easier to memorize, forward or backward? Drop your answer below.
0
Which formula do you find easier to memorize, forward or backward? Drop your answer below.x

Solved PYQ Masterclass

PYQ pattern (direct evaluation type): A function takes the values (1,1),(2,4),(3,9),(4,16)(1, 1), (2, 4), (3, 9), (4, 16). Using the appropriate Newton Gregory formula, find f(3.5)f(3.5).

Step 1: Choose the strategy. Arguments 1, 2, 3, 4 with h=1h = 1. The target 3.5 lies near the end, so backward it is, with xn=4x_n = 4 and yn=16y_n = 16.u=3.541=0.5u = \frac{3.5 – 4}{1} = -0.5

Step 2: Bottom differences by mental math. Entries 1, 4, 9, 16. First backward differences: 3, 5, 7, so yn=7\nabla y_n = 7. Second: 2, so 2yn=2\nabla^2 y_n = 2. Third: 0, so we stop; the data is quadratic.

Step 3: Apply the formula.f(3.5)=16+(0.5)(7)+(0.5)(0.5)2(2)=163.50.25=12.25f(3.5) = 16 + (-0.5)(7) + \frac{(-0.5)(0.5)}{2}(2) = 16 – 3.5 – 0.25 = 12.25

Final Answer: 12.25.

Cross check: the data is y=x2y = x^2, and 3.52=12.253.5^2 = 12.25. Mental math verified in under 60 seconds.

Common Traps to Avoid

Trap 1: Forgetting that uu is negative. Substituting a positive uu flips the answer toward a wrong option that is always present.

Trap 2: Computing uu from x0x_0​ instead of xnx_n​. The backward formula measures the step from the last tabulated argument.

Trap 3: Using minus signs in the brackets. The backward brackets are (u+1),(u+2),(u+3)(u+1), (u+2), (u+3) all plus.

Frequently Asked Questions

  1. How do I choose between Newton’s Forward and Backward formulas?

    Check the target value. Near the beginning of an equally spaced table, use Forward. Near the end, use Backward.

  2. Can the backward formula handle unequal intervals?

    No. Both Newton Gregory formulas need strictly equal intervals. Unequal intervals require Lagrange or divided differences, covered in Module 4.

  3. Why does the formula use ∇ instead of Δ?

    Because the calculation climbs upward from the bottom of the table, and f(x)=f(x)f(xh)\nabla f(x) = f(x) – f(x-h) naturally captures each step against the previous entry.

  4. My u came out negative. Is that wrong?

    It is perfectly correct. Since the target usually lies before the last argument xnx_n​, the numerator xxnx – x_n is negative, making uu negative.

  5. What if I use the backward formula near the beginning of the table?

    With all terms included it eventually gives the right value, but a truncated series then carries an unnecessarily large error. Each formula converges fastest in its own zone.

Take the Next Step with StatChakravyuh

Join the Free UPSC ISS WhatsApp Community. All parts of this series plus the Module 2 Practice PDF with 50 MCQs, releasing this Sunday, 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 9, the final part of Module 2: the Missing Term hack that skips the difference table entirely, plus Sub-division of Intervals.

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