Order notation: f(x)=O(x^n) as x-> 0

  • Context: Undergrad 
  • Thread starter Thread starter coverband
  • Start date Start date
  • Tags Tags
    Notation
Click For Summary
SUMMARY

The discussion focuses on the concept of order notation, specifically f(x)=O(x^n) as x approaches 0. It defines a function f(x) as being of order x^n if there exists a constant C such that |f(x)| PREREQUISITES

  • Understanding of limit concepts in calculus
  • Familiarity with Taylor series expansions
  • Knowledge of asymptotic notation, particularly big O notation
  • Basic proficiency in mathematical analysis
NEXT STEPS
  • Study Taylor series and their applications in approximating functions
  • Explore advanced topics in asymptotic analysis
  • Learn about the implications of big O notation in algorithm complexity
  • Investigate the relationship between big O notation and convergence in calculus
USEFUL FOR

Mathematicians, computer scientists, and students studying calculus or mathematical analysis who seek to deepen their understanding of function behavior near specific points.

coverband
Messages
170
Reaction score
1
Hello,

I am having difficulty getting to grips with “the order notation”. I have the following definition…

“A function f(x) is said to be of order x^n as x -> 0 if there is a non-zero constant C such that |f(x)|<C|x^n| for all x in an interval around x=0. This is written as
f(x) = O(x^n) as x->0”

some examples:

x(1+x^2)^1/2 = x + x^3/2 +… = O(x)
x/(1+x) = x(1 – x + x^2 +…) = O(x)
(x+b)^a – x^a = x^a(1 + ab/x +…) –x^a = O[x^(a-1)]
 
Physics news on Phys.org
As an example, sin(x) = x + O(x^3) as x -> 0. sin(0.01) is about 0.01 - 0.01^3 * 1/6, sin(0.001) is about 0.001 - 0.001^3/6, and so forth. In this case C is something like 1/6 for an appropriate interval.

I'm not sure exactly what you want. The intuition is that the function near 0 is closely approximated by the given polynomial.
 
The idea behind the "big O" notation is to make rigorous the idea that, say

[tex]e^x = 1 + x + \mbox{ terms involving } x^2 \mbox{ or smaller}[/tex]​

which you would write as

[tex]e^x = 1 + x + O(x^2) \mbox{ as } x \rightarrow 0[/tex]​

and which means that

[tex]|e^x - 1 - x| < C|x^2|[/tex]​

for some C, for all small x.

You are, in effect, treating x2 as negligible for the purpose of your calculation, but instead of just ignoring it, you keep track of what you have ignored. By the end of your calculation, you should find the ignored term goes to zero as [itex]x \rightarrow 0[/itex]. If it doesn't, you've neglected too much, and you'll have to go back and add another term.
 

Similar threads

  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K