Sunday, October 11, 2015

real analysis - Big mathcalO notation



I'm learning about the big O notation and I'm a bit confused. Why is it that we can write things like x+x33+x55+O(x6)

when there's no x6 term? Wouldn't it make sense to write x+x33+x55+O(x7)
instead? This is for the tanh1x series if it makes a difference.


Answer



The estimate
12log(1+x1x)=x+x33+x55+O(x7)


is only for small x. For |x|a, we have that |x|7a|x|6; therefore, (1) implies
12log(1+x1x)=x+x33+x55+O(x6)

However, (1) gives more information (that is, a closer approximation for small x) than (2).


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...