Detection of Errors using Difference Tables

Introduction

Interpolation में दिए गए data values हमेशा correct हों, यह जरूरी नहीं है।
कई बार data में typing mistake, calculation error या measurement error हो सकता है।

इन errors को detect करने के लिए हम difference tables (finite differences) का उपयोग करते हैं।

Basic Idea

यदि data सही है और किसी polynomial function को follow करता है, तो:

  • First difference regular pattern follow करेगा
  • Second difference constant हो सकता है
  • Third difference भी constant हो सकता है (depending on degree)

लेकिन अगर किसी value में error है, तो:

  • difference table में irregularity आ जाएगी
  • differences अचानक change होंगे

Important Concept

यदि data degree nnn polynomial से आता है, तो:

  • nthn^{th}nth order difference constant होगा
  • higher order differences zero होंगे

यदि यह pattern टूट जाए → error मौजूद है

Example

मान लें data दिया गया है:

xy
11
24
39
415

Difference Table

xyΔyΔ²y
1132
2451
396
415

Analysis

अब ध्यान से देखो:

  • First differences: 3, 5, 6 → regular pattern नहीं है
  • Second differences: 2, 1 → constant नहीं है

इसका मतलब data में error है

Correct Data Check

अगर सही value होती:

xy
11
24
39
416

तो:

xyΔyΔ²y
1132
2452
397
416

अब:

  • Second difference constant है = 2
    Data correct है

Method to Detect Error

Step-by-step तरीका:

Step 1: Difference table बनाओ
Step 2: Pattern check करो
Step 3: Constant difference identify करो
Step 4: जहाँ irregularity आए → वही error point है

Graphical Understanding

Graph में:

  • Correct data smooth curve follow करता है
  • Error वाला point curve से बाहर दिखता है

वही error point होता है

Important Observations

  • Difference table में irregular jump → error
  • Constant difference टूटना → error
  • Higher order difference unstable → error

Practical Importance

  • Data validation में use होता है
  • गलत values detect करने में मदद करता है
  • interpolation accuracy improve करता है
  • computer applications में बहुत useful है

Final Understanding

Difference tables data consistency check करने का powerful tool है
Polynomial data में differences regular होते हैं
Irregular differences error को indicate करते हैं
यह method simple और exam में बहुत important है

Leave a Comment

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

Scroll to Top