Newton’s Backward Difference Interpolation
At a Glance
- Frequency: 1 sub-part across 1 of 13 years (2021)
- Priority tier: T4
- Marks (count): 15 (1)
- Average solve time: ~25 min
- Difficulty mix: medium 1
- Section: B | Dominant type: derivation
Why This Chapter Matters
Newton’s backward interpolation formula is the natural companion to the forward formula: use backward differences when the interpolation point lies near the end of the data table. UPSC 2021 tested it as a Section B derivation-and-compute: construct the backward difference table and then apply the formula. Showing the difference table in full is essential for both the derivation marks and the computation marks.
Minimum Theory
Setup. Given equally-spaced data points
and corresponding values .
Backward difference operator .
Each column of the backward difference table is formed by subtracting the entry above-left from the current entry.
Newton’s backward interpolation formula.
Let (note: when ).
In compact form:
where the term is (empty product equals 1).
When to use backward vs. forward.
| Condition | Formula to use |
|---|---|
| near (start of table) | Newton’s forward |
| near (end of table) | Newton’s backward |
Derivation sketch. The formula follows from writing the interpolating polynomial through in Newton’s divided-difference form, then specialising to equal spacing. The backward differences replace the divided differences.
Truncation error. The error of the -th degree interpolant at is
for some in the range of the data.
Question Archetypes
| Archetype | Recognition |
|---|---|
| table-and-interpolate | Construct the backward difference table; interpolate a given value |
| derive-formula | Derive Newton’s backward interpolation formula from first principles |
table-and-interpolate (1 question; 2021)
Recognition Cues
- A table of equally-spaced and values is provided.
- “Use Newton’s backward interpolation formula to find at .”
- The target is near the last entry of the table.
Solution Template
- Write out the data table and identify and .
- Construct the full backward difference table column by column.
- Read off from the last row (the row for ).
- Compute .
- Substitute into the formula; compute each term and sum.
- State the interpolated value.
Worked Example
2021 Paper 2, 2021-P2-Q3b (15 marks)
The following table gives values of a function :
1.0 1.2 1.4 1.6 1.8 2.7183 3.3201 4.0552 4.9530 6.0496 Using Newton’s backward interpolation formula, estimate .
Step 1 — identify parameters.
, , .
Step 2 — backward difference table.
Construct column by column; each entry = current minus the entry one row up in the previous column.
| 1.0 | 2.7183 | ||||
| 1.2 | 3.3201 | 0.6018 | |||
| 1.4 | 4.0552 | 0.7351 | 0.1333 | ||
| 1.6 | 4.9530 | 0.8978 | 0.1627 | 0.0294 | |
| 1.8 | 6.0496 | 1.0966 | 0.1988 | 0.0361 | 0.0067 |
Values used from the last row (bottom of each column):
Step 3 — compute .
Step 4 — apply the formula.
Term 0:
Term 1:
Term 2:
Term 3:
Term 4:
Step 5 — sum.
(The true value confirms the result.)
Common Traps
- Using (that is the forward formula’s ). For backward interpolation, , which is negative when .
- Forming the difference table by subtracting in the wrong direction: each backward difference is “current minus previous” (), not the other way.
- Reading the wrong diagonal: all values used in the formula come from the last row of the backward difference table, not from the first row or the main diagonal.
- Dropping the pattern in the numerators — the terms are , , , …; each new factor adds to the last factor, not .
Marks-Aware Writing
At 15 marks in Section B, the backward difference table alone is worth 5–6 marks. Write it as a clear array with column headers , , etc. Then devote a line to computing , and write out each term of the formula separately before summing — this is the cleanest way to show work and collect all method marks. A bare final answer will lose most marks even if numerically correct.
Practice Set
Only one historical question on this atom (shown above).