# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-10/18
Exercises: Try Out - Set 10: Real exam simulation to sharpen your skills and build confidence. - Intersection of Two Sets
---
## Exercise 18
### Question
export const metadata = {
title: "Intersection of Two Sets",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/27/2025",
};
Given two sets:
The intersection of these two sets is...
### Choices
- [ ] $$\{x | -3 \leq x, x \in \text{integers}\}$$
- [ ] $$\{x | -3 < x, x \in \text{integers}\}$$
- [ ] $$\{x | x \leq 7, x \in \text{integers}\}$$
- [x] $$\{x | -3 < x \leq 7, x \in \text{integers}\}$$
- [ ] $$\{x | -3 < x < 7, x \in \text{integers}\}$$
### Answer & Explanation
export const metadata = {
title: "Set Intersection Explanation",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/27/2025",
};
First, let's list the members of set . Set contains integers between and (exclusive):
Next, set contains all integers less than or equal to :
The intersection of two sets () is the set containing elements that are present in both sets.
Since all members of set (from to ) are also contained in set , the intersection is set itself:
Converting this back to set-builder notation, the elements are integers greater than and less than or equal to :
---