BayesTheorem {LaplacesDemon} | R Documentation |
Bayes' Theorem
Description
Bayes' theorem shows the relation between two conditional
probabilities that are the reverse of each other. This theorem is
named after Reverend Thomas Bayes (1702-1761), and is also referred to
as Bayes' law or Bayes' rule (Bayes and Price, 1763). Bayes' theorem
expresses the conditional probability, or ‘posterior probability’, of
an event after
is observed in terms of the 'prior
probability' of
, prior probability of
, and the
conditional probability of
given
. Bayes' theorem is
valid in all common interpretations of probability. This function
provides one of several forms of calculations that are possible with
Bayes' theorem.
Usage
BayesTheorem(PrA, PrBA)
Arguments
PrA |
This required argument is the prior probability of |
PrBA |
This required argument is the conditional probability of
|
Details
Bayes' theorem provides an expression for the conditional probability
of given
, which is equal to
For example, suppose one asks the question: what is the probability of
going to Hell, conditional on consorting (or given that a person
consorts) with Laplace's Demon. By replacing with
and
with
, the question becomes
Note that a common fallacy is to assume that , which is called the conditional
probability fallacy.
Another way to state Bayes' theorem (and this is the form in the provided function) is
Let's examine our burning question, by replacing
with Hell or Heaven, and replacing
with
Consort
Laplace's Demon was conjured and asked for some data. He was glad to oblige.
6 people consorted out of 9 who went to Hell.
5 people consorted out of 7 who went to Heaven.
75% of the population goes to Hell.
25% of the population goes to Heaven.
Now, Bayes' theorem is applied to the data. Four pieces are worked out as follows
Finally, the desired conditional probability is calculated using Bayes'
theorem
The probability of someone consorting with Laplace's Demon and going to Hell is 73.7%, which is less than the prevalence of 75% in the population. According to these findings, consorting with Laplace's Demon does not increase the probability of going to Hell.
For an introduction to model-based Bayesian inference, see the accompanying vignette entitled “Bayesian Inference” or https://web.archive.org/web/20150206004608/http://www.bayesian-inference.com/bayesian.
Value
The BayesTheorem
function returns the conditional probability
of given
, known in Bayesian inference as the
posterior. The returned object is of class
bayestheorem
.
Author(s)
Statisticat, LLC.
References
Bayes, T. and Price, R. (1763). "An Essay Towards Solving a Problem in the Doctrine of Chances". By the late Rev. Mr. Bayes, communicated by Mr. Price, in a letter to John Canton, M.A. and F.R.S. Philosophical Transactions of the Royal Statistical Society of London, 53, p. 370–418.
See Also
IterativeQuadrature
,
LaplaceApproximation
,
LaplacesDemon
,
PMC
, and
VariationalBayes
.
Examples
# Pr(Hell|Consort) =
PrA <- c(0.75,0.25)
PrBA <- c(6/9, 5/7)
BayesTheorem(PrA, PrBA)