Difference between revisions of "Probabilistic Functional Programming"

From HaskellWiki
Jump to navigation Jump to search
(description from the Libraries/mathematics page)
(RMonad)
Line 2: Line 2:
 
A distribution represent the outcome of a probabilistic event as a collection of all possible values, tagged with their likelihood.
 
A distribution represent the outcome of a probabilistic event as a collection of all possible values, tagged with their likelihood.
 
It turns out that random variables establish a monad, namely a list monad where all items are equipped with a probability.
 
It turns out that random variables establish a monad, namely a list monad where all items are equipped with a probability.
A nice aspect of this system is that simulations can be specified independently from their method of execution.
+
A nice aspect of this system is that simulations can be specified independently from their method of execution.
 
That is, we can either fully simulate or randomize any simulation without altering the code which defines it.
 
That is, we can either fully simulate or randomize any simulation without altering the code which defines it.
 
Examples include dice games, the Monty Hall paradoxon and others.
 
Examples include dice games, the Monty Hall paradoxon and others.
Line 13: Line 13:
 
* http://hackage.haskell.org/cgi-bin/hackage-scripts/package/probability
 
* http://hackage.haskell.org/cgi-bin/hackage-scripts/package/probability
 
* <code>darcs get http://darcs.haskell.org/probability/</code>
 
* <code>darcs get http://darcs.haskell.org/probability/</code>
  +
  +
== Future ==
  +
  +
Currently it is annoying that the distribution monad is not able to accumulate the probabilities of equal elements automatically.
  +
Thus you must make this manually, whenever you feel that it is necessary.
  +
This is due to a restriction of the monad class, that does not allow restrictions of the types of the monadic result.
  +
However using the [http://hackage.haskell.org/package/rmonad RMonad] we could implement the desired functionality.
   
 
== See also ==
 
== See also ==

Revision as of 18:29, 16 January 2010

Probabilistic functional programming is a library for discrete random variables in terms of their distribution. A distribution represent the outcome of a probabilistic event as a collection of all possible values, tagged with their likelihood. It turns out that random variables establish a monad, namely a list monad where all items are equipped with a probability. A nice aspect of this system is that simulations can be specified independently from their method of execution. That is, we can either fully simulate or randomize any simulation without altering the code which defines it. Examples include dice games, the Monty Hall paradoxon and others.

Version maintained by Henning Thielemann:

Future

Currently it is annoying that the distribution monad is not able to accumulate the probabilities of equal elements automatically. Thus you must make this manually, whenever you feel that it is necessary. This is due to a restriction of the monad class, that does not allow restrictions of the types of the monadic result. However using the RMonad we could implement the desired functionality.

See also