Concept Flow - Numerical differentiation
Start with function f(x)
Choose point x0 and step h
Calculate f(x0 + h) and f(x0 - h)
Apply formula: (f(x0 + h) - f(x0 - h)) / (2*h)
Result: Approximate derivative at x0
End
Numerical differentiation approximates the slope of a function at a point by using values of the function near that point.