As students, we often ponder how our results will be after the final term examinations. So, we start speculating based on our previous internal marks performance, the number of all-nighters we have pulled, and our prior performance in similar courses. This approach of updating our beliefs about our potential performance aligns very closely with a powerful statistical framework known as “Bayesian Thinking”. This technique adopts the logic of Bayesian theorem which we know in machine learning as the Bayes formula. You might’ve never quite realized it, but most of our introspection regarding the future is heavily dependent on Bayes’ conditional probability. In this article, we will dive deeper into how we can correlate Bayesian thinking with our daily life to formalize and improve our estimations of future outcomes.
Bayesian thinking, as the name suggests, is based on the Bayes Theorem, which predominantly follows these 3 fundamental concepts – prior, likelihood, and posterior. Let’s understand them based on the example of gauging our final exam performance.
Here, for 2 events A and B:
P(A) is the prior probability of hypothesis B.
P(B|A) is the likelihood of data B given A.
P(B) is the marginal probability of data B.
P(A|B) is the posterior probability of A after observing B.
So, in our exam-based scenario:
Now that you understand what Bayesian thinking is, let me tell you how it helps in decision-making and why we need to use it.
Let’s dive deeper into understanding how our exam scenario plays out by integrating all the following Bayes’ conditional probabilities. In this case, our calculation would be as follows:
Imagine you’re a third-year engineering student with a historical average score of 75% in your major subjects. Based on your overall academic record, you may believe there is:
The percentages we have made above make up the prior distributions across our performance bands. We are to follow the Bayes Formula fundamental concepts to map out our values here.
Here these values can be considered as our Bayesian conditional probabilities or distributions.
Performance Band | Prior(P|H) |
A (>=90%) | 0.25 |
B (80-90%) | 0.5 |
C (70-80%) | 0.25 |
Two weeks before the final, you receive your internal exam result which is 80%. How should this affect your belief about the final? First, we gotta estimate the likelihood:
Performance Band | Prior P(H) | Likelihood P(D=80% | H) |
A (>=90%) | 0.25 | 0.8 |
B (80-90%) | 0.5 | 0.4 |
C (70-80%) | 0.25 | 0.1 |
To normalize and compute P(D), the overall probability of scoring 80% on the internal would be as follows:
P(D)=(0.80×0.25)+(0.40×0.50)+(0.10×0.25)
P(D) = 0.20+0.20+0.025=0.425
Here we will be applying Bayes’ theorem for each band:
P(A∣D)=(0.80×0.25) / 0.425 ≈ 0.47
P(B∣D)=(0.40×0.50) / 0.425 ≈ 0.47
P(C∣D)=(0.10×0.25) / 0.425 ≈ 0.06
As you can see, the results show:
The following week, you log and track your daily study hours. Let’s say the historical data suggests that you study ≥ 5 hours/day in the last 2 weeks. Now,
Suppose you averaged 6 hours/day. This becomes another piece of data ‘S’, for which we will need to compute the updated likelihoods:
Band | Current Posterior P(H) | Likelihood P(S = 6hrs/day | H) |
A | 0.47 | 0.7 |
B | 0.47 | 0.3 |
C | 0.06 | 0.05 |
We will be utilizing the Bayesian formula here in a loop for each updation of our belief as newer evidence occurs. Normalize with P(S):
P(S)=(0.70×0.47)+(0.30×0.47)+(0.05×0.06) ≈ 0.329+0.141+0.003=0.473
Upon further updation:
P(A∣D,S)=0.70×0.47 / 0.473 ≈ 0.70
P(B∣D,S)=0.30×0.47 / 0.473 ≈ 0.30
P(C∣D,S)=0.05×0.06 / 0.473 ≈ 0.01
Your belief in getting an A‑grade rises to 70% after accounting for your diligent study.
Now, let’s go with the assumption that there are 7 days left before the final exam, each being an opportunity to revise or reinforce learning. Suppose, mastering the remaining topics translates into an extra 5 percentage marks on the final with:
Band | Prior P(H) | Likelihood P(Δ=+5%∣H) |
A | 0.7 | 0.7 |
B | 0.3 | 0.3 |
C | 0.01 | 0.05 |
Normalize and update one more time. The final posterior would be like:
P(A ∣ all) ≈ 0.84
P(B ∣ all) ≈ 0.16
P(C ∣ all) ≈ <0.01
The final posterior shows a 75% chance of getting an A, 24% for B, and <1% for C. Based on this, our overall percentage is very likely to increase.
If you happen to come from an ML background, I’m pretty sure you might find this article pretty familiar. Yes, we are following the very same mechanism that is utilized in Naive Bayes, which is the Bayes Formula. For those who don’t know Naive Bayes, here are 2 articles that can help you learn about it:
With a posterior distribution over our performance bands, we can now make sound and optimized decisions. Here’s how:
Bayesian thinking doesn’t quite require complex maths. We just need a clear, structured approach to updating our beliefs when we get our new pieces of evidence. Whether you’re making decisions in your personal life, work, research, or learning, viewing your progress as a dynamic system of beliefs shaped by data, can lead to more informed and smarter decision-making.
Here are some practical ways to apply Bayesian reasoning in everyday scenarios:
While our example centers on exam performance, Bayesian reasoning applies universally. Some common applications include:
By consciously framing problems in terms of priors, likelihoods, and posteriors, we gain more clarity and adaptability in our decision-making. We can quantify how much new information can alter our minds, avoiding overreaction to noise or underreaction to crucial evidence.
You can read more about Hidden Markov Models here.
Bayesian thinking turns any uncertainty into a clear, transparent, and optimized decision-making process. Defining your initial assumptions, assessing how new information or features would alter them, and continuously updating this data can help you cultivate both clarity and confidence in your decisions. Whether you’re evaluating project outcomes, medical diagnoses, market trends, or everyday choices, mastering this approach provides a powerful framework for decision‑making under uncertainty. Next time you face an unknown, lean on your priors, weigh your evidence, and let Bayes’ theorem guide you through to reach a more informed judgment.