Chapter:

BACKWARD-DIFFERENCE-TABLE-

BACKWARD DIFFERENCE TABLE USING C PROGRAMMING

TITLE: 

TO GENERATE THE BACKWARD DIFFERENCE TABLE USING C PROGRAMMING

OBJECTIVES:

  • To be able to follow the algorithm of Newton's Backward Interpolation method to generate backward difference table.

  • To build some programming concepts by solving practical problems.

 TOOLS REQUIRED:

  • Computer workstation

  • Program software (as necessary)

 THEORY:

While interpolating intermediate value of dependent variable for equi-spaced data of independent variable, at the end of the table, Newton's Backward Interpolation formula is used. 

 ALGORITHM:

  1. Start

  2. Read the number of data n and the datas.

  3. Set i=1

Show More