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 tanh−1x series if it makes a difference.
Answer
The estimate
12log(1+x1−x)=x+x33+x55+O(x7)
is only for small x. For |x|≤a, we have that |x|7≤a|x|6; therefore, (1) implies
12log(1+x1−x)=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