I would like to produce $R$ items in the shortest amount of time possible. For the sake of a visual, call these items bottles of carrot juice.
Let $t_1$ be the time to purchase and set up a blender to produce units of carrot juice. However, the blenders work less efficiently over time, and importantly, we can only one run blender after another. We can characterize this by saying that, to produce $x$ units of juice with a single blender, it takes time:
$f(x) = a + b*x + c*x^2$
Where $(a,b,c)$ are positive real numbers.
Provided a value for the number of units of juice $T$ we wish to produce, is there a closed-form optimal solution for the number of blenders we should bother setting up?
To get started, let's express the time to produce the $R$ items given the number of blenders which must be run sequentially $Q$, as $Q*t_1 + \frac{R}{Q}f(\frac{R}{Q}) = Q*t_1 + a + b(\frac{R}{Q})+c(\frac{R}{Q})^2$.
In response to Joriki's comment - please note that the $Q*t_1$ term in the above expression is the time cost with setting up the $Q$ blenders. Please also note my error in originally writing $\frac{Q}{R}*t_1$ instead of the correct term $Q*t_1$ as the cost to set up the $Q$ blenders. This, I suspect, was the cause of the trouble.