Glossary
Probability & StatisticsBeginner7 min read

Expected Value

Expected value (EV) is the long-run average outcome of a random process, calculated by multiplying each possible outcome by its probability and summing the results. In quantitative trading, expected value is the core decision-making framework: a trade is worth taking if and only if its expected value is positive after accounting for transaction costs and risk.

What Is Expected Value?

Expected value (EV) is the single most important concept in quantitative finance and probability theory. It is the probability-weighted average of all possible outcomes β€” the number you would converge to if you could repeat the same random event an infinite number of times.

The concept is intuitive. If you flip a fair coin and win $10 on heads but lose $6 on tails, the expected value is:

EV = 0.5 × $10 + 0.5 × (-$6) = $5 - $3 = +$2

On average, you make $2 per flip. You won't make exactly $2 on any individual flip β€” you'll either gain $10 or lose $6 β€” but over hundreds of flips, your average gain will converge to $2. This convergence is guaranteed by the Law of Large Numbers.

In trading, every decision can be framed as an expected value calculation. Should you take a position? What is the expected profit of a trade after accounting for the probability of winning, the magnitude of wins and losses, and transaction costs? Quant traders think in terms of EV constantly β€” it is the lens through which every opportunity is evaluated.

The Formula

For a discrete random variable X with possible outcomes x1, x2, ..., xn and corresponding probabilities p1, p2, ..., pn:

E[X] = ∑ pi × xi = p1x1 + p2x2 + ... + pnxn

For a continuous random variable with probability density function f(x):

E[X] = ∫ x · f(x) dx

Key properties of expected value:

  • Linearity: E[aX + bY] = aE[X] + bE[Y]. This holds even if X and Y are dependent β€” an extremely useful property.
  • Constants: E[c] = c. The expected value of a constant is itself.
  • Indicator variables: E[1A] = P(A). The expected value of an indicator equals the probability of the event.
  • Products of independent variables: If X and Y are independent, E[XY] = E[X]E[Y].

Linearity of expectation is one of the most powerful tools in probability β€” it allows you to break complex problems into simpler pieces. For example, the expected number of fixed points in a random permutation of n items is simply n × (1/n) = 1, by linearity, regardless of the complex dependencies between positions.

Get free quant interview prep resources

Mock interviews, resume guides, and 500+ practice questions β€” straight to your inbox.

Worked Examples

Example 1 β€” Trading decision:

You're considering a trade with a 60% chance of making $500 and a 40% chance of losing $400. Transaction costs are $20.

EV = 0.60 × $500 + 0.40 × (-$400) - $20 = $300 - $160 - $20 = +$120

The trade has positive expected value, so it's worth taking (assuming you can handle the variance).

Example 2 β€” The St. Petersburg paradox:

A casino offers a game: flip a fair coin until it lands tails. If tails appears on flip n, you win $2n. So: heads-tails pays $4, heads-heads-tails pays $8, etc. How much would you pay to play?

EV = ∑n=1 (1/2n) × 2n = ∑ 1 =

The expected value is infinite! Yet no rational person would pay $1,000 to play. This paradox illustrates that expected value alone is insufficient for decision-making β€” you must also consider variance and the diminishing utility of wealth. The Kelly criterion resolves this by maximizing the expected logarithm of wealth rather than expected wealth.

Example 3 β€” Interview-style question:

You roll two fair dice. What is the expected value of their sum?

By linearity: E[D1 + D2] = E[D1] + E[D2] = 3.5 + 3.5 = 7

Want personalized guidance from a quant?

Speak with a quant trader or researcher who’s worked at a top firm.

Book a Free Consult

Expected Value in Quant Trading

Expected value is the foundation of every trading decision at a quant firm:

  • Trade evaluation: Before entering any trade, a quant trader estimates the EV. If the expected profit minus all costs (spread, market impact, commissions) is positive, the trade is worth considering. If negative, it's not.
  • Market making: A market maker who quotes a bid-ask spread implicitly calculates the EV of each quote. The spread revenue per trade must exceed the expected adverse selection cost.
  • Interview questions: EV problems are among the most common in quant interviews. You might be asked: "I offer you a game where you flip a coin and I pay you $1 for each head in a row before the first tail. How much would you pay to play?" (Answer: EV = ∑ n × (1/2)n+1 = 1).
  • Strategy design: Systematic strategies are designed to have positive EV on each trade. The Law of Large Numbers ensures that over thousands of trades, the actual P&L converges to the expected P&L β€” which is why high-frequency strategies with tiny per-trade EV but enormous trade counts can be highly profitable.
  • Position sizing: EV tells you whether to trade; the Kelly criterion tells you how much to trade based on both EV and variance.

Key Formulas

Expected value for a discrete random variable: the sum of each outcome multiplied by its probability.

Linearity of expectation β€” holds regardless of whether X and Y are independent. One of the most powerful tools in probability.

Key Takeaways

  • Expected value is computed by multiplying each possible outcome by its probability and summing: E[X] = sum of p_i * x_i.
  • A positive expected value (+EV) trade is one that makes money on average over many repetitions β€” this is the fundamental criterion for whether a trade is worth taking.
  • The Law of Large Numbers guarantees that the average result converges to the expected value over many trials, which is why systematic trading works.
  • Expected value alone doesn't account for risk β€” the Kelly criterion extends EV thinking to include position sizing and variance.
  • EV calculations are the most commonly tested probability concept in quant trading interviews.

Why This Matters for Quant Careers

Expected value is tested in virtually every quant trading interview. Firms like Jane Street, SIG, Optiver, and Citadel use EV problems to assess whether candidates think probabilistically. Mastering EV calculations β€” including conditional expectations and linearity of expectation β€” is non-negotiable for quant roles.

See our Jane Street interview questions for real EV problems. Book a free consultation to assess your probability readiness.

Frequently Asked Questions

What does positive expected value mean in trading?

A trade with positive expected value (positive EV or +EV) means that, on average, you make money if you repeat the trade many times. It means the probability-weighted gains exceed the probability-weighted losses plus transaction costs. In quant trading, only +EV trades are worth taking. However, +EV is necessary but not sufficient β€” you also need to consider variance, tail risk, and position sizing.

Is expected value the same as average?

Expected value is the theoretical long-run average β€” what you'd get if you could repeat the process infinitely. The sample average (mean of observed results) converges to the expected value as the sample size grows, by the Law of Large Numbers. For small samples, the average can deviate significantly from the expected value due to randomness.

Why is linearity of expectation important?

Linearity of expectation β€” E[X+Y] = E[X] + E[Y] regardless of dependence β€” is incredibly powerful because it allows you to break complex problems into simple pieces. For example, the expected number of 'heads' in 100 coin flips is simply 100 Γ— 0.5 = 50, even though the individual flips are random. This property makes many seemingly hard probability problems tractable and is heavily tested in quant interviews.

How is expected value used in options trading?

In options trading, the fair price of an option under risk-neutral pricing is the expected value of its discounted payoff. For a call option: C = e^(-rT) Γ— E[max(S_T - K, 0)]. Options market makers use expected value to determine fair quotes and to evaluate whether the market price of an option offers a profitable trading opportunity relative to their model's expected value.

Master These Concepts for Quant Interviews

Our bootcamp covers probability, statistics, trading intuition, and 500+ real interview questions from top quant firms.

Book a Free Consult