Quantitative finance is the discipline that applies mathematics, statistics and computer science to financial markets. It is what sits behind the price of an interest-rate swap, the capital a bank has to hold against its trading book, and the decision by a systematic fund to buy one basket of stocks and sell another. If you have ever wondered what a “quant” actually does all day, this article is the plain-English version.

A working definition
Most financial questions come down to one of three things: what is this worth, how much can I lose, and what should I do next. Quantitative finance is the attempt to answer those three questions with models rather than intuition.
The distinguishing feature is not that numbers are involved — accounting is full of numbers. It is that the answers are produced by an explicit mathematical model of uncertainty. A quant does not say “this option looks expensive.” A quant says “under these assumptions about volatility and interest rates, the fair value is 4.12, the market is at 4.60, and here is what has to be true for that gap to be real.”
Where the field came from
The intellectual roots go back further than most people expect. Louis Bachelier modelled stock prices as a random walk in his 1900 doctoral thesis, five years before Einstein described Brownian motion in physics. Harry Markowitz formalised portfolio diversification as a mathematical optimisation problem in 1952. But the field became an industry in 1973, when Fischer Black, Myron Scholes and Robert Merton published a closed-form formula for pricing options — in the same year the Chicago Board Options Exchange opened for business.
That coincidence mattered. Suddenly there was a tradable market and a formula to price it, and banks needed people who understood both. Physicists and mathematicians started arriving on trading floors, and the derivatives business grew around them through the 1980s and 1990s. The 2008 crisis then reshaped the field again, shifting a large share of quant headcount from pricing exotic products toward risk, capital and regulation — a rebalancing that is still visible in hiring today.
The three domains where quants work
1. Pricing and hedging (sell side)
Banks sell derivatives to clients: an exporter hedging currency exposure, a corporate fixing its floating-rate debt, an insurer buying protection. Each of these instruments has to be priced, and the bank’s own exposure has to be hedged so it earns a spread rather than taking a directional bet.
The core insight of modern pricing theory is replication. If you can construct a portfolio of simpler instruments that reproduces the payoff of a complex one in every future state of the world, then the complex instrument must cost the same as that portfolio — otherwise a risk-free arbitrage exists. Everything from Black-Scholes to a Monte Carlo engine pricing a callable structured note is an elaboration on that idea.
2. Risk management
Risk quants answer the “how much can I lose” question, at several levels of severity:
- Market risk — how the trading book behaves when rates, equities, FX or commodities move. Value-at-Risk, Expected Shortfall, stress testing.
- Credit risk — probability of default, loss given default, exposure at default. This is where most bank-side quant work in emerging markets concentrates, particularly around IFRS 9 expected credit loss and Basel capital models.
- Counterparty and valuation adjustments — the XVA family (CVA, DVA, FVA and relatives), which price the fact that the party on the other side of your derivative might not pay.
- Model risk — the meta-discipline of validating that the other models are fit for purpose. An entire independent function in most large banks.
3. Systematic trading and investment (buy side)
Here the question is “what should I do next.” Researchers look for statistical regularities in market data — a signal — and turn them into positions, sized by a portfolio construction layer and executed by algorithms that try to minimise market impact. This is the domain of statistical arbitrage, factor investing, market making and high-frequency trading.
The economics differ sharply from the sell side. Pricing quants are paid to be accurate; trading researchers are paid to be right more often than they are wrong, after costs, on capital that is genuinely at risk.
The toolkit
A serious practitioner draws on four areas, and weak spots in any of them show up quickly.
- Probability and stochastic calculus. Random variables, conditional expectation, martingales, Brownian motion, Itô’s lemma. This is the language continuous-time pricing is written in.
- Statistics and econometrics. Estimation, hypothesis testing, time series, and — most importantly — a working understanding of overfitting. Financial data is short, noisy and non-stationary, which is a hostile environment for anyone used to clean datasets.
- Numerical methods. Monte Carlo simulation, finite difference schemes for PDEs, numerical optimisation, root finding. Very few real problems have closed-form solutions.
- Programming. Python for research and prototyping (NumPy, pandas, SciPy), C++ where latency or performance matters, SQL for data, and increasingly Rust in new low-latency stacks.
Underneath all of it sits domain knowledge. Knowing that a bond’s coupon accrues on a particular day count convention, or that a swap curve is bootstrapped from specific market instruments, is not glamorous, but a model built without it produces confident nonsense.
A concrete example
Suppose you are asked what a one-year call option on a stock is worth. The naive approach is to forecast the stock price and average the payoff. The quantitative approach reframes the problem: build a portfolio of the stock and cash that, continuously rebalanced, reproduces the option’s payoff exactly. Under that construction the option’s value turns out not to depend on your forecast of the stock’s return at all. It depends on volatility, the risk-free rate, the strike and the time remaining.
That result is counterintuitive the first time you meet it, and it is the single most important idea in derivatives pricing. It also carries a warning that took the industry decades to internalise: the conclusion holds only under the model’s assumptions — continuous trading, no transaction costs, known and constant volatility. Every one of those is false in practice. The formula remains useful, but as a language for quoting prices rather than a description of reality.
Four career tracks
- Desk quant — sits with traders, builds and calibrates pricing models, responds to live business needs. Fast-paced, commercially exposed.
- Model validation / risk quant — independently reviews models, owns risk and capital methodology. More regulatory contact, more writing, better hours.
- Quant researcher — buy-side signal research and strategy development. Closest to a scientific research role, and the hardest to enter.
- Quant developer — builds the libraries, pricing engines and data infrastructure everything else runs on. Software engineering with financial domain depth, and consistently in demand.
How to start
If you are coming from a technology or banking background rather than a mathematics PhD, a workable sequence looks like this:
- Shore up the mathematics. Linear algebra, calculus, and a genuine probability course — not a formula sheet. This is the step most people skip and later regret.
- Learn the instruments. What a forward, future, swap and option actually are, and how each one settles. John Hull’s Options, Futures, and Other Derivatives is the standard reference for a reason.
- Build something small and end-to-end. Price a European option three ways — analytically, by binomial tree, and by Monte Carlo — and reconcile the answers. Then bootstrap a yield curve from real market quotes. You learn more from one working implementation than from three textbooks.
- Backtest honestly. If you move toward trading research, treat survivorship bias, look-ahead bias and transaction costs as first-class concerns. A backtest that looks excellent is usually broken rather than brilliant.
- Read the failures. LTCM, the 2007 quant quake, the London Whale. Each is a lesson in what happens when model assumptions and market reality diverge under leverage.
What models cannot do
Quantitative finance is at its strongest in relative pricing — valuing one instrument consistently against others that already trade. It is much weaker at prediction, and weakest of all at describing rare events. Financial returns have fat tails, correlations converge toward one exactly when diversification is most needed, and the act of trading a model changes the market the model describes.
The practitioners who last treat models as structured arguments about uncertainty rather than as truth. The mathematics is genuinely powerful; the judgement about when to trust it is what separates a good quant from a dangerous one.
Where this series goes next
This post is deliberately a map rather than a manual. Upcoming articles will go deeper into individual areas — building a yield curve from market instruments, the intuition behind Itô’s lemma without the measure theory, and what an expected credit loss model looks like in practice for a Vietnamese bank.
If there is a topic you would like covered first, leave a comment.