What's Next?

Congratulations

You have completed all 15 lessons. You can now implement the core algorithms of Calculus 1 in C — from numerical limits and derivatives through Riemann sums, Simpson's rule, and volumes of revolution.

What to Explore Next

  • Calculus 2 -- Integration techniques (by parts, trig substitution, partial fractions), sequences and series, Taylor series, polar coordinates
  • Multivariable Calculus -- Partial derivatives, gradient, divergence, curl, multiple integrals, Stokes' theorem
  • Numerical Analysis -- Adaptive step-size methods, Gaussian quadrature, spline interpolation — the professional tools built on these foundations
  • Differential Equations -- Everything here feeds directly into ODEs and PDEs

Key Formulas to Remember

ConceptFormula
Central differencef'(x) ≈ (f(x+h) - f(x-h)) / (2h)
Second derivativef''(x) ≈ (f(x+h) - 2f(x) + f(x-h)) / h²
Newton's methodxₙ₊₁ = xₙ - f(xₙ)/f'(xₙ)
Trapezoidal ruleh/2·[f(x₀) + 2f(x₁) + ... + 2f(xₙ₋₁) + f(xₙ)]
Simpson's ruleh/3·[f(x₀) + 4f(x₁) + 2f(x₂) + ... + 4f(xₙ₋₁) + f(xₙ)]
Volume of revolutionπ ∫_a^b f(x)² dx

References

← Previous