Difficulty: Medium
Correct Answer: 512
Explanation:
Given data
Concept / Approach
Step-by-step calculation
T/(n/2) = 16 ⇒ 2T/n = 16 ⇒ T = 8nBut also T = n^2/8 ⇒ n^2/8 = 8nn^2 = 64n ⇒ n = 64 (n > 0)T = 8n = 8 × 64 = 512
Verification
Original per-child = n/8 = 64/8 = 8; 64 children × 8 = 512 ✔With n/2 = 32 children: 512/32 = 16 each ✔
Final Answer
512
Discussion & Comments