Divided Differences and Their Properties

Introduction

जब data unequally spaced होता है, तब finite difference method काम नहीं करता।

ऐसी स्थिति में हम Divided Differences का उपयोग करते हैं, जो interpolation का एक बहुत important concept है और Newton’s General Interpolation Formula का base भी यही है।

Basic Idea

मान लें data points दिए गए हैं:(x0,y0),(x1,y1),(x2,y2),(x_0, y_0), (x_1, y_1), (x_2, y_2), \dots

जहाँ:yi=f(xi)y_i = f(x_i)

अब हम successive differences निकालते हैं, लेकिन यहाँ difference को xx के difference से divide भी किया जाता है

👉 इसी कारण इसे Divided Difference कहा जाता है

First Divided Difference

f[x0,x1]=f(x1)f(x0)x1x0f[x_0, x_1] = \frac{f(x_1) – f(x_0)}{x_1 – x_0}

Second Divided Difference

f[x0,x1,x2]=f[x1,x2]f[x0,x1]x2x0f[x_0, x_1, x_2] = \frac{f[x_1, x_2] – f[x_0, x_1]}{x_2 – x_0}

Third Divided Difference

f[x0,x1,x2,x3]=f[x1,x2,x3]f[x0,x1,x2]x3x0f[x_0, x_1, x_2, x_3] = \frac{f[x_1, x_2, x_3] – f[x_0, x_1, x_2]}{x_3 – x_0}

General Formula

f[x0,x1,,xn]=f[x1,x2,,xn]f[x0,x1,,xn1]xnx0f[x_0, x_1, \dots, x_n] = \frac{f[x_1, x_2, \dots, x_n] – f[x_0, x_1, \dots, x_{n-1}]}{x_n – x_0}

Divided Difference Table

Example data:

xy
11
24
416

Step 1: First Divided Difference

f[1,2]=4121=3f[1,2] = \frac{4-1}{2-1} = 3

f[2,4]=16442=6f[2,4] = \frac{16-4}{4-2} = 6

Step 2: Second Divided Difference

f[1,2,4]=6341=1f[1,2,4] = \frac{6-3}{4-1} = 1

Table Form

xyFirst DiffSecond Diff
1131
246
416

Properties of Divided Differences

1. Symmetry Property

Divided difference symmetric होता है:f[x0,x1]=f[x1,x0]f[x_0, x_1] = f[x_1, x_0]

👉 order change करने पर value नहीं बदलती

2. Polynomial Property

यदि f(x)f(x) degree nn का polynomial है:f[x0,x1,,xn]=constantf[x_0, x_1, \dots, x_n] = \text{constant}

औरf[x0,x1,,xn+1]=0f[x_0, x_1, \dots, x_{n+1}] = 0

3. Relation with Finite Difference

यदि data equally spaced हो, तो:f[x0,x1]=Δy0hf[x_0, x_1] = \frac{\Delta y_0}{h}

👉 यानी divided difference finite difference का generalized form है

4. Linearity Property

यदि:f(x)=ag(x)+bh(x)f(x) = a g(x) + b h(x)

तो:f[x0,x1]=ag[x0,x1]+bh[x0,x1]f[x_0, x_1] = a g[x_0, x_1] + b h[x_0, x_1]

5. Zero Property

यदि सभी yy values same हैं, तो:f[x0,x1,]=0f[x_0, x_1, \dots] = 0

Graphical Understanding

Introduction

जब data unequally spaced होता है, तब finite difference method काम नहीं करता।

ऐसी स्थिति में हम Divided Differences का उपयोग करते हैं, जो interpolation का एक बहुत important concept है और Newton’s General Interpolation Formula का base भी यही है।

Basic Idea

मान लें data points दिए गए हैं:(x0,y0),(x1,y1),(x2,y2),(x_0, y_0), (x_1, y_1), (x_2, y_2), \dots

जहाँ:yi=f(xi)y_i = f(x_i)

अब हम successive differences निकालते हैं, लेकिन यहाँ difference को xxx के difference से divide भी किया जाता है

👉 इसी कारण इसे Divided Difference कहा जाता है

First Divided Difference

f[x0,x1]=f(x1)f(x0)x1x0f[x_0, x_1] = \frac{f(x_1) – f(x_0)}{x_1 – x_0}

Second Divided Difference

f[x0,x1,x2]=f[x1,x2]f[x0,x1]x2x0f[x_0, x_1, x_2] = \frac{f[x_1, x_2] – f[x_0, x_1]}{x_2 – x_0}

Third Divided Difference

f[x0,x1,x2,x3]=f[x1,x2,x3]f[x0,x1,x2]x3x0f[x_0, x_1, x_2, x_3] = \frac{f[x_1, x_2, x_3] – f[x_0, x_1, x_2]}{x_3 – x_0}

General Formula

f[x0,x1,,xn]=f[x1,x2,,xn]f[x0,x1,,xn1]xnx0f[x_0, x_1, \dots, x_n] = \frac{f[x_1, x_2, \dots, x_n] – f[x_0, x_1, \dots, x_{n-1}]}{x_n – x_0}

Divided Difference Table

Example data:

xy
11
24
416

Step 1: First Divided Difference

f[1,2]=4121=3f[1,2] = \frac{4-1}{2-1} = 3

f[2,4]=16442=6f[2,4] = \frac{16-4}{4-2} = 6

Step 2: Second Divided Difference

f[1,2,4]=6341=1f[1,2,4] = \frac{6-3}{4-1} = 1

Table Form

xyFirst DiffSecond Diff
1131
246
416

Properties of Divided Differences

1. Symmetry Property

Divided difference symmetric होता है:f[x0,x1]=f[x1,x0]f[x_0, x_1] = f[x_1, x_0]

👉 order change करने पर value नहीं बदलती

2. Polynomial Property

यदि f(x)f(x) degree nn का polynomial है:f[x0,x1,,xn]=constantf[x_0, x_1, \dots, x_n] = \text{constant}

औरf[x0,x1,,xn+1]=0f[x_0, x_1, \dots, x_{n+1}] = 0

3. Relation with Finite Difference

यदि data equally spaced हो, तो:f[x0,x1]=Δy0hf[x_0, x_1] = \frac{\Delta y_0}{h}

👉 यानी divided difference finite difference का generalized form है

4. Linearity Property

यदि:f(x)=ag(x)+bh(x)f(x) = a g(x) + b h(x)

तो:f[x0,x1]=ag[x0,x1]+bh[x0,x1]f[x_0, x_1] = a g[x_0, x_1] + b h[x_0, x_1]

5. Zero Property

यदि सभी yy values same हैं, तो:f[x0,x1,]=0f[x_0, x_1, \dots] = 0

Graphical Understanding

Graph में:

  • points uneven spacing में होते हैं
  • दो points के बीच slope निकाला जाता है
  • यही divided difference होता है

Importance

  • Unequal spacing के लिए essential
  • Newton’s General Formula का base
  • Lagrange method से related
  • Numerical methods में बहुत important

Final Understanding

Divided difference unequal spacing data के लिए difference का generalized form है
यह slope-based concept है
यह Newton interpolation का foundation है
यह exam में long numerical और theory दोनों में पूछा जाता है

Leave a Comment

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

Scroll to Top