# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-7/1 Exercises: Try Out - Set 7: 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/24/2025", }; import { Graph } from "../graph"; Observe the curve below! A parabola intersecting the -axis and the -axis. } /> The correct statements regarding the curve are 1. The intersection point of the curve with the -axis is . 2. The intersection points of the curve with the -axis are and . 3. The axis of symmetry is . 4. The axis of symmetry is . ### Choices - [ ] If $$(1)$$, $$(2)$$, and $$(3)$$ are correct. - [x] If $$(1)$$ and $$(3)$$ are correct. - [ ] If $$(2)$$ and $$(4)$$ are correct. - [ ] If only $$(4)$$ is correct. - [ ] If all are correct. ### Answer & Explanation export const metadata = { title: "Solution to Problem 1", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/24/2025", }; We will analyze each statement based on the given graph. #### Analysis of Statement 1 Based on the graph, it is clear that the curve intersects the -axis at the point . Thus, statement is **correct**. #### Analysis of Statement 2 Based on the graph, the curve intersects the -axis at two points, namely at and . So the intersection points are and . Statement states that the intersection points are and . Since , this statement does not match the graph. Thus, statement is **incorrect**. #### Analysis of Statement 3 The axis of symmetry for a horizontal parabola can be determined from the midpoint between the two -intercepts (if known). The axis of symmetry is obtained as the line . Thus, statement is **correct**. #### Analysis of Statement 4 Since the axis of symmetry is the horizontal line , the statement that the axis of symmetry is (a vertical line) is clearly wrong. Thus, statement is **incorrect**. #### Conclusion The correct statements are statements and . ---