home *** CD-ROM | disk | FTP | other *** search
/ ticalc.org / ticalc_org_rev_b.iso / archives / 81 / basic / math / poisson.81 < prev    next >
Encoding:
Text File  |  2001-07-01  |  772 b   |  29 lines

  1. POISSONPDF.81 (Poisson Probability Density Function) freeware
  2. by Daniel Bishop (danb2k@hotmail.com)
  3. 2000-10-09
  4.  
  5. This program evaluates the poissonpdf(lambda, x) function as used on the TI-83.  LAMBDA is the expected number of times an event will occur within a given time period.  This program calculates the probability P(X) that the even will occur X times during a time period of equal length.
  6.  
  7. Prgm_:POISSONP
  8. :Disp "LAMBDA"
  9. :Input L
  10. :Disp "X"
  11. :Input X
  12. :L^X/e^L/X! -> P
  13. :Disp "P(X)="
  14. :Disp P
  15.  
  16. Example:
  17. In a certain small town, an average of six babies are born each month.  What is the probability that exactly five children are born there this month?
  18.  
  19. Solve:
  20. lamba=(6/month)(1 month)=6
  21. X=5
  22.  
  23. Run program:
  24. LAMDA
  25. ?6
  26. X
  27. ?5
  28. P(X)=
  29.       .160623141