# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-9/20
Exercises: Try Out - Set 9: Real exam simulation to sharpen your skills and build confidence. - Problem 20
---
## Exercise 20
### Question
export const metadata = {
title: "Problem 20",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/26/2025",
};
In a box, there are yellow balls and blue balls. If two balls are taken simultaneously at random, determine the expected frequency of obtaining two blue balls from trials!
### Choices
- [ ] $$3$$
- [ ] $$5$$
- [x] $$6$$
- [ ] $$9$$
- [ ] $$11$$
### Answer & Explanation
export const metadata = {
title: "Solution 20",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/26/2025",
};
First, we calculate the probability of picking two blue balls. The total number of balls in the box is the sum of yellow and blue balls.
The number of ways to choose balls from a total of balls can be calculated using combinations.
Next, we calculate the number of ways to choose blue balls from the available blue balls.
The probability of obtaining two blue balls () is the ratio of the number of ways to pick two blue balls to the total number of ways to pick any two balls.
The expected frequency () is the product of the probability of the event and the number of trials. The number of trials is .
Thus, the expected frequency of obtaining two blue balls is .
---