Question about Taylor series and big Oh notation

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 8K views
AxiomOfChoice
Messages
531
Reaction score
1
Question about Taylor series and "big Oh" notation

Can someone please explain WHY it's true that

[tex] e^x = 1 + x + \frac{x^2}{2} + \mathcal{O}(x^3)[/tex]

I'm somewhat familiar with "big Oh" notation and what it stands for, but I'm not quite sure why the above statement is true (or statements like it). Thanks!
 
Physics news on Phys.org


I know big O notation goes beyond what it's used for here but in this case, it means the remaining terms in the taylor expansion of that exponential are of the order x^3 and higher.
 


Pengwuino said:
I know big O notation goes beyond what it's used for here but in this case, it means the remaining terms in the taylor expansion of that exponential are of the order x^3 and higher.
Given what "big Oh" notation usually means, I think that, more precisely, it means that the absolute value of the difference between [itex]e^x[/itex] and the first few terms of the Taylor series is bounded by some constant times [itex]|x^3|[/itex] for [itex]x[/itex] sufficiently close to zero.

I, too, used to think that [itex]\mathcal{O}(x^3)[/itex] was just a stand-in for the sentence "terms of order [itex]x^3[/itex] and higher." But that's not all it says, apparently.
 


Yah it says something more but I first learned it in our computer science courses which were simply god awful (god awful department as well) so we never knew what it meant beyond "of order and higher".
 


AxiomOfChoice said:
Can someone please explain WHY it's true that

[tex] e^x = 1 + x + \frac{x^2}{2} + \mathcal{O}(x^3)[/tex]

I'm somewhat familiar with "big Oh" notation and what it stands for, but I'm not quite sure why the above statement is true (or statements like it). Thanks!

This is only true if x<1. It means that e^x is 1+x+x/2 plus a function that is bounded above by a Kx^3 for some K, for sufficiently small x.

If x>1, you'd have to write [tex] e^x = 1 + x + \frac{x^2}{2} + \Omega(x^3)[/tex]

Which means the same except a function bounded BELOW by Kx^3, for sufficiently large x.

Check out http://en.wikipedia.org/wiki/Big-oh#The_family_of_Bachmann.E2.80.93Landau_notations
 
Last edited: