Bayesian Inference – Detailed Study Notes
1. Introduction
Bayesian Inference is a method of reasoning under uncertainty using probability theory. It
allows an intelligent system to update its beliefs about the world when new evidence is
observed. It is widely used in Artificial Intelligence, Machine Learning, data science, and
decision-making systems.
2. Need for Bayesian Inference
In real-world situations, complete information is rarely available. Bayesian inference helps
in making rational decisions by combining prior knowledge with new evidence. It is
especially useful when data is limited or uncertain.
3. Basic Terminology
- Random Variable: A variable whose value depends on chance.
- Prior Probability: Initial belief before seeing evidence.
- Posterior Probability: Updated belief after observing evidence.
- Likelihood: Probability of evidence given a hypothesis.
4. Bayes’ Theorem
Bayes’ theorem provides the mathematical foundation for Bayesian inference.
P(H|E) = (P(E|H) × P(H)) / P(E)
Where:
H = Hypothesis
E = Evidence
5. Explanation of Bayes’ Theorem
P(H) is the prior probability of the hypothesis.
P(E|H) is the likelihood of observing evidence if the hypothesis is true.
P(E) is the total probability of observing the evidence.
P(H|E) is the posterior probability, which represents updated belief.
6. Steps in Bayesian Inference
1. Identify the hypothesis
2. Assign prior probabilities
3. Collect evidence
4. Compute likelihood
5. Apply Bayes’ theorem
6. Update belief (posterior probability)
7. Simple Example – Medical Diagnosis
Consider a disease detection problem.
Probability that a person has the disease = 0.01
Test accuracy:
P(Positive | Disease) = 0.99
P(Positive | No Disease) = 0.01
8. Solution Using Bayesian Inference
Step 1: Prior probability P(D) = 0.01
Step 2: Likelihood P(+|D) = 0.99
Step 3: Evidence probability:
P(+) = (0.99 × 0.01) + (0.01 × 0.99) = 0.0198
Step 4: Posterior probability:
P(D|+) = (0.99 × 0.01) / 0.0198 = 0.5
9. Interpretation of Result
Even though the test is highly accurate, the probability that the person actually has the
disease after a positive test is only 50%. This highlights the importance of Bayesian
inference in decision-making.
10. Bayesian Inference vs Classical Probability
Bayesian inference updates probabilities based on evidence, while classical probability
treats probabilities as fixed values.
11. Advantages of Bayesian Inference
- Handles uncertainty effectively
- Incorporates prior knowledge
- Updates beliefs dynamically
- Suitable for real-world problems
12. Applications
- Medical diagnosis
- Spam filtering
- Speech recognition
- Robotics
- Machine learning
13. Summary
Bayesian inference is a powerful framework for reasoning under uncertainty. By combining
prior knowledge with evidence, it enables intelligent systems to make rational and
informed decisions.