Results 1 to 4 of 4

Thread: Big-O computation

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2001
    Location
    Earth
    Posts
    277

    Question Big-O computation

    could anyone help me in the following question
    Show that the function f(n) = 4n2 + 6n + 1 is O(n2) by finding the suitable values of c and n0


  2. #2
    Addicted Member HairyDave's Avatar
    Join Date
    Aug 2002
    Location
    Er...I can't remember.
    Posts
    196
    Have a look at http://www.nist.gov/dads/HTML/bigOnotation.html for some information.

    HD

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jul 2001
    Location
    Earth
    Posts
    277
    thanks HairyDave for the site u gave me


    it seems to be helpful but I couldn't get help

  4. #4
    New Member
    Join Date
    Oct 2002
    Location
    Canada
    Posts
    3
    When using Big O notation, constants are eliminated, and as N get high N^2 becomes much more signifigant than just N...

    For my prof all I would have to write is:

    f(n) = 4n2 + 6n + 1
    O(kn^2 + bn)
    because as n becomes larger bn becomes more insignifigant
    O(n^2)
    Mind over metal

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width