Bunuel
Each cell of type X divides into a certain number of X-cells every hour. Each Type Y cell also divides into a constant number of Y-cells every hour, but not necessarily at the same rate as X. At a certain time, container A contained 10,000 X-cells and container B contained 10,000 Y-cells. After one hour, there were 30,000 more X-cells in container A than Y-cells in container B. After another hour, there were 330,000 more X-cells than Y-cells. What is the division rate per hour for the X-cells?
(A) 4
(B) 5
(C) 6
(D) 7
(E) 8
Let the division rate per hour for the X-cells be x and the division rate per hour for the Y-cells be y.
Initially:X-cells = 10,000 and y-cells = 10,000.
After 1 hour:X-cells = \(10,000x\) and y-cells = \(10,000y\).
\(10,000x - 10,000y = 30,000\) --> \(x - y = 3\).
After 2 hour:X-cells = 10,000x^2 and y-cells = 10,000y^2.
\(10,000x^2 - 10,000y^2 = 330,000\) --> \((x - y)(x+y) = 33\).
Since \(x - y = 3\), then \(3(x+y) = 33\) --> \(x+y = 11\). Add this to \(x - y = 3\): \(2x=14\) --> \(x=7\).
Answer: D.
Hope it's clear.