Start with $n\geq 4$ bacteria.
At each round i.e. turn, you get to choose how many bacteria go left; the remaining bacteria must go right. Each bacteria either dies, or, survives and reproduces creating another healthy bacteria, depending on whether it goes left or right (assume bacteria do not overlap or any other shenanigans). In other words, either left is certain death (for all the bacteria who go left) and right is certain reproduction (for all the bacteria who go right), or right is certain death (for all the bacteria who go right) and left is certain reproduction (for all the bacteria who go left). Each scenario has a $50$% chance of happening each round/turn, independently of all other rounds/turns.
What is the best or approximately the best strategy to maximise the likelihood that there are $k>n$ bacteria at the end of $t$ rounds/turns?
[The "left or right" is arbitrary. I could also say "Either goes through door $1$ or door $2$", or any other binary decision.]
For example, Start with $n=1000$ bacteria, and let $A_j$ be the number of bacteria at the $j$-th turn. We want to maximise the chance that there are at least $k=10,000$ bacteria by the $50$th round/turn, i.e. maximise the chance that $A_{50}\geq 10,000.$
A strategy that is guaranteed to fail is to make $500$ go left and $500$ go right for every round/turn, for then the population will always be $0 + 500\times 2 = 1000,$ contrary to our aim of reaching a population of $10,000.$
We are better off taking some risk in the first round/turn, for example make $550$ go left and $450$ go right. Then there is a $50$% chance we increase the population up to $0 + 550\times 2 = 1100,$ and we are closer to our goal of $10,000.$ On the other hand, there is a $50$% chance we decrease the population to $450\times 2 + 0 = 900,$ taking us further away from our goal.
Obviously in order to risk increasing the bacteria population, you must risk reducing the number of bacteria by the same amount (I guess it's a zero sum game), and since we only care about reaching $10,000$ bacteria in total, all possible strategies have a high probability of failure.
My suspicion is that either all strategies that try to be successful have the same likelihood of working, or, the best strategy is something like: Send $0.45A_t$ bacteria left and the remaining $0.55A_t$ right at every round/turn. But maybe sending all bacteria left for three rounds/turns until there are $8,000,$ (with $12.5$% probability) and then doing something like in the second half of the previous sentence for up to $10,000?$
Edit: maybe we require Markov chains to help, although I have not studied the topic of Markov chains before.
Here are two ways to see that your suspicion that all strategies have the same success probability is essentially correct.
Backward induction
In the last step $t$, you want to end up with at least $k$ bacteria. If you already have at least $k$ bacteria, you can send $\frac k2$ bacteria in both directions, and you’re guaranteed to again have $k$ bacteria, so the success probability is $p_t=1$. If you have at least $\frac k2$ bacteria, you can send $\frac k2$ in one direction, so the success probability is $p_t=\frac12$.
In the penultimate step, if you already have at least $k$ bacteria, you can send $\frac k2$ in both directions to get $p_t=1$ with probability $1$, so $p_{t-1}=1$. If you have at least $\frac{3k}4$ bacteria, you can send $\frac k2$ in one direction and $\frac k4$ in the other to get $p_t=1$ with probability $\frac12$ and $p_t=\frac12$ with probability $\frac12$, so $p_{t-1}=\frac12\cdot1+\frac12\cdot\frac12=\frac34$. If you have at least $\frac k2$ bacteria, you have two different strategies that achieve the same probability: Either you send $\frac k2$ bacteria in one direction to get $p_t=1$ with probability $\frac12$, or you send $\frac k4$ bacteria in both directions to get $p_t=\frac12$ with probability $1$. In either case, $p_{t-1}=\frac12$. And finally, if you have at least $\frac k4$ bacteria, you can send $\frac k4$ bacteria in one direction to get $p_t=\frac12$ with probability $\frac12$, so $p_{t-1}=\frac12\cdot\frac12=\frac14$.
To summarize, in the penultimate step, if you have at least $\frac s4\cdot k$ bacteria, with $0\le s\le 4$, you can achieve $p_t=\frac s4$. Continuing like this, you can see that if you have at least $\frac s{2^j}\cdot k$ bacteria in step $t-j+1$, then you can achieve $p_t=\frac s{2^j}$. If $2^j\gt k$, these successive subdivisions become so fine-grained that up to some rounding your initial success probability is $\frac nk$ (since you initially have $\frac nk\cdot k=n$ bacteria).
Random walk
You can view this as a random walk in which you decide the step size in each turn: If you split your bacteria evenly, you’re certain to have the same number next turn, so the step size is $0$; if you split them unevenly, say, into groups of $\frac n2+\frac\Delta2$ and $\frac n2-\frac\Delta2$, then you’ll have either $n+\Delta$ or $n-\Delta$ next turn, so you’ve taken a random step of size $\Delta$.
In a simple random walk with constant step size, it can be shown that if you start between two boundaries, the probabilities of reaching the boundaries are in inverse proportion to the distances to the boundaries. As long as the step size is such that you’ll exactly hit the boundaries, this result is independent of the step size. Since step sizes that might get you beyond $k$ bacteria are wasteful (there’s no benefit to ever having more than $k$, since you can stay at $k$ with certainty by splitting them evenly, again ignoring rounding), and since it’s impossible to overshoot the other boundary at $0$ bacteria, optimal step sizes will always hit the boundaries exactly. Since all random walks with constant step sizes have probability $\frac nk$ of hitting the upper boundary, it stands to reason that this will also hold for random walks with varying step sizes, and this is indeed the case, since
$$ \frac12\cdot\frac{\frac n2+\frac\Delta2}k+\frac12\cdot\frac{\frac n2-\frac\Delta2}k=\frac nk $$
in each step and $\frac nk$ also takes the correct boundaries values for the probability, $\frac0k=0$ and $\frac kk=1$.