# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-8/6
Exercises: Try Out - Set 8: Real exam simulation to sharpen your skills and build confidence. - Problem 6
---
## Exercise 6
### Question
export const metadata = {
title: "Problem 6",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/25/2025",
};
Set has members. The number of subsets of that have more than members is...
### Choices
- [ ] $$512$$
- [ ] $$564$$
- [ ] $$624$$
- [ ] $$720$$
- [x] $$848$$
### Answer & Explanation
export const metadata = {
title: "Solution for Problem 6",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/25/2025",
};
The order of members in a set does not matter, so we use the concept of combinations.
The total number of subsets of a set with members is . Given , the total number of subsets is:
We are asked to find the number of subsets with **more than ** members. This means we are looking for the sum of subsets with 4, 5, 6, ..., 10 members.
An easier way is to use the complement principle: Total subsets minus subsets with **, , , or ** members.
The combination formula is:
Let's calculate them one by one.
#### Subsets with 0 members
#### Subsets with 1 member
#### Subsets with 2 members
#### Subsets with 3 members
The number of subsets with members is:
Thus, the number of subsets with **more than ** members is:
So, the number of subsets of that have more than members is .
---