Numerical Differentiation Flashcards
(7 cards)
What is the formula for Forward’s difference approximation formula?
f’(c) = f(c + h) -f(c) / h
As ‘h’ tends to 0
What is the formula for Central Difference Approximation Formula?
f’(c) = f(c + h) - f(c - h) / 2h
As ‘h’ tends to 0
What are the two ways of numerical integration approximation?
Forward Difference Approximation
Central Difference Approximation
What is the relationship between value of ‘h’ and approximation?
A smaller value of ‘h’ gives a better approximation
Which approximation is better?
For most polynomials, central difference is better than forward
How do inaccuracies arise from the approximation?
Inaccuracies can result from the level of a computer’s precision which leads to loss of significant figures in calculation
What is the formula for the error between ‘X’ and ‘x’?
If(X) - f(x)I = I(X - x)I * f’(x)
X is the exact value
x is the approximation