Back to lessons
~10 min
Finance CareersAges 13-17

Quantitative Finance: What It Actually Is

Quantitative finance sits at the intersection of math, computer science, and markets. Here is what quants actually do — and the math behind it.

Reading

0%

Time left

~10 min

Quiz score

0/3

The three types of quants

"Quantitative finance" covers a range of roles. The common thread is using mathematics and programming to make financial decisions. But what that looks like day-to-day varies significantly.

Quant Researcher (Alpha Research) Builds mathematical models to predict price movements or identify mispricings. The job is: can I find a pattern in market data that generates consistent returns? The math used: statistics, probability, linear algebra, time series analysis.

Quant Trader Executes and monitors trading strategies. A quant trader may or may not design the strategy but is responsible for live performance — monitoring for anomalies, adjusting position sizing, and managing risk in real time. Requires both mathematical intuition and fast decision-making.

Quant Developer (Quant Dev) Builds the infrastructure that runs quantitative strategies. Writes the code for trading systems, data pipelines, backtesting engines, and risk systems. Primarily software engineering with deep domain knowledge of finance.

Alpha

In finance, "alpha" means excess return above a market benchmark. A quant researcher's job is to find "alpha" — a systematic signal or edge that generates better-than-market returns. Most edges erode over time as markets become more efficient.

The math you need

Quant finance draws on several areas of mathematics. Here is what matters and why:

Probability and Statistics

  • Why: Almost every quant model is probabilistic. You are never predicting what will happen, only what is likely to happen with what probability.
  • Key concepts: probability distributions, expected value, variance, standard deviation, correlation, regression analysis, hypothesis testing
  • High school starting point: Statistics class + AP Statistics is directly relevant

Linear Algebra

  • Why: Portfolio optimization, risk models, and factor models all use matrix operations. When you have 500 stocks and want to find the combination with the lowest risk, you are solving a linear algebra problem.
  • Key concepts: vectors, matrices, matrix multiplication, eigenvalues, eigenvectors, covariance matrices
  • High school starting point: Precalculus and linear algebra courses or Khan Academy

Calculus (Single and Multivariable)

  • Why: Options pricing (Black-Scholes), continuous-time finance models, and optimization all require calculus.
  • Key concepts: derivatives, integrals, partial derivatives, gradient descent (optimization)
  • High school starting point: AP Calculus AB and BC

Stochastic Calculus (advanced — college/graduate level)

  • Why: Models for how asset prices evolve over time (like the famous Black-Scholes options model) use stochastic differential equations
  • Key concepts: Brownian motion, Itô's lemma, stochastic differential equations
  • This is graduate-level content — no need to worry about it in high school

Real-world example

The Black-Scholes formula, developed in 1973, gives the fair price of a stock option using variables including the stock price, strike price, time to expiry, interest rate, and the stock's volatility. It won the 1997 Nobel Prize in Economics. It is built on partial differential equations and stochastic calculus — which is why quants need serious mathematical training.

Why Python matters for quants

Python has become the dominant language in quantitative finance because:

  1. Libraries built for finance: NumPy (fast numerical computing), Pandas (data analysis), SciPy (scientific computing), statsmodels (statistics), scikit-learn (machine learning)
  2. Speed of development: You can test a new trading idea in a 50-line Python script faster than any other language
  3. Industry standard: Hedge funds, banks, and asset managers all use Python for research; C++ is used for production trading systems

The simplest quant example: A Moving Average

A moving average smooths price data to show trends. Here is the idea:

The 20-day moving average on day T = the average closing price for the 20 trading days ending on day T.

If today's price is above the 20-day moving average, the price has been trending up recently. If it is below, the trend is down. This simple signal is the foundation of many trend-following strategies.

In Python, using the Pandas library, you can compute this with one line: df['MA20'] = df['Close'].rolling(window=20).mean()

That single line takes 20 days of closing prices and computes the rolling average for every row. This is the kind of tool quants use to research trading strategies.

Fun fact

Renaissance Technologies, founded by mathematician Jim Simons, has produced the best risk-adjusted returns of any investment firm in history using purely quantitative strategies. Their Medallion Fund averaged 66% annual gross returns from 1988 to 2018. Simons hired mathematicians, physicists, and computer scientists — not traditional finance people.

Where quants work

  • Hedge funds (Two Sigma, Citadel, Renaissance, D.E. Shaw, AQR) — highest pay, cutting-edge research
  • Proprietary trading firms (Jane Street, Virtu, Susquehanna) — fastest paced, huge bonuses
  • Investment banks (Goldman Sachs, Morgan Stanley, JPMorgan) — strats teams doing pricing models, risk management
  • Asset managers (Blackrock, Vanguard) — quantitative portfolio construction, risk models
  • Tech companies and FinTech — applying quant skills to financial data products

What does a quantitative researcher primarily do at a hedge fund?

Why is linear algebra essential for quantitative portfolio management?

Quantitative finance applies rigorous mathematics — statistics, linear algebra, calculus — to financial markets. Python is the primary research tool. The math is learnable starting in high school, and the career rewards this investment with some of the highest compensation in finance.

What is a 'moving average' in quantitative finance and why is it useful?