# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-10/8 Exercises: Try Out - Set 10: Real exam simulation to sharpen your skills and build confidence. - Quadratic Inequality --- ## Exercise 8 ### Question export const metadata = { title: "Quadratic Inequality", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/27/2025", }; Given: 1. 2. 3. 4. If , then the inequality is satisfied by... ### Choices - [x] $$1$$ and $$3$$ - [ ] $$2$$ and $$4$$ - [ ] $$1$$ and $$4$$ - [ ] $$3$$ and $$4$$ - [ ] $$1$$ ### Answer & Explanation import { Graph } from "../graph"; export const metadata = { title: "Quadratic Inequality Explanation", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/27/2025", }; We will solve the inequality: Factor the quadratic equation: The zeros (roots) of the equation are: We test points on the number line: - For (e.g., ): (Positive) - For (e.g., ): (Negative) - For (e.g., ): (Positive) Since the inequality sign is (positive), the solution region is: Based on the given statements: 1. (Matches) 2. (Does not match) 3. (Matches) 4. (Does not match) Thus, the inequality is satisfied by statements and . ---