# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-10/6 Exercises: Try Out - Set 10: Real exam simulation to sharpen your skills and build confidence. - Book Discount --- ## Exercise 6 ### Question export const metadata = { title: "Book Discount", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/27/2025", }; The price of a math book at ABC store is rupiah and a biology book is priced at rupiah. Because the store is having an anniversary, all books are given an discount. If on that day the price of a math book is rupiah. What is the price of the biology book? ### Choices - [ ] $$11,760$$ - [ ] $$12,000$$ - [x] $$13,600$$ - [ ] $$14,000$$ - [ ] $$15,600$$ ### Answer & Explanation export const metadata = { title: "Book Discount Explanation", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/27/2025", }; Given: - Original price of math book = - Price of math book after discount = - Original price of biology book = We need to find the percentage of the price to be paid (price after discount) relative to the original price. Let's find this ratio. Based on the math book price: Simplify the fraction: Or as a percentage: This means the price on that day is of the original price. Now, we calculate the price of the biology book using the same percentage: So, the price of the biology book on that day is rupiah. ---