So, I'm trying to bet on a number of odds on the same game that I think are likely and expect a return of minimum the total amount betted
The problem looks like this: let's say I have just 3 odds: 8, 9 and 13. So naturally I'll have 3 bets $B_1$, $B_2$, $B_3$
That makes $8*B_1 = W_1, 9*B_2 = W_2, 13*B_3 = W_3$. Total amount: $T = B_1 + B_2 + B_3$ Minimum amount that I have to win is the minimum between $W_1$, $W_2$ and $W_3$
Right now I just put this into an excel file and just modify the $B_1$, $B_2$, $B_3$ until I get it right or until I get tired.
I want to use something to solve this, but I don't know which steps I should take. I'm not the brightest marble
If you want to have equal winnings no matter which you win, you should bet some amount on $B1$, then $\frac 89$ of that amount on $B2$ and $\frac 8{13}$ of that amount on $B3$. Is that what you are asking?