# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-5/12 Exercises: Try Out - Set 5: Real exam simulation to sharpen your skills and build confidence. - Problem 12 --- ## Exercise 12 ### Question import { QuestionGraph } from "../graph"; export const metadata = { title: "Problem 12", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; Consider the graph below! A parabola opening to the left intersecting the -axis at and , and the -axis at . } /> The correct statements are: 1. One of the intersection points with the -axis is . 2. . 3. Axis of symmetry . 4. Intersection point with the -axis is . ### Choices - [ ] If $$(1)$$, $$(2)$$, and $$(3)$$ are correct. - [ ] If $$(1)$$ and $$(3)$$ are correct. - [ ] If $$(2)$$ and $$(4)$$ are correct. - [ ] If only $$(4)$$ is correct. - [x] If all are correct. ### Answer & Explanation export const metadata = { title: "Solution to Problem 12", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; We analyze each statement based on the graph: 1. **Statement **: The graph intersects the -axis at and . So the intersection points are and . Statement is **CORRECT**. 2. **Statement **: Since the graph intersects the -axis at and , the equation is of the form: The graph passes through the point (x-intercept). Substitute into the equation: So the function equation is: Converting to vertex form: Or in function notation : Statement is **CORRECT**. 3. **Statement **: The axis of symmetry of a horizontal parabola is (ordinate of the vertex). From the form , we get . Or from the midpoint of the roots: So the axis of symmetry is . Statement is **CORRECT**. 4. **Statement **: The intersection with the -axis occurs when . From the graph, it clearly intersects at . By calculation: . So the intersection point is . Statement is **CORRECT**. Conclusion: All statements , , , and are correct. ---