# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-9/5
Exercises: Try Out - Set 9: Real exam simulation to sharpen your skills and build confidence. - Problem 5
---
## Exercise 5
### Question
export const metadata = {
title: "Problem 5",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/26/2025",
};
Inside a box there are red ball, green balls, and white balls. If balls are to be drawn without replacement, then the probability that the number of green balls drawn is twice the number of white balls drawn is...
### Choices
- [ ] $$\frac{1}{12}$$
- [ ] $$\frac{1}{4}$$
- [x] $$\frac{5}{12}$$
- [ ] $$\frac{1}{2}$$
- [ ] $$\frac{2}{3}$$
### Answer & Explanation
export const metadata = {
title: "Solution for Problem 5",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/26/2025",
};
Let be the event that the number of green balls drawn is twice the number of white balls drawn.
**Given:**
There are balls in a box ( red + green + white = ).
balls will be drawn at random. The total number of ways to draw the balls is:
We want to find the probability that the number of green balls is twice the number of white balls. We divide this into two cases.
**Case 1**
If white ball is drawn, then there must be green balls (since green = 2 times white).
To reach a total of balls drawn, the remaining balls to be drawn must be balls. These must be red balls.
However, there is only red ball available. Therefore, **Case 1 is impossible**.
**Case **
If white balls are drawn, then there must be green balls.
To reach a total of balls drawn, the remaining balls to be drawn must be ball. This must be a red ball.
This case is possible because there are white balls, green balls, and red ball available.
The number of ways to draw for this case is:
**Conclusion**
Thus, the probability of event is:
Therefore, the probability that the number of green balls drawn is twice the number of white balls drawn is .
---