# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-6/18
Exercises: Try Out - Set 6: Real exam simulation to sharpen your skills and build confidence. - Problem 18
---
## Exercise 18
### Question
export const metadata = {
title: "Problem 18",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
In a district, a survey was conducted on teenagers. There are people who participate in sports activities, and people who participate in nature lover activities. If is the minimum number of teenagers who participate in both and is the maximum number of teenagers who participate in both. Then the difference between and is ... people.
### Choices
- [ ] $$90$$
- [ ] $$80$$
- [ ] $$70$$
- [ ] $$65$$
- [x] $$45$$
### Answer & Explanation
export const metadata = {
title: "Solution to Problem 18",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
Given:
* Total teenagers () =
* Sports activities () =
* Nature lover activities () =
We are asked to find the difference between the maximum value () and the minimum value () of the intersection of these two sets ().
#### Finding Minimum Value A
The minimum intersection occurs when the union of the two sets is maximized, which equals the total universe (). This means everyone participates in at least one activity.
#### Finding Maximum Value B
The maximum intersection occurs when the smaller set is a subset of the larger set. In this case, all sports participants also participate in nature lover activities.
#### Calculating the Difference
Thus, the difference between and is people.
---