# Nakafa Framework: LLM
URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-7/14
Exercises: Try Out - Set 7: Real exam simulation to sharpen your skills and build confidence. - Problem 14
---
## Exercise 14
### Question
import { Graph } from "../graph";
export const metadata = {
title: "Problem 14",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/25/2025",
};
Given and . Determine which of the following statements are correct:
1. is a linear line with a gradient of .
2. and intersect at .
3. is above for all values of .
4. The graphs of and intersect at .
Graph of functions and .>} />
### Choices
- [ ] $$(1), (2), \text{ and } (3) \text{ are correct}.$$
- [ ] $$(1) \text{ and } (3) \text{ are correct}.$$
- [x] $$(2) \text{ and } (4) \text{ are correct}.$$
- [ ] $$\text{Only } (4) \text{ is correct}.$$
- [ ] $$\text{All are correct}.$$
### Answer & Explanation
export const metadata = {
title: "Solution for Problem 14",
authors: [{ name: "Nabil Akbarazzima Fatih" }],
date: "12/25/2025",
};
We will analyze each statement one by one based on the functions and .
#### Analysis of Statement 1
Statement: is a linear line with a gradient of .
The function is an exponential function, not a linear function. A linear function has the general form , whereas this is an exponential form. Therefore, statement is **incorrect**.
#### Analysis of Statement 2
Statement: and intersect at .
To find the intersection point, we equate the two functions:
If we substitute :
Both functions have the same value of when . Since , statement is **correct**.
#### Analysis of Statement 3
Statement: is above for all values of .
Let's check a value , for example :
Here it is seen that , which means the curve is above . Therefore, the statement that is always above is incorrect. Statement is **incorrect**.
#### Analysis of Statement 4
Statement: The graphs of and intersect at .
As proven in the analysis of statement , both graphs intersect when and yield the value . Thus, the intersection point is . Statement is **correct**.
#### Conclusion
The correct statements are and .
---