Question 1131408
----
Today there are 300 bees in a colony. The population of the colony grows exponentially, doubling every 11 days. 
----


{{{A=p(b)^x}}}
<pre>
p, initial population
A, final population
b, factor of 2 for doubling
x, period of time for doubling
</pre>

{{{system(x=t/11,b=2)}}}


{{{highlight(A=p*2^(t/11))}}}