# Black-Scholes Option Pricing Calculator

Calculate European call and put option values along with Delta, Gamma, Theta, Vega, and Rho using the Black-Scholes model.

---

- **Canonical URL:** https://dothecalculation.com/calculators/option-pricing-black-scholes-calculator
- **Category:** Financial calculators
- **Publisher:** Do The Calculation (https://dothecalculation.com)
- **Cost:** Free, no account or sign-up required
- **Privacy:** Runs entirely in the browser; inputs are never sent to a server
- **Methodology:** https://dothecalculation.com/methodology

---

## Black-Scholes Option Pricing & Greeks Calculator

Calculate European call and put option values, along with primary risk sensitivities (Delta, Gamma, Vega, Theta, Rho) using the Black-Scholes model.

- High-accuracy pricing engine
- Real-time Greeks output (Delta, Gamma, Vega, Theta, Rho)
- Interactive parameter sensitivity modeling

## The Black-Scholes-Merton Model

The Black-Scholes-Merton model is a landmark mathematical formula used to estimate the fair market value of European-style options. Published in 1973, the model assumes that stock prices follow a geometric Brownian motion with constant volatility and a lognormal distribution.

The formula takes five primary inputs: the underlying asset price, the strike price of the option, the time to expiration, the risk-free interest rate, and the asset's volatility. It assumes no transaction costs, constant interest rates, and no dividend payments (though standard extensions adjust for dividends).

## How to Use This Calculator

Enter the current stock price, the option's strike price, time to expiration (in years), the risk-free interest rate, and the underlying asset's annualized volatility.

The calculator returns the fair-value call and put prices along with the full set of Greeks (Delta, Gamma, Vega, Theta, Rho) for both option types, letting you see price and risk sensitivity in one view.

## Worked Example: $100 Stock, $95 Strike, 6-Month Expiration

Stock price $100, strike price $95, time to expiration 0.5 years (6 months), risk-free rate 4.5%, volatility 25%.

Call option price: ≈ $10.93. Put option price: ≈ $3.82. The call is worth more than the put here because the stock price ($100) is already above the strike ($95), giving the call intrinsic value the put lacks.

Call Delta: ≈ 0.6935 — a $1 move in the stock price moves the call price by roughly $0.69. Put Delta: ≈ −0.3065, moving in the opposite direction as expected.

Gamma: ≈ 0.0199 (identical for the call and put) — Delta itself shifts by about 0.02 for every $1 move in the stock price.

Vega: ≈ 0.2482 — a 1 percentage-point rise in volatility (e.g., 25% to 26%) increases both the call and put price by roughly $0.25.

Rho: ≈ 0.2921 for the call and ≈ −0.1723 for the put, showing the call gains value and the put loses value as interest rates rise.

## The Mathematical Formulas for Call and Put Options

The Black-Scholes formulas for European call option value \(C\) and put option value \(P\) are:

$$C = S_0 N(d_1) - K e^{-r T} N(d_2)$$

$$P = K e^{-r T} N(-d_2) - S_0 N(-d_1)$$

Where:

$$d_1 = \frac{\ln(S_0 / K) + (r + \sigma^2 / 2) T}{\sigma \sqrt{T}}$$

$$d_2 = d_1 - \sigma \sqrt{T}$$

And:

* \(S_0\) is the current spot price of the underlying asset.

* \(K\) is the option strike price.

* \(r\) is the risk-free interest rate (annualized).

* \(T\) is the time to expiration in years.

* \(\sigma\) is the annualized volatility of the asset returns.

* \(N(x)\) is the cumulative standard normal distribution function.

## Understanding the Option Greeks

Option Greeks measure the sensitivity of the option's price to changes in the underlying model parameters. They are essential tools for hedging and risk management:

**Delta (\(\Delta\))**: The rate of change of the option price with respect to changes in the underlying stock price. Call Delta ranges from 0 to 1, while Put Delta ranges from -1 to 0.

**Gamma (\(\Gamma\))**: The rate of change of Delta with respect to changes in the underlying stock price. Gamma is highest for at-the-money options.

**Vega (\(\nu\))**: The sensitivity of the option price to changes in the volatility of the underlying asset. Vega is identical for both call and put options.

**Theta (\(\theta\))**: The sensitivity of the option price to the passage of time (time decay). Theta is typically negative, reflecting that options lose value as expiration approaches.

**Rho (\(\rho\))**: The sensitivity of the option price to changes in the risk-free interest rate.

## Related Calculators

To evaluate a completed options or stock trade's realized profitability, use the [stock profit calculator](/calculators/stock-profit-calculator), or benchmark the position's risk against its return with the [risk-adjusted return calculator](/calculators/risk-adjusted-return-calculator).

## Frequently asked questions

### What is the cumulative normal distribution function N(x)?

N(x) represents the probability that a random variable from a standard normal distribution is less than or equal to x. In the call formula, N(d2) is the risk-adjusted probability that the option will expire in-the-money.

### Why is volatility so important in option pricing?

Volatility measures the size of price movements in the underlying stock. Higher volatility increases the probability that the stock price will exceed the strike price, making both call and put options more valuable.

### What is the risk-free rate in Black-Scholes?

The risk-free rate is the theoretical return on an investment with zero risk, typically represented by government bonds (e.g., US Treasury bills) matching the term of the option.

### What is the difference between historical and implied volatility?

Historical volatility measures the actual price fluctuations of a stock in the past. Implied volatility is the volatility back-calculated from current market option prices, reflecting the market's future expectations.

### What does delta tell us about option probability?

While not mathematically exact, traders often use Delta as a rough proxy for the probability that the option will expire in-the-money. For example, a 0.30 Delta option has roughly a 30% chance of expiring in-the-money.

### How does time decay impact calls vs. puts?

Theta is negative for both calls and puts, meaning that as days pass, the value of the option decays. Time decay accelerates as the option approaches its expiration date.

### What are European-style options?

European options can only be exercised at the exact expiration date. American options can be exercised at any time before expiration. The Black-Scholes formula is designed specifically for European options.

### What is Gamma?

Gamma measures the acceleration of Delta. A high Gamma means that Delta is highly sensitive to stock price changes, making the option position riskier or more reactive.

### How does a dividend impact option pricing?

Dividends reduce the underlying stock price on the ex-dividend date. This makes call options less valuable and put options more valuable.

### Why is Vega identical for calls and puts?

Both calls and puts benefit from increased volatility because they have limited downside risk but unlimited upside potential. Thus, a rise in volatility increases the price of both call and put contracts by the exact same Vega factor.

## Related concepts

- **Delta Hedging** — A risk management strategy that offsets the directional exposure of an option position.
- **Implied Volatility** — The asset volatility implied by the market price of an option.
- **Time Decay** — The reduction in option value caused by the passage of time.

## Related guides

- [ROI Calculation: Formula, Annualized Return, and Examples](https://dothecalculation.com/blog/business/roi-calculation) — Calculate ROI and annualized return with total costs included, compare opportunities consistently, and understand what a simple ROI result leaves out.
- [Understanding Calculator Formulas: How DTC Turns Inputs into Results](https://dothecalculation.com/blog/site-guides/understanding-calculator-formulas) — Understand how Do The Calculation formulas are presented, what the explanation blocks mean, and how to verify calculator logic before using a result in a real decision.

## Related calculators

- [Real Estate Syndication Waterfall Calculator](https://dothecalculation.com/calculators/real-estate-syndication-calculator) — Analyze real estate syndication sponsor promotes and waterfall distributions across investor IRR hurdle tiers and returns.
- [Risk-Adjusted Return Calculator](https://dothecalculation.com/calculators/risk-adjusted-return-calculator) — Calculate Sharpe, Sortino, Treynor, Jensen Alpha, and Information ratios to evaluate risk-adjusted portfolio performance.
- [ROI Calculator](https://dothecalculation.com/calculators/roi-calculator) — Measure return on investment by calculating gain, loss, and annualized performance for any investment or business decision.
- [Franchise ROI & Payback Calculator](https://dothecalculation.com/calculators/franchise-roi-payback-calculator) — Model multi-year cash flows to calculate return on investment and payback period for a franchise location before you commit to buying one.
- [Compound Interest Calculator](https://dothecalculation.com/calculators/compound-interest-calculator) — Model compound growth of savings or investments with regular deposits, interest rate, and time horizon to project future value.
- [Discounted Cash Flow (DCF) Calculator](https://dothecalculation.com/calculators/corporate-valuation-dcf-calculator) — Estimate a company enterprise and equity value using a multi-year discounted cash flow model with terminal value assumptions.

---

_This tool is for educational purposes only. Mortgage rates, PMI premiums, property valuations, tax assessments, and insurance underwriting details depend on individual credit profiles, local government policies, and lender overlays. Always consult a licensed mortgage broker, financial planner, or tax professional before making property transactions._

---

_Source: [Do The Calculation](https://dothecalculation.com/calculators/option-pricing-black-scholes-calculator). Quote freely with attribution and a link to this page._
