Differences of a Polynomial

Introduction

Finite Differences का एक बहुत important उपयोग polynomial की degree को पहचानने में होता है।
जब किसी function के values equally spaced arguments पर दिए जाते हैं, तब उसके successive differences एक विशेष pattern follow करते हैं।

यदि given function polynomial है, तो एक निश्चित order पर differences constant हो जाते हैं।
इसी property को Differences of a Polynomial कहा जाता है।

Basic Concept

मान लें एक polynomial है:P(x)=a0+a1x+a2x2+a3x3++anxnP(x) = a_0 + a_1x + a_2x^2 + a_3x^3 + \dots + a_nx^n

जहाँ degree nn है।

यदि xx के values equal interval hh पर लिए जाएँ, तो:

  • First difference lower degree का polynomial देगा
  • Second difference उससे lower degree का polynomial देगा
  • इस प्रकार nthn^{th} difference constant हो जाएगा
  • और (n+1)th(n+1)^{th} difference zero हो जाएगा

Main Theorem

यदि P(x)P(x) degree nn का polynomial है, तो:ΔnP(x)=constant\Delta^n P(x) = \text{constant}

औरΔn+1P(x)=0\Delta^{n+1} P(x) = 0

यह result interpolation और difference tables में बहुत महत्वपूर्ण है।

Case 1: Linear Polynomial

मान लें:P(x)=2x+1P(x) = 2x + 1

अब x=1,2,3,4x = 1,2,3,4 पर values निकालते हैं:

xP(x)
13
25
37
49

अब first difference:Δy=53=2\Delta y = 5-3 = 2

Δy=75=2\Delta y = 7-5 = 2

Δy=97=2\Delta y = 9-7 = 2

Difference Table

xyΔy
132
252
372
49

Observation

First difference constant है।
इसलिए polynomial की degree 1 है।

Case 2: Quadratic Polynomial

मान लें:P(x)=x2P(x) = x^2

अब x=1,2,3,4x = 1,2,3,4 पर values:

xP(x)
11
24
39
416

First differences:41=3,94=5,169=74-1 = 3,\quad 9-4 = 5,\quad 16-9 = 7

Second differences:53=2,75=25-3 = 2,\quad 7-5 = 2

Difference Table

xyΔyΔ²y
1132
2452
397
416

Observation

Second difference constant है।
इसलिए polynomial की degree 2 है।

Case 3: Cubic Polynomial

मान लें:P(x)=x3P(x) = x^3

अब x=1,2,3,4,5x = 1,2,3,4,5 पर values:

xP(x)
11
28
327
464
5125

First differences:7, 19, 37, 617,\ 19,\ 37,\ 61

Second differences:12, 18, 2412,\ 18,\ 24

Third differences:6, 66,\ 6

Difference Table

xyΔyΔ²yΔ³y
117126
2819186
3273724
46461
5125

Observation

Third difference constant है।
इसलिए polynomial की degree 3 है।

General Result

यदि polynomial degree nn का है, तो:

  • 1st1^{st} difference → degree n1n-1
  • 2nd2^{nd} difference → degree n2n-2
  • 3rd3^{rd} difference → degree n3n-3

और इसी तरह:

  • nthn^{th} difference → constant
  • (n+1)th(n+1)^{th} difference → zero

Why This Happens

हर difference operation polynomial की degree को 1 कम कर देता है।

जैसे differentiation में degree एक कम होती है, वैसे ही finite difference में भी polynomial का order घटता है।
इसलिए repeatedly differences लेने पर अंत में constant term बचती है।

Importance in Numerical Methods

Differences of a Polynomial का concept इसलिए important है क्योंकि:

  • polynomial की degree identify करने में help करता है
  • difference tables को समझने में मदद करता है
  • interpolation formulas की basis यही है
  • incorrect data detect करने में use होता है

Final Understanding

यदि equally spaced data किसी polynomial से आता है, तो successive differences एक regular pattern follow करते हैं
Degree nn polynomial का nthn^{th} difference constant होता है
और (n+1)th(n+1)^{th} difference zero होता है
यह property interpolation और numerical analysis की foundation है

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top