M2L3 Integration

Integration Review

  • Integration by Parts

    • Utilizes the product of two functions: one for differentiation and one for integration.

    • Selection of functions is crucial: choose u and dv such that one is easily integrable.

    • Can simplify complex integrals when used iteratively.

    • Example: Evaluating the integral (\int f(x) g(x) ,dx).

      • Select (u = f(x)) and (dv = g(x) ,dx) resulting in (du) and (v).

      • The integral may be expressed as: [ \int f(x) g(x) ,dx = u v - \int v ,du ]

Taylor and Maclaurin Series

  • Definitions:

    • A Taylor Series approximates functions using polynomials based on the function's derivatives.

    • A Maclaurin Series is a special case of a Taylor series centered around (x=0).

    • Both series can truncate to simplify calculations while providing approximation of the function near the point of expansion.

  • Applications:

    • Useful in approximating functions difficult to differentiate or integrate.

    • Key in fields like physics, engineering, economics for system modeling, error estimation, and differential equations.

  • Example: For the function (e^x) evaluated around x=0, approximate by Maclaurin series:

    • First two terms provide initial approximation around x=0.

    • R code provided to generate the sequence and calculate true vs. approximate values of (e^x):

    x <- seq(-0.2, 0.2, by = 0.05)  
    true_val <- exp(x)  
    approx_val <- 1 + x  
    df <- data.frame(true_val = true_val, approx_val = approx_val, abs_diff = abs(approx_val - true_val), row.names = x)  
    print(df)  

L'Hospital's Rule

  • A method in calculus for evaluating limits of indeterminate forms, particularly forms (0/0) or (\infty/\infty).

  • Application:

    • Take derivatives of the numerator and denominator separately to resolve the limit of a quotient.

    • Useful for functions where limits cannot be resolved by basic substitution.

  • Importance:

    • Widely applicable in various domains of mathematics and real-world scenarios.

    • Helps in engineering (stress calculations), physics (velocity and acceleration), finance (interest rates).