bayes_theorem
Calculate posterior probability P(hypothesis|evidence) given prior, likelihood, and evidence.
Instructions
Calculates P(hypothesis|evidence) = P(evidence|hypothesis) * P(hypothesis) / P(evidence)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prior | Yes | P(hypothesis) | |
| evidence | Yes | P(evidence) | |
| likelihood | Yes | P(evidence | hypothesis) |