# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-6/16 Exercises: Try Out - Set 6: Real exam simulation to sharpen your skills and build confidence. - Problem 16 --- ## Exercise 16 ### Question export const metadata = { title: "Problem 16", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; To complete the construction of a building, people are needed to work for days. However, the building owner wants the building to be finished in weeks. To finish exactly as desired by the building owner, ... additional workers are needed. ### Choices - [ ] $$30$$ - [ ] $$25$$ - [ ] $$20$$ - [ ] $$15$$ - [x] $$10$$ ### Answer & Explanation export const metadata = { title: "Solution to Problem 16", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; This problem involves inverse proportion. If the number of workers increases, the time required decreases, and vice versa. Given: * people can complete the work in days. * The work is desired to be completed in weeks days. Let be the total number of workers needed to complete the work in days. So, a total of workers are needed. The question asks for the **additional** workers. The initial number of workers is . Thus, additional workers are needed. ---