Jump to content

big ohhh notation :P


Sarahisme

Recommended Posts

hey could someone please give me a bit of help with this big O notation bussiness, it makes not much sense to me, (mainly in terms of calucating limit sof indeterminate form, and how the big O's cancel etc.) anyways any help or pointers to a good website that explains the stuff would be great!

 

Thanks Guys and Gals :)

 

Sarah

Link to comment
Share on other sites

If f(x)=O(g(x)) that just means that for large enough x and some constant c, |f(x)|<=c*g(x). You can use this to give bounds on certain limits, like f(x), if f(x)=g(x)+O(h(x)), because we know that lim x->infinity g(x)-h(x) <= lim x->infinity f(x) <= lim x->infinity g(x)+h(x). I don't really know what you mean by "how the big O's cancel," so I can't help you out there.

Link to comment
Share on other sites

What they mean is that there is an error term, on the order of x2 and order of x, in reference to the last line ofc.

 

Since you are taking the limit as x approaches 0, x will become very small, so x2 << 1, and x << 1/3.

 

Thus, they are negligible, and can be tossed away.

Link to comment
Share on other sites

If x < 1, and you're looking at a limit as x -> 0, then x >> x2 >> x3, etc

 

You if you have a term of order x, you can ignore the higher order terms. They are small compared to x. If you have terms that look like x2, you can ignore terms that look like x3, again, because they are small when x -> 0.

 

The O(xn) just means that all the terms are that exponent, n, and the terms are small so they can be ignored. Thus it's not worth the time to actually calculate that term.

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.