Can You Simplify Limits Using Big O Notation?

  • Thread starter Thread starter catapax
  • Start date Start date
  • Tags Tags
    Limit 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
1 reply · 2K views
catapax
Messages
6
Reaction score
0
lim (e^x-sin(x)-cos(x))/(e^(x^2)-e^(x^3)), x->0
= lim (1+x+o(x)-x+o(x)+1/2(x^2)-1+o(x^2))/((x^2)+1+o(x^2)-1-(x^3)+o(x^3)), x->0
= lim 1/2(x^2)/(x^2+o(x^2)), x->0 = 1/2
is it correct?
 
Physics news on Phys.org
You cannot simplify o(x)+1/2 x^2 to 1/2 x^2, as o(x) could (and does in your example!) include terms of x^2. You have to expand it more.