# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-5/11
Exercises: Try Out - Set 5: Real exam simulation to sharpen your skills and build confidence. - Problem 11
---
## Exercise 11
### Question
export const metadata = {
title: "Problem 11",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
There are students on a campus, students choose sports activities, and students choose arts activities. If is the maximum number of students who participate in both and is the minimum number of students who participate in both, then the difference between and is ... people.
### Choices
- [ ] $$350$$
- [x] $$250$$
- [ ] $$150$$
- [ ] $$100$$
- [ ] $$75$$
### Answer & Explanation
export const metadata = {
title: "Solution to Problem 11",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
Given:
- Total students .
- Students choosing sports .
- Students choosing arts .
We want to find the value of (maximum intersection) and (minimum intersection).
1. **Finding (Maximum Intersection)**
The maximum number of students participating in both occurs if one set is a subset of the other (or as many members of the smaller set as possible are included in the larger set).
2. **Finding (Minimum Intersection)**
The minimum number of students participating in both occurs if the distribution of students is as spread out as possible so that the union of the two sets is maximized (equal to the total universe, which is ).
Using the Inclusion-Exclusion Principle:
3. **Finding the Difference Between and **
Thus, the difference between and is students.
---