On infinite products; notational questions

  • Context: Graduate 
  • Thread starter Thread starter DoubleRaven
  • Start date Start date
  • Tags Tags
    Infinite
Click For Summary
SUMMARY

The discussion focuses on the concept of "Big O" notation in the context of infinite products and convergence of special functions. The term "O" signifies "Order," indicating that the growth rate of a function is bounded by a constant multiple of another function. Specifically, it is established that f(n) = O(g(n)) means the growth of f(n) does not exceed that of g(n) multiplied by a constant. Examples provided illustrate how to determine constants for polynomials to validate Big O notation.

PREREQUISITES
  • Understanding of Big O notation in mathematics
  • Familiarity with polynomial functions
  • Basic knowledge of limits and convergence in calculus
  • Ability to interpret mathematical notation and expressions
NEXT STEPS
  • Study the formal definition of Big O notation in mathematical analysis
  • Learn how to use LaTeX for typesetting mathematical formulas
  • Explore convergence criteria for infinite products in special functions
  • Investigate examples of polynomial growth rates and their implications in algorithm analysis
USEFUL FOR

Mathematicians, computer scientists, students studying calculus or algorithm analysis, and anyone interested in understanding the implications of growth rates in mathematical functions.

DoubleRaven
Messages
2
Reaction score
0
I'm not certain this is the right forum, so let me know if its not, but I was wondering:

I'm reading a book on special functions and there are infinite products involved. In showing they converge, a capital O crops up and is not defined. Can anyone help me? I don't know how to paste in math formulas using latex (something I would like to learn if anyone can help me with that), otherwise I would. As is I have posted a picture I did with MathType.

What is the O mean? Perhaps that answer will be enough for me to answer the next on my own, but in case not: how do they arive at the second line's equality?

Thanks for any help you can offer.
 

Attachments

Last edited:
Mathematics news on Phys.org
O in this context means Order. Since it's a "Big O" (as opposed to "little o"), it represents that the cropped terms are at most in the order of -3 (i.e. somewhat small). Formally, f(n) = O(g(n)) means that "the rate of growth of f(n) is no more than a constant times the rate of growth of g(n)." See http://mathforum.org/library/drmath/view/54574.html. In your case, n = -3.
 
Enuma has as such detailed out what big-Oh denotes.

To top it off with a small example,
consider this polynomial,
f(n) = 1+n+n^2+n^3+n^4 (for all n>=1)

Now if i can find two constants n_0 and c, such that
f(n) <= c*g(n) for all n>=n_0
then we say that
f(n) = O(g(n))
(**This is what Enuma states as, "the rate of growth of f(n) is no more than a constant times the rate of growth of g(n)." **)

Consider g(n) = n^4,
and now consider the constants n_0 = 1 and c = 5, you will notice that,
f(n) <= 5*g(n) for all n>=1 (Try to prove this if you wish)
hence f(n) = O(g(n))
or (1+n+n^2+n^3+n^4) = O(n^4)

Now moving a bit further, consider this polynomial,
f(n) = n^5 + (1+n+n^2+n^3+n^4) (for all n>=1)
I can always replace the term in bracket with,
f(n) = n^5 + O(n^4)

Such a replacement is done when we are only concerned with the growth rate of the term and not the actual term itself.

-- AI
 

Similar threads

  • · Replies 20 ·
Replies
20
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 5 ·
Replies
5
Views
3K
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 13 ·
Replies
13
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 6 ·
Replies
6
Views
6K
  • · Replies 138 ·
5
Replies
138
Views
13K