# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-8/2 Exercises: Try Out - Set 8: Real exam simulation to sharpen your skills and build confidence. - Problem 2 --- ## Exercise 2 ### Question export const metadata = { title: "Problem 2", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/25/2025", }; ### Choices - [ ] $$21, 15$$ - [ ] $$20, 14$$ - [ ] $$19, 13$$ - [x] $$18, 12$$ - [ ] $$18, 11$$ ### Answer & Explanation export const metadata = { title: "Solution for Problem 2", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/25/2025", }; The sequence above consists of two alternating sub-sequences (skipping one number). #### Pattern 1 (Odd positions) The differences between consecutive terms are: The pattern is subtracting consecutive odd numbers (). Thus, the next difference is . Next term: . #### Pattern 2 (Even positions) The differences between consecutive terms are: The pattern is subtracting consecutive even numbers (). Thus, the next difference is . Next term: . So, the next two numbers are and . ---