home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / basic / math.ark / POISSON.DOC < prev    next >
Encoding:
Text File  |  1986-12-21  |  1.1 KB  |  21 lines

  1. Poisson.* is an S-Basic program designed to work in the extended
  2. range. Like Binomial.* it is written making use of logarithms.
  3. The same procedure is used to find out the number of good digits
  4. in the answer. # good = 5 - #of digits in characteristic - # of
  5. iterations of X. 
  6.      The Poisson distribution is used where the mean number of
  7. events is know (on the average 158.394 telephone calls come in an
  8. hour at a certain buisness, what is the probability only 23
  9. coming in an hour on a certain day?) Mean = lambda = 158.394;
  10. number of occurances (must be integer) = 23. Logprob =
  11. -40.6081... ; probability = 2.46E-41. Note that this program will
  12. work for Probabliity < 1E-128. For instance  if we have a poisson
  13. process with X = 452, Lambda = 35.612; we wind up with a
  14. proability = 2.03 E -320. This is reported as 2.03 Ten -320 by
  15. the progrem. A Nevada Basic version of the program is available
  16. on this disk. This program was written by
  17. \
  18.                           Michael P Finerty
  19.                         2358 E Parkside Drive
  20.                         Tucson, Arizona 85713    
  21.    omial.* it is written making use of logarithms.