← AkunaCapital Interview Insights
The math itself isn't bad once you write it out.
First, clarify the betting terminology: fair decimal odds of 1/p mean that a successful $1 stake returns 1/p (including the original stake), so net profit is (1/p) - 1. To achieve a net profit of $1000, set stake * ((1/p) - 1) = 1000, giving stake = 1000 * p / (1 - p). Then handle edge cases: if p <= 0 or p >= 1, the odds are invalid; if p = 0.5, stake = $1000; if p > 0.5, stake < $1000; if p < 0.5, stake > $1000.
Pro tip: Explicitly state your assumptions about the odds convention (decimal odds include stake) and validate p before computing; this shows attention to detail and prevents off-by-one errors in a trading context.
Confirm that 'fair decimal odds' of 1/p means a winning $1 stake returns 1/p, so net profit per dollar is (1/p) - 1.
Set up the equation: stake * ((1/p) - 1) = 1000, then solve for stake = 1000 * p / (1 - p).
Check that 0 < p < 1; if p <= 0 or p >= 1, the odds are invalid (division by zero or negative odds). Also consider p = 0.5 as a sanity check.
Plug in p to compute the stake, then verify that a win yields exactly $1000 net profit by checking stake * ((1/p) - 1) = 1000.
AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.