Thread: Very quick math question

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Software Developer jverkoey's Avatar
    Join Date
    Feb 2003
    Location
    New York
    Posts
    1,905

    Very quick math question

    <edit>
    Bah, after re-reading my post I guess it's not a very quick question. </edit>

    So I just took a midterm, and one of the questions was as follows:

    Code:
    lim      (1-x^2)
    x->+inf  -------
              (3+x)
    I found two ways to go about doing this.

    1) divide all by x:
    Code:
    lim      (1-x^2)/x
    x->+inf  -------
             (3+x)/x
    
    lim      (1/x-x)
    x->+inf  -------
             (3/x+1)
    When you plug in +inf, you get:
    Code:
    -inf
    ----
      1
    Evaluating to -inf.

    I checked this over at the end of the test though, and decided I didn't like this solution, as by the definition of a limit: the left side limit must equal the right side limit...and how do you evaluate the left and right side of infinity?

    So, I erased that answer and proceeded to write answer #2:

    Code:
    lim      (1-x^2)
    x->+inf  -------
              (3+x)
    
    As   lim    lim
       x->+inf  1/x->0.
    
    Therefore,
    
    lim    (1-(1/x)^2)
    1/x->0 ----------
            (3+(1/x))
    So, for lim 1/x->0+, we have:
    Code:
    -inf
    ----
    +inf
    Which is -inf.

    Also, for lim 1/x->0-, we have:
    Code:
    -inf
    ----
    -inf
    Which is +inf.

    Code:
    lim1/x->0- DNE lim1/x->0+,
    Therefore lim1/x->0 DNE.
    So, yah, a bunch of my friends all said -inf is right, but I really don't like the idea of putting that down as saying it is -inf implies the limit exists and approaches -inf, which isn't necessarily true, as inf isn't defined as a number....Aurgh.
    Last edited by jverkoey; 10-24-2005 at 07:14 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Quick Question Regarding Pointers
    By charash in forum C++ Programming
    Replies: 4
    Last Post: 05-04-2002, 11:04 AM
  2. Quick Question on File Names and Directories
    By Kyoto Oshiro in forum C++ Programming
    Replies: 4
    Last Post: 03-29-2002, 02:54 AM
  3. * quick question *
    By SavesTheDay in forum C Programming
    Replies: 3
    Last Post: 03-27-2002, 06:58 PM
  4. just a reaaaaaaly quick question plz help
    By Unregistered in forum C++ Programming
    Replies: 1
    Last Post: 03-21-2002, 11:39 AM
  5. Quick question: exit();
    By Cheeze-It in forum C Programming
    Replies: 6
    Last Post: 08-15-2001, 05:46 PM