Taylor Series | Engineering Mathematics - Engineering Mathematics PDF Download

Taylor series is the representation of a function as an infinite sum of terms, each term being a constant multiplied by a power of (x - a). Each successive term has a higher power (exponent) than the previous term. The Taylor series expansion is centred at a point a. When the centre a = 0, the series is called the Maclaurin series.

Taylor Series

Taylor's Series Theorem

The Taylor series of a function f(x) that is infinitely differentiable at a point a is the power series

Taylor`s Series Theorem

In sigma notation this is written as

Taylor`s Series Theorem

Here f(n)(a) denotes the nth derivative of f evaluated at x = a, and n! is the factorial of n. This representation gives a polynomial approximation of increasing degree; under suitable conditions the infinite sum converges to the value f(x).

Explanation of terms and convergence

Coefficients: The coefficient of (x - a)n is f(n)(a)/n!. Convergence: The radius of convergence of the Taylor series depends on the nearest singularity of f in the complex plane; inside that radius the series converges absolutely. If the series converges to f(x) for all x in some interval containing a, f is called analytic at a.

Remainder (Error) term

To measure the difference between f(x) and the n-th degree Taylor polynomial T_n(x), define the remainder R_n(x) by

f(x) = Tn(x) + Rn(x).

One common form of the remainder (Lagrange form) is

Rn(x) = f(n+1)(ξ)/(n+1)! · (x - a)n+1 for some ξ between a and x.

This form is useful to bound the error when the (n+1)th derivative is known or can be bounded on the interval between a and x.

Proof (derivation of coefficients)

Begin by assuming f can be expanded as a power series about x = 0 (Maclaurin form):

Proof (derivation of coefficients)

Differentiate term-by-term.

Evaluate the series and its derivatives at x = 0 to obtain the coefficients.

For example, f(0) = a0. f′(0) = a1. f″(0) = 2 a2 ⇒ a2 = f″(0)/2!. By induction, an = f(n)(0)/n!.

Substituting these coefficients into the power series gives the Maclaurin series:

Proof (derivation of coefficients)

To generalise about a point a, replace x by (x - a) and proceed similarly. Write

f(x) = b + b1(x - a) + b2(x - a)2 + b3(x - a)3 + ...

Evaluating derivatives at x = a gives bn = f(n)(a)/n!. Substituting yields the Taylor series about a:

Proof (derivation of coefficients)

Taylor series of sin x (Maclaurin at x = 0)

Derivatives cycle every four steps:

f(x) = sin x

f′(x) = cos x

f″(x) = - sin x

f‴(x) = - cos x

f⁽⁴⁾(x) = sin x, and so on.

Evaluating at x = 0 and substituting into the Maclaurin formula gives only odd powers of x with alternating signs:

Taylor series of sin x (Maclaurin at x = 0)

The Maclaurin series for sin x converges for all real x (radius of convergence ∞).

Taylor series in several variables

Functions of several variables also admit Taylor expansions when sufficiently differentiable. For a function f(x, y) expanded about (a, b), the second-order form is

Taylor series in several variables

The full multivariable expansion contains mixed partial derivatives and terms of higher total degree. Multivariate Taylor polynomials are widely used in optimisation, numerical methods, and approximations in engineering problems.

Maclaurin series (special case a = 0)

If the Taylor series is centred at 0 (a = 0) it is called the Maclaurin series. The general Maclaurin form is

Maclaurin series (special case a = 0)

Example: For |x| < />

1/(1 - x) = 1 + x + x2 + x3 + x4 + ...

This geometric series converges for |x| < 1. many standard maclaurin expansions x, sin x, cos x, ln(1 + x) for |x| < 1, (1 +α by binomial series) are used as building blocks in analysis and approximation.

Applications of Taylor series

  • Taylor series reconstruct a function from its derivatives at a single point, giving an analytical local representation.
  • Taylor expansions simplify many mathematical proofs by replacing functions with polynomials.
  • Partial sums (Taylor polynomials) provide polynomial approximations useful in numerical computation and engineering design.
  • Multivariate Taylor series are fundamental in optimisation methods (e.g. Newton's method, quadratic approximations).
  • Taylor series appear in electrical engineering applications such as linearisation around operating points and in power-flow analysis of electrical power systems.

Problems and Solutions

Question 1: Determine the Taylor series at x=0 for f(x) = ex

Soln:

Write the function: f(x) = ex.

Differentiate repeatedly: f′(x) = ex; f″(x) = ex; f‴(x) = ex; and so on.

Evaluate derivatives at x = 0: f(0) = 1; f′(0) = 1; f″(0) = 1; f‴(0) = 1; ...

Substitute into the Maclaurin formula f(x) = Σ f(n)(0)/n! · xn to get the series.

Problems and Solutions

Therefore,

ex = 1 + x + x2/2! + x3/3! + ..., for all real x.

Question 2: EValuate the Taylor Series for f ( x ) = cos ( x ) for x = 0.

Soln:

Compute derivatives and evaluate at 0:

f(x) = cos x ⇒ f(0) = 1

f′(x) = - sin x ⇒ f′(0) = 0

f″(x) = - cos x ⇒ f″(0) = -1

f‴(x) = sin x ⇒ f‴(0) = 0

f⁽⁴⁾(x) = cos x ⇒ f⁽⁴⁾(0) = 1

The derivatives repeat every four steps.

Substitute into the Maclaurin series formula.

Problems and Solutions
Problems and Solutions

Hence the Maclaurin series is

cos x = 1 - x2/2! + x4/4! - x6/6! + ..., valid for all real x.

Question 3: Evaluate the Taylor Series for f (x) = x3 - 10x2 + 6 at x = 3.

Soln:

Compute the function value and derivatives at x = 3.

f(x) = x3 - 10x2 + 6 ⇒ f(3) = 27 - 90 + 6 = -57

f′(x) = 3x2 - 20x ⇒ f′(3) = 27 - 60 = -33

f″(x) = 6x - 20 ⇒ f″(3) = 18 - 20 = -2

f‴(x) = 6 ⇒ f‴(3) = 6

Higher derivatives are zero: f⁽⁴⁾(x) = 0 and beyond.

Form the Taylor series about a = 3 using T_n(x) = Σ f(n)(3)/n! · (x - 3)n.

Problems and Solutions

Thus the series ends at the third derivative (polynomial):

f(x) = f(3) + f′(3)(x - 3) + f″(3)/2!(x - 3)2 + f‴(3)/3!(x - 3)3.

Notes and useful remarks

  • If f is a polynomial of degree m then the Taylor series about any point a terminates after degree m and equals f(x) for all x.
  • Even functions have series with only even powers; odd functions only odd powers.
  • Checking the remainder term is essential when using a finite Taylor polynomial to approximate f(x); bound the remainder using a suitable estimate of the (n+1)th derivative.
  • Taylor expansions are widely used in engineering for linearisation about an operating point, error estimation, numerical integration, and solving differential equations approximately.
The document Taylor Series | Engineering Mathematics - Engineering Mathematics is a part of the Engineering Mathematics Course Engineering Mathematics.
All you need of Engineering Mathematics at this link: Engineering Mathematics
71 videos|135 docs|94 tests

FAQs on Taylor Series - Engineering Mathematics - Engineering Mathematics

1. What is Taylor's Series Theorem?
Ans. Taylor's Series Theorem states that a function can be expressed as an infinite sum of terms calculated from the values of its derivatives at a single point. Specifically, if a function is infinitely differentiable at a point 'a', its Taylor series at that point is given by the formula: f(x) = f(a) + f'(a)(x-a) + f''(a)(x-a)²/2! + f'''(a)(x-a)³/3! + ...
2. How is the Maclaurin series a special case of Taylor's series?
Ans. The Maclaurin series is a specific instance of Taylor's series where the expansion is performed around the point a = 0. Thus, the Maclaurin series for a function f(x) is given by f(x) = f(0) + f'(0)x + f''(0)x²/2! + f'''(0)x³/3! + ..., which simplifies the process of finding the series by evaluating derivatives at zero.
3. Can you derive the Taylor series for sin x?
Ans. To derive the Taylor series for sin x, we calculate its derivatives at x = 0. The derivatives are: sin(0) = 0, cos(0) = 1, -sin(0) = 0, and -cos(0) = -1. Thus, the Taylor series expansion around x = 0 (Maclaurin series) is given by: sin x = 0 + 1·x - 0·x²/2! - 1·x³/3! + 0·x⁴/4! + 1·x⁵/5! + ... = x - x³/3! + x⁵/5! - ... = Σ((-1)ⁿ/(2n+1)!)x²ⁿ⁺¹ for n = 0 to ∞.
4. What are some applications of Taylor series?
Ans. Taylor series are widely used in various fields such as physics, engineering, and economics. They allow for the approximation of complex functions using polynomials, making calculations easier. For instance, they are employed in numerical methods for solving differential equations, in optimisation problems, and in the analysis of algorithms where function behaviour needs to be approximated.
5. How do you compute Taylor series in several variables?
Ans. To compute the Taylor series in several variables, one typically uses partial derivatives. For a function f(x₁, x₂, ..., xₖ) around a point (a₁, a₂, ..., aₖ), the Taylor series is given by f(x₁, x₂, ..., xₖ) = Σ (1/n!) Σ (∂ⁿf/∂x₁ⁿ₁∂x₂ⁿ₂...∂xₖⁿₖ)(x₁-a₁)ⁿ₁(x₂-a₂)ⁿ₂...(xₖ-aₖ)ⁿₖ, where the sums are over all non-negative integers n₁, n₂, ..., nₖ such that n₁ + n₂ + ... + nₖ = n. This allows for the representation of multivariable functions as power series around a point.
Related Searches
MCQs, mock tests for examination, practice quizzes, Sample Paper, video lectures, Important questions, Semester Notes, Taylor Series | Engineering Mathematics - Engineering Mathematics , ppt, Exam, Extra Questions, Taylor Series | Engineering Mathematics - Engineering Mathematics , shortcuts and tricks, Free, Objective type Questions, past year papers, Summary, Viva Questions, Previous Year Questions with Solutions, study material, pdf , Taylor Series | Engineering Mathematics - Engineering Mathematics ;