# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-6/1
Exercises: Try Out - Set 6: Real exam simulation to sharpen your skills and build confidence. - Problem 1
---
## Exercise 1
### Question
export const metadata = {
title: "Problem 1",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
Given two lines and have an intersection point. Determine the intersection point!
Decide whether statements and below are sufficient to answer the question.
1.
2.
### Choices
- [ ] Statement $$(1)$$ ALONE is sufficient, but statement $$(2)$$ alone is not sufficient.
- [ ] Statement $$(2)$$ ALONE is sufficient, but statement $$(1)$$ alone is not sufficient.
- [x] BOTH statements TOGETHER are sufficient, but NEITHER statement ALONE is sufficient.
- [ ] EACH statement ALONE is sufficient.
- [ ] Statements $$(1)$$ and $$(2)$$ TOGETHER are NOT sufficient.
### Answer & Explanation
export const metadata = {
title: "Problem 1 Solution",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/23/2025",
};
We are asked to determine the intersection point of two lines:
1.
2.
To determine a unique intersection point , we must be able to solve this system of equations. Let's equate the two equations:
From the equation above, the value of can be determined if and only if the coefficient of is not zero, i.e., or . If , then:
After finding , we can find by substituting it into one of the equations. So, to determine the intersection point specifically, we need to know:
1. That (so the lines intersect at one point).
2. The value of (to calculate the coordinate values).
#### Analysis of Statement 1
Statement provides the information . This guarantees that the two lines have different gradients ( and ), so they definitely intersect at one point. However, we do not know the value of . Without the value of , we cannot determine the coordinates of the intersection point (values of and still depend on ). Therefore, statement alone is **not sufficient**.
#### Analysis of Statement 2
Statement provides the information . The second equation becomes . We do not know the value of .
- If , then the line becomes , which coincides with the first line (infinitely many intersection points).
- If , the lines intersect at one point.
Since is unknown, we cannot ensure there is a single intersection point, nor can we determine its coordinates. Therefore, statement alone is **not sufficient**.
#### Analysis of Both Statements Together
If we combine both statements:
1.
2.
We substitute into the equation to find :
(Division by is valid because ). Then we find :
We get a unique intersection point . Since we can determine the intersection point, both statements together are **sufficient**.
Therefore, **BOTH statements TOGETHER are sufficient, but NEITHER statement ALONE is sufficient**.
---