Skip to content
site-logo
  • Home
  • Blog
  • JavaScript
  • Machine Learning
  • C++Expand
    • C++ Programing
    • Numerical Techniques C++
    • Data Structures C++
    • C++ Programs
  • Typing Guide
site-logo
Home / Numerical Techniques C++ / Maclaurin Series formula | how to find the Maclaurin Series Formula

Maclaurin Series formula | how to find the Maclaurin Series Formula

ByLonz Updated onJuly 20, 2021
Numerical Techniques C++
What is Maclaurin Series formula.
Ad
Table of contents
  1. What is Maclaurin Series
  2. Maclaurin series formula
    1. ex =1 + x + x2/2! + x3/3! + ……
  3. How to find Maclaurin Series Formula
    1. We can find or Derive the Maclaurin series from Taylor series.

What is Maclaurin Series

The Maclaurin series formula is a special case of the Taylor series formula. Or in other words, we can derive the Maclaurin formula from the Taylor series very easily.

Maclaurin series formula helps in writing a function as a series (or sum) of terms involving the derivatives of the function. This formula helps in finding the approximate value of the function.

Ad

Maclaurin series formula

ex =1 + x + x2/2! + x3/3! + ……

What is Maclaurin Series formula.
Maclaurin Series formula

How to find Maclaurin Series Formula

We can find or Derive the Maclaurin series from Taylor series.

Sol. As we Know Taylor series is:

taylor series formula

Let f(x) = ex and f(0)=1 (because we only know value of f at x0=1).

Also f(0) = 1, f’(0) = 1, f’’(0) = 1

Since  (d/dx)ex = ex

Therefore, f’(x) = ex

F’’(x) = ex

F’’’(x) = ex

:

Ad

:

Now, f(0+h) = f(0) + f’(0)h + f’’(0)h2/2! + f’’’(0)h3/3!

F(h) = 1 + h + h2/2 + h3/6 + h4/24 + …

x+h = 0 +h, ( or replace h by x).

f(x) = 1 + x + x2/2 + x3/6 + x4/24 + ….

Or,  This can be simplified as maclaurin series.

ex =1 + x + x2/2! + x3/3! + ……

Suggested:

  • Linear regression

Post navigation

Previous Previous
Taylor series Formula with Solved Examples | What is Taylor Series
Search

  • Taylor series Formula with Solved Examples | What is Taylor Series
  • Fit a Second Order Polynomial to the given data. Curve fitting Polynomial Regression
  • What is Polynomial Regression & how to derive the Polynomial Regression Formula
  • Find the Regression line of y on x. Evaluate the value of y when x = 10?
  • Lagrange Interpolation Formula with Solved Example


  • Home
  • Blog
  • Privacy Policy
  • Disclaimer
  • Sitemap
  • Write for us
  • Contact Us

Copyright © 2023 TechInDetail

Scroll to top
  • Home
  • Blog
  • JavaScript
  • Machine Learning
  • C++
    • C++ Programing
    • Numerical Techniques C++
    • Data Structures C++
    • C++ Programs
  • Typing Guide
Search