Introduction
Interpolation का मुख्य उद्देश्य दिए गए data points के बीच किसी unknown value का approximation निकालना होता है।
इसके लिए हम एक polynomial बनाते हैं जो known data points को satisfy करे।
लेकिन practical situation में interpolated value हमेशा exact नहीं होती।
Known values से polynomial बनाकर जो estimated value निकाली जाती है, और actual value के बीच जो अंतर आता है, उसी को error in polynomial interpolation कहा जाता है।
दूसरे शब्दों में, interpolation हमें exact value नहीं, बल्कि उसका approximation देता है।
यह approximation जितना actual value के करीब होगा, interpolation उतनी अच्छी मानी जाएगी।
Polynomial Interpolation का Basic Idea
मान लें कि किसी function के कुछ values दिए गए हैं:
जहाँ
अब इन points के आधार पर एक polynomial बनाया जाता है ताकि:
यह polynomial दिए गए सभी points से होकर गुजरता है।
अब किसी बीच के point पर को interpolate value माना जाता है।
लेकिन generally,
इसलिए error उत्पन्न होता है।
Definition of Interpolation Error
यदि actual function है और interpolating polynomial है, तो interpolation error होगा:
यह formula बताता है कि actual value और interpolated value के बीच का अंतर ही error है।
General Formula for Error
यदि sufficiently differentiable है, तो interpolation error का general form होता है:
जहाँ ξ interval के अंदर कोई एक value है।
Explanation of the Formula
अब इस formula को ध्यान से समझो, क्योंकि यही इस topic का सबसे important mathematical part है।
इसमें:
- function का th derivative है
- factorial term है
- interpolation nodes का product है
इसका अर्थ यह है कि error तीन चीजों पर depend करता है:
- Function की smoothness पर
- Polynomial की degree पर
- जिस point पर value चाहिए, उस point की data points से दूरी पर
Important Observation
यदि function स्वयं degree का polynomial है, तो होगा।
इस स्थिति में:
अर्थात interpolation exact होगा।
यह बहुत important result है।
Example 1
मान लें:
और points लिए गए हैं:
अब यदि हम degree 2 polynomial interpolation करें, तो exactly ही होगा।
इसलिए:
Explanation
क्योंकि original function पहले से ही degree 2 का polynomial है, इसलिए degree 2 का interpolation polynomial उसे exactly represent करेगा।
इस case में कोई interpolation error नहीं होगा।
Example 2
मान लें:
और हमने linear interpolation (degree 1) का उपयोग किया।
अब polynomial नहीं है, इसलिए interpolation value exact नहीं होगी।
यदि interpolating polynomial है, तो error होगा:
और theory के अनुसार:
क्योंकि
इसलिए:
Explanation
यहाँ error zero नहीं है क्योंकि polynomial function नहीं है।
इसलिए interpolation केवल approximation देगा।
Factors Affecting Interpolation Error
Interpolation error कई factors पर depend करता है:
1. Degree of Polynomial
यदि polynomial degree बढ़ाई जाए, तो कई बार approximation improve होता है।
लेकिन बहुत high degree होने पर oscillation भी आ सकती है।
2. Nature of Function
यदि function smooth है, तो interpolation better होता है।
यदि function rapidly change करता है, तो error बढ़ सकता है।
3. Choice of Data Points
यदि data points उचित रूप से चुने जाएँ, तो error कम होता है।
बहुत दूर-दूर points होने पर error बढ़ सकता है।
4. Position of Required Value
यदि required data points के बीच center के पास है, तो error कम होता है।
Boundary के पास error अधिक हो सकता है।
Graphical Meaning of Error

Graphically, interpolation error वह vertical distance है जो actual curve और interpolation polynomial के बीच किसी point पर होती है।
यदि दोनों curves लगभग एक-दूसरे के पास हैं, तो error छोटा होगा।
यदि दोनों के बीच gap ज्यादा है, तो error बड़ा होगा।
Graphical Representation of Interpolation Error
Explanation
Graph में दो curves होते हैं:
- → actual function
- → interpolation polynomial
अब किसी point पर:
यह error graph में दोनों curves के बीच का vertical distance होता है।
Table Representation
मान लो:
और हम linear interpolation use कर रहे हैं।
Data Table
| x | Actual Value | Interpolated Value | Error |
|---|---|---|---|
| 1.0 | 2.718 | 2.700 | 0.018 |
| 1.2 | 3.320 | 3.280 | 0.040 |
| 1.5 | 4.481 | 4.400 | 0.081 |
Explanation
- Actual Value → real function से
- Interpolated Value → polynomial से
- Error → difference
Important समझो:
- अगर curves पास-पास हैं → error छोटा
- अगर curves दूर हैं → error बड़ा
Practical Importance
Errors in polynomial interpolation को समझना बहुत जरूरी है क्योंकि:
- इससे approximation की reliability पता चलती है
- data analysis में estimated values की accuracy पता चलती है
- computer applications में interpolation method choose करने में help मिलती है
- engineering calculations में correct method selection possible होता है
Final Understanding
Interpolation polynomial द्वारा निकाली गई value हमेशा exact नहीं होती
Actual value और interpolated value के बीच का अंतर interpolation error कहलाता है
इसका general formula higher derivative पर आधारित होता है
यदि original function polynomial of degree n हो, तो degree n interpolation exact होता है
Error function की nature, degree और data points की choice पर depend करता है