# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-10/9
Exercises: Try Out - Set 10: Real exam simulation to sharpen your skills and build confidence. - Construction Probability
---
## Exercise 9
### Question
export const metadata = {
title: "Construction Probability",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/27/2025",
};
Suppose a contractor is going to build an apartment. The probability of a public protest occurring is . If there is no protest, the probability that the construction finishes on time is . If there is a protest, the probability that the construction finishes on time is .
Determine the probability that the construction finishes on time!
### Choices
- [x] $$0.52$$
- [ ] $$0.62$$
- [ ] $$0.65$$
- [ ] $$0.68$$
- [ ] $$0.70$$
### Answer & Explanation
export const metadata = {
title: "Construction Probability Explanation",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/27/2025",
};
Defined:
- event construction finishes on time
- event construction does not finish on time
- event a protest occurs
- event no protest occurs
- event construction finishes on time given a protest
- event construction finishes on time given no protest
The probability that construction finishes on time is the sum of the probability of a protest multiplied by the probability of finishing on time given a protest, plus the probability of no protest multiplied by the probability of finishing on time given no protest.
We know that:
Then:
Thus, the probability that the construction finishes on time is .
---