This page is part of the QFin learning project — an independent set of study notes on Quantitative Finance. For educational purposes only. Nothing on this page constitutes financial, investment, legal, or tax advice.
Quantitative finance (commonly abbreviated as QFin) is the discipline of applying mathematics, statistics, and computation to understand and solve problems in finance. Where traditional finance often relies on qualitative judgment, quantitative finance seeks to answer three core questions with models and data:
You may have encountered related terms — “quantitative investing,” “financial engineering,” “computational finance.” They overlap heavily with quantitative finance, differing mainly in emphasis: financial engineering leans toward product design, computational finance toward numerical implementation, and quantitative investing toward trading strategy.
As a formalized field, quantitative finance took shape in the mid-to-late 20th century:
Common mathematical tools in quantitative finance:
| Tool | Application in Finance |
|---|---|
| Calculus & Stochastic Calculus | Derivatives pricing (e.g., Itô’s Lemma) |
| Linear Algebra | Portfolio optimization, Principal Component Analysis (PCA) |
| Probability & Stochastic Processes | Price path modeling (e.g., Brownian motion) |
| Partial Differential Equations | Solving pricing equations (e.g., Black-Scholes) |
The typical quantitative research toolchain: Python (pandas, NumPy, scikit-learn) for research and backtesting, C++ for high-frequency/low-latency systems, R for statistical analysis, SQL for data management. In recent years, machine learning frameworks (PyTorch, TensorFlow) have become standard for factor mining and signal prediction.
A minimal example of how quantitative finance works. An option’s value depends on the uncertain future price of an underlying asset. The key insight of the Black-Scholes model: under a no-arbitrage assumption, one can construct a portfolio of the underlying asset and a risk-free asset that perfectly replicates the option’s payoff — and the cost of that replicating portfolio is the option’s fair price.
This reflects the quantitative finance mindset: transform “what is the value?” into “construct an equivalent,” then prove the equivalence mathematically. This is known as no-arbitrage pricing, one of the cornerstones of modern finance.
Disclaimer: This page consists of personal study notes. It does not constitute investment, legal, or tax advice. Markets involve risk; independent judgment is advised.