Introduction
Interpolation में हम discrete data points के साथ काम करते हैं।
इन points के बीच relation समझने के लिए हम finite differences का उपयोग करते हैं।
Finite Differences का उपयोग data के pattern को समझने, interpolation formulas बनाने और error detect करने में किया जाता है।
Basic Idea
मान लें हमारे पास data है:
| x | y |
|---|---|
| x₀ | y₀ |
| x₁ | y₁ |
| x₂ | y₂ |
| x₃ | y₃ |
जहाँ
और values equally spaced हैं:
1. Forward Difference
Definition
Forward difference उस difference को कहते हैं जो आगे वाले value से लिया जाता है।
Higher Order Forward Difference
Second order:
Third order:
Example
| x | y |
|---|---|
| 1 | 1 |
| 2 | 4 |
| 3 | 9 |
| 4 | 16 |
Forward differences:
First difference:
Second difference:
Forward Difference Table
| x | y | Δy | Δ²y |
|---|---|---|---|
| 1 | 1 | 3 | 2 |
| 2 | 4 | 5 | 2 |
| 3 | 9 | 7 | |
| 4 | 16 |
2. Backward Difference
Definition
Backward difference उस difference को कहते हैं जो पीछे वाले value से लिया जाता है।
Higher Order Backward Difference
Example
Same data use करें:
| x | y |
|---|---|
| 1 | 1 |
| 2 | 4 |
| 3 | 9 |
| 4 | 16 |
Backward differences:
Second difference:
Backward Difference Table
| x | y | ∇y | ∇²y |
|---|---|---|---|
| 1 | 1 | ||
| 2 | 4 | 3 | |
| 3 | 9 | 5 | 2 |
| 4 | 16 | 7 | 2 |
3. Central Difference
Definition
Central difference में हम values को center से compare करते हैं।
Example
Same data:
Explanation
Central difference middle points के लिए use होता है और यह forward/backward से ज्यादा accurate होता है।
Graph :

- discrete data points होते हैं
- differences points के बीच vertical gaps दिखाते हैं
- forward → आगे
- backward → पीछे
- central → दोनों तरफ
Important Observations
- यदि second difference constant हो → polynomial degree 2
- यदि third difference constant हो → polynomial degree 3
- finite differences polynomial की nature पहचानने में मदद करते हैं
Final Understanding
Finite Differences discrete data के differences को represent करते हैं
Forward difference आगे की values use करता है
Backward difference पीछे की values use करता है
Central difference middle-based comparison करता है
यह interpolation formulas का base है