In regular tic tac toe, both the players get alternate chances. This is a variant of that.
Player $A$ has $\$x$ amount and player $B$ has $\$y$ amount as initial balance. Assume that $y>x$.
Both the players bid some amount from the available amount to them. whichever bids higher will get the turn to put a mark on the board and the winner for that bid has to subtract the bidding amount from his/her available balance.
Player $A$ does not know the bidding amount of player $B$ and vice versa but a referee is there who will announce the remaining balance amount of each player after each move. Both the players know initial amount of each other.
Bidding can be done in fractions also.
For example:
Player $A$ is having $\$100$ and player $B$ is having $\$300.99$.
Player $A$ bids $\$40$ and player $B$ bids $\$100.33$. Player $B$ wins and puts a mark on the board. Player $A$ is left with $\$100$ and player $B$ is left with $\$200.66$ after this move.
Both the players are playing the same bidding amount in next two rounds and ultimately player $B$ wins.
The question: It is clear that if Player $B$ has $y>3x$ amount then he/she can surely win. What is the minimum amount of player $B$ (minimum $y$) such that he/she can develop a strategy where he/she always wins. Can we model this problem to any knows techniques of optimization?
I have tried the problem and pulled down the ratio of $y:x$ from $3 + \epsilon:1$ to $\frac{33}{28} + \epsilon :1$.
I don't know under which tag should I ask this questions so I am putting multiple tags.
Edit: If both the players tie in bidding then they re-bid until they come up with different bidding amounts. Ans since bidding amount is a real number, it is unlikely that will bid same amount in consecutive moves.
The paper by Develin and Payne referenced in the comments gives a very thorough treatment of this type of game, and in particular addresses the complicated nuances of breaking ties that arise during the bidding. However, in the Richman games they treat, the winning bid is given to the other player... this problem is slightly different. Glossing over the nuances of tied bids, we can see the following. (Assume that $B$ has one unit to bid with, and that both players will bid and play optimally.)
We see two constraints on a winning bid for player $A$. First, $y \le x - x(G_A)$ for some state $G_A$ that player $A$ can move to; i.e., $y \le x - \min_{G_A} x(G_A)$. Second, either $y \ge 1$ (so player $B$ can't outbid it), or else $y\ge 1 - x / x(G_B)$ for all states $G_B$ that player $B$ can move to; i.e., $y \ge 1 - x / \max_{G_B} x(G_B)$. The latter constraint is never stronger than the former, so we have: $$ 1-x/\max_{G_B}x(G_B) \le y \le x-\min_{G_A}x(G_A). $$ This interval of winning bids shrinks as $x$ decreases, and vanishes (by definition) when $x=x(G)$. So setting the two endpoints equal to one another lets us solve for $x(G)$: $$ 1-x(G)/\max_{G_B}x(G_B) = x(G)-\min_{G_A}x(G_A) \implies x(G)=\frac{1+\min_{G_A}x(G_A)}{1+1/\max_{G_B}x(G_B)}. $$
At this point we can calculate. I'm pasting Python code to evaluate this recursion below. The result that I get for Tic-Tac-Toe is $x(G_0)\approx 1.018375$. I have modified the code to give an exact (rational) result (code not shown here, as it's not worth the extra space): it is $$x(G_0)=\frac{396925}{389763}=1+\frac{7162}{389763}.$$