Part 4: Factorial Polynomials for UPSC ISS: The Discrete Differentiation Cheat Code

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

Welcome back to Part 4 of Module 1, updated for the UPSC ISS 2026 to 2027 cycle. After operator algebra and separation of symbols, today we tackle a concept that works like an absolute cheat code in Paper 1: the Factorial Representation of a Polynomial.

A factorial polynomial, written x(n)x^{(n)}, is the product x(xh)(x2h)[x(n1)h]x(x-h)(x-2h)\cdots[x-(n-1)h] of nn factors decreasing by the interval of differencing hh. Its key property: the forward difference operator acts on it exactly like differentiation, Δx(n)=nhx(n1)\Delta x^{(n)} = n h\, x^{(n-1)}, which gives Δnx(n)=n!hn\Delta^n x^{(n)} = n!\, h^n and Δn+1x(n)=0\Delta^{n+1} x^{(n)} = 0.

This post is Part 4 of the Finite Differences Foundation Guide (Module 1), inside our UPSC ISS Numerical Analysis Complete Guide. New here? Start at the UPSC ISS hub.

The Story of Priya and the Messy Rough Sheet

During her ISS attempt, Priya met a 2 mark question: evaluate Δ4(x4+3x3+5x2+2)\Delta^4(x^4 + 3x^3 + 5x^2 + 2).

She started from the definition, expanding (x+h)4(x+h)^4, then (x+h)3(x+h)^3, subtracting the original function. By the second difference her rough sheet was a mess of h2h^2 and h3h^3 terms and sign errors. Six minutes gone, wrong answer marked.

A StatChakravyuh student looks at the same question and writes 4!=244! = 24 in 5 seconds. This post teaches you exactly how.

Have you ever expanded a massive bracket like in an exam and made a silly sign mistake? Tell us in the comments.
0
Have you ever expanded a massive bracket like in an exam and made a silly sign mistake? Tell us in the comments.x

What Is a Factorial Polynomial

In continuous calculus, differentiation of xnx^n is easy. In finite differences, applying Δ\Delta to a plain xnx^n is messy because Δ(xn)=(x+h)nxn\Delta(x^n) = (x+h)^n – x^n leaves a long binomial expansion.

The fix is the factorial polynomial, denoted x(n)x^{(n)} and read as “xx raised to the power nn factorial”.x(n)=x(xh)(x2h)[x(n1)h]x^{(n)} = x(x-h)(x-2h)\cdots[x-(n-1)h]

Exam favourite special case, h=1:x(n)=x(x1)(x2)(xn+1)x^{(n)} = x(x-1)(x-2)\cdots(x-n+1)

For example, x(1)=xx^{(1)} = x, x(2)=x(x1)x^{(2)} = x(x-1), and x(3)=x(x1)(x2)x^{(3)} = x(x-1)(x-2).

The Magic: Delta Behaves Like d/dx

Here is why examiners love this notation. Applying Δ\Delta to a factorial polynomial mirrors ordinary differentiation.Δx(n)=nhx(n1),Δ2x(n)=n(n1)h2x(n2)\Delta x^{(n)} = n h\, x^{(n-1)}, \qquad \Delta^2 x^{(n)} = n(n-1) h^2\, x^{(n-2)}

Keep differencing until order nnn and every xxx disappears:Δnx(n)=n!hn,Δn+1x(n)=0\Delta^n x^{(n)} = n!\, h^n, \qquad \Delta^{n+1} x^{(n)} = 0

Did you notice that on factorial polynomials plays the exact role of on ordinary powers? Drop a yes or no below.
0
Did you notice that on factorial polynomials plays the exact role of on ordinary powers? Drop a yes or no below.x

StatChakravyuh Pro Tips

  1. The exactness shortcut. For any polynomial axn+bxn1+a x^n + b x^{n-1} + \dots of degree nn, the nnth difference is the constant an!hna \cdot n! \cdot h^n, and every higher order difference is exactly zero. This one rule settles several PYQs per paper.
  2. Conversion rule. Any polynomial of degree nnn can be written in factorial form of the same degree, and the leading coefficient stays unchanged. The lower coefficients are best found by synthetic division by xx, then (x1)(x-1), then (x2)(x-2), and so on.
  3. Reciprocal factorials. Negative indices are defined as x(n)=1(x+h)(x+2h)(x+nh)x^{(-n)} = \dfrac{1}{(x+h)(x+2h)\cdots(x+nh)}, and the inverse operator Δ1\Delta^{-1} then behaves like integration. This becomes valuable in the summation module.

Solved PYQ Masterclass

PYQ 1 (Priya’s question, a recurring ISS pattern): Evaluate Δ4(x4+3x3+5x2+2)\Delta^4(x^4 + 3x^3 + 5x^2 + 2) with h=1h = 1.

Solution:

  1. Degree of the polynomial is 4, leading coefficient is 1.
  2. Exactness rule: Δ4(x4)=14!14=24\Delta^4(x^4) = 1 \cdot 4! \cdot 1^4 = 24.
  3. The remaining terms 3x3,5x2,23x^3, 5x^2, 2 all have degree below 4, so their fourth differences are zero.

Final Answer: 24, in 5 seconds.

PYQ 2 (the famous product question, a UPSC ISS classic): With h=1h = 1, evaluate Δ10[(1ax)(1bx2)(1cx3)(1dx4)]\Delta^{10}\left[(1 – ax)(1 – bx^2)(1 – cx^3)(1 – dx^4)\right].

Solution:The product is a polynomial of degree 1+2+3+4=101 + 2 + 3 + 4 = 10. Its highest degree term is (ax)(bx2)(cx3)(dx4)=abcdx10(-ax)(-bx^2)(-cx^3)(-dx^4) = abcd\, x^{10}, so the leading coefficient is abcdabcdabcd.Δ10[]=abcd10!\Delta^{10}[\dots] = abcd \cdot 10!

No expansion, no table. Recognize degree, catch the leading coefficient, apply an!hna \cdot n! \cdot h^n.

PYQ 3 (conversion pattern): Find Δf(x)\Delta f(x) for f(x)=x2+3x+2f(x) = x^2 + 3x + 2, h=1h = 1, using factorial form.

Solution:Since x(2)=x2xx^{(2)} = x^2 – x, we get x2=x(2)+x(1)x^2 = x^{(2)} + x^{(1)}. So f(x)=x(2)+4x(1)+2f(x) = x^{(2)} + 4x^{(1)} + 2. Differentiate discretely: Δf(x)=2x(1)+4=2x+4\Delta f(x) = 2x^{(1)} + 4 = 2x + 4. This matches the direct computation from Part 1.

Common Traps to Avoid

Trap 1: Forgetting hhh. The rule is an!hna \cdot n! \cdot h^n. When h=2h = 2, the fourth difference of x4x^4 is 4!24=3844! \cdot 2^4 = 384, not 24.

Trap 2: Applying the exactness rule to non polynomial functions like exe^x or sinx\sin x. It is a polynomial only rule.

Trap 3: Changing the leading coefficient during factorial conversion. It never changes; only lower order coefficients do.

Frequently Asked Questions

  1. What is a factorial polynomial?

    It is the product x(n)=x(xh)(x2h)[x(n1)h]x^{(n)} = x(x-h)(x-2h)\cdots[x-(n-1)h] of nn factors decreasing by the interval hh. For h=1h = 1 it becomes x(x1)(x2)(xn+1)x(x-1)(x-2)\cdots(x-n+1).

  2. Why use factorial notation in Numerical Analysis?

    Because Δ\Delta acts on factorial polynomials exactly like ddx\dfrac{d}{dx} acts on ordinary powers, so discrete differentiation becomes a one line operation.

  3. What is the nth difference of a degree n polynomial?

    It is the constant an!hna \cdot n! \cdot h^n, where aa is the leading coefficient and hh is the interval of differencing.

  4. What happens at the (n+1)th difference?

    It is exactly zero, since the nnth difference is already a constant and the difference of a constant is zero.

  5. Do negative factorial powers exist?

    Yes. Reciprocal factorials are defined as x(n)=1(x+h)(x+2h)(x+nh)x^{(-n)} = \dfrac{1}{(x+h)(x+2h)\cdots(x+nh)}​, and Δ1\Delta^{-1} on factorials behaves like integration.

Take the Next Step with StatChakravyuh

Join the Free UPSC ISS WhatsApp Community. All parts of this series plus the free Module 1 Practice PDF with 50 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 5: Differences of Zero, Δn0m\Delta^n 0^m, and Stirling Numbers, the guaranteed 15 second marks of every ISS paper.

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