# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-5/8 Exercises: Try Out - Set 5: Real exam simulation to sharpen your skills and build confidence. - Problem 8 --- ## Exercise 8 ### Question export const metadata = { title: "Problem 8", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; To complete the construction of a bridge, workers are needed and it is targeted to be finished in days. After days of work, half of the workers stop working. To ensure the bridge construction is completed, additional time of ... days is needed. ### Choices - [ ] $$54$$ - [ ] $$38$$ - [ ] $$28$$ - [ ] $$14$$ - [x] $$19$$ ### Answer & Explanation export const metadata = { title: "Solution to Problem 8", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; We can solve this problem using the concept of inverse proportion or total workload (man-days). #### Calculating Workload The total planned workload is: The work is divided into two phases: 1. First phase: workers work for days. 2. Second phase: Half of the workers stop, so workers remain working for days. The equation is: #### Finding the Value of P We solve the equation above to find (the duration for the remaining project). So, the time needed to complete the remaining work with workers is days. #### Calculating Additional Time Based on the provided solution, the additional time is calculated as the difference between the duration of the remaining work () and the total initial target ( days). Thus, additional days are needed. ---