Introduction
Lagrange Interpolation Formula एक बहुत important method है जिसका उपयोग unequally spaced data points के लिए किया जाता है।
इस method में हम सीधे एक polynomial बनाते हैं जो दिए गए सभी data points को satisfy करता है।
👉 यह method बहुत powerful है क्योंकि इसमें difference table की जरूरत नहीं होती।
Basic Idea
मान लें हमें कुछ data points दिए गए हैं:
तो हम एक polynomial बनाते हैं ऐसा कि:
Lagrange Formula
जहाँ,
Simplified Form (3 points के लिए)
यदि 3 points दिए हों:
तो:
Example
Given data:
| x | y |
|---|---|
| 1 | 1 |
| 2 | 4 |
| 4 | 16 |
Find value at
Step 1: Apply Formula
Step 2: Simplify
First term:
Second term:
Third term:
Step 3: Final Answer
Graphical Understanding
Graph में:
- सभी given data points plotted होते हैं
- एक smooth polynomial curve उन सभी points को pass करता है
- required value उसी curve से ली जाती है
Advantages
- Unequal spacing के लिए best method
- Difference table की जरूरत नहीं
- Direct formula है
Limitations
- Calculation लंबा हो सकता है
- Large data set के लिए complex हो जाता है
- हर new value के लिए पूरा formula फिर से apply करना पड़ता है
Important Observation
- Polynomial हमेशा दिए गए points को exactly pass करता है
- Error केवल approximation point पर आता है
- Degree = number of points – 1
Final Understanding
Lagrange method unequal data के लिए सबसे important interpolation method है
यह direct polynomial बनाता है
Difference table की जरूरत नहीं होती
Exam में long numerical के रूप में बहुत पूछा जाता है