home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / theory / 2395 < prev    next >
Encoding:
Text File  |  1992-11-11  |  1.5 KB  |  48 lines

  1. Newsgroups: comp.theory
  2. Path: sparky!uunet!sun-barr!ames!ads.com!marcel
  3. From: marcel@ADS.COM (Marcel Schoppers)
  4. Subject: asymptotic value
  5. Message-ID: <1992Nov12.082550.18486@ads.com>
  6. Sender: Marcel Schoppers
  7. Organization: Advanced Decision Systems, Mtn. View, CA (415)960-7300
  8. Date: Thu, 12 Nov 1992 08:25:50 GMT
  9. Lines: 37
  10.  
  11. All,
  12.     I need some help figuring out an asymptotically correct value.
  13. Given the equation
  14.  
  15.         b^s = s + b^(s-2)
  16.  
  17. set b=1+c and find c in terms of s as s becomes large.  Empirically, c -> 0
  18. from above, but how fast?  I can tell you that b^s >> s, but one has to be
  19. very careful about using this fact.  For example, if you use it in the above
  20. equation you get b=1 and immediately wipe out your chances of finding the
  21. error term.  Rearranging the original equation one can get to
  22.  
  23.         b^s = s b^2 / (b^2 - 1)
  24.             : s/2c
  25.  
  26. where ":" means "approximately equal".
  27.  
  28. At this point if you substitute b=1+c on the left and expand, you get 1+sc
  29. which is nowhere near right: at s = 900, b=1.01, c=.01, b^s=9000 and the
  30. erstwhile approximation to 9000 is 1+sc=10.  So instead, raise both sides
  31. to the power 1/s to get
  32.  
  33. By defn,    b = 1+c
  34. From above,      : (s/2c)^(1/s)
  35. Taking logs,    c : (1/s) ln (s/2c)
  36.         c*s : ln (s/2c)
  37.  
  38. Now at least we've got an equation in c and s only, but from here I'm stumped
  39. how to get an asymptotic expression for c.  If we do
  40.  
  41.         c*s : ln s - ln 2c
  42.  
  43. we find that at s=900, the terms are all of comparable magnitude, so we can't
  44. just drop one (they are, 9.0 : 6.8 - -3.9).  So now what?  Can anyone help?
  45.  
  46. Marcel
  47.  
  48.