home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / c / 12294 < prev    next >
Encoding:
Text File  |  1992-08-13  |  1.1 KB  |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!gatech!destroyer!sol.ctr.columbia.edu!The-Star.honeywell.com!umn.edu!thompson
  3. From: thompson@atlas.socsci.umn.edu (T. Scott Thompson)
  4. Subject: Re: POWER OF LARGE NUMBERS
  5. Message-ID: <thompson.713734408@daphne.socsci.umn.edu>
  6. Sender: news@news2.cis.umn.edu (Usenet News Administration)
  7. Nntp-Posting-Host: daphne.socsci.umn.edu
  8. Organization: University of Minnesota
  9. References: <1992Aug12.135106.12924@cs.uow.edu.au>
  10. Date: Thu, 13 Aug 1992 19:33:28 GMT
  11. Lines: 19
  12.  
  13. u8705957@cs.uow.edu.au (Hitesh Sanghvi) writes:
  14.  
  15. >Hello there;
  16.  
  17. >    Does any one know how to raise power of possibly 100 digits 
  18. >to possibly 100 digits. Any algorithm or code will be appriciated.
  19.  
  20. >Example >(1234367463746464647464...up to 100 digit)**(647254627463048736...up to 100 digit)
  21.  
  22. The order of magnitude of the solution to this problem is 
  23.  
  24.               10**(10**102)
  25.  
  26. which is a ridiculously large number.  I would imagine that the number
  27. of significant digits in the answer is of roughly similar magnitude
  28. unless we place some special restrictions on input values.  Is there
  29. any hope of solving this?
  30.  
  31. What do you netters think?
  32.