How to Calculate Discount Rate in Dcf

WACC (Discount Rate) Calculator

Cost of Equity (CAPM)

Cost of Debt & Tax

Cost of Equity (Re): 0.00%
After-tax Cost of Debt: 0.00%
Weighted Average Cost of Capital (WACC): 0.00%

*This WACC serves as the discount rate for your DCF model.*

function calculateDiscountRate() { var E = parseFloat(document.getElementById('equityValue').value) || 0; var D = parseFloat(document.getElementById('debtValue').value) || 0; var rf = parseFloat(document.getElementById('riskFreeRate').value) / 100 || 0; var beta = parseFloat(document.getElementById('betaValue').value) || 0; var mrp = parseFloat(document.getElementById('marketPremium').value) / 100 || 0; var rd_pre = parseFloat(document.getElementById('costOfDebt').value) / 100 || 0; var tax = parseFloat(document.getElementById('taxRate').value) / 100 || 0; if (E + D <= 0) { alert("Total Capital (Equity + Debt) must be greater than zero."); return; } // 1. Cost of Equity (CAPM) var costOfEquity = rf + (beta * mrp); // 2. After-tax Cost of Debt var costOfDebtAfterTax = rd_pre * (1 – tax); // 3. Weights var totalValue = E + D; var weightEquity = E / totalValue; var weightDebt = D / totalValue; // 4. WACC var wacc = (weightEquity * costOfEquity) + (weightDebt * costOfDebtAfterTax); // Display Results document.getElementById('reOutput').innerText = (costOfEquity * 100).toFixed(2) + "%"; document.getElementById('rdOutput').innerText = (costOfDebtAfterTax * 100).toFixed(2) + "%"; document.getElementById('waccOutput').innerText = (wacc * 100).toFixed(2) + "%"; document.getElementById('resultArea').style.display = 'block'; }

Understanding How to Calculate Discount Rate in DCF

In a Discounted Cash Flow (DCF) analysis, the Discount Rate is arguably the most critical variable. It represents the required rate of return that investors expect for providing capital to a business, accounting for the time value of money and the specific risk profile of the company's future cash flows.

To calculate the discount rate for a firm, finance professionals typically use the Weighted Average Cost of Capital (WACC). This metric blends the cost of equity and the cost of debt, weighted by their respective proportions in the company's capital structure.

The WACC Formula

The standard formula used in our calculator above is:

WACC = (E/V × Re) + (D/V × Rd × (1 – T))
  • E: Market Value of Equity
  • D: Market Value of Debt
  • V: Total Value (E + D)
  • Re: Cost of Equity
  • Rd: Cost of Debt
  • T: Marginal Tax Rate

Calculating the Cost of Equity (CAPM)

The Cost of Equity (Re) is usually determined using the Capital Asset Pricing Model (CAPM). It assumes that investors need to be compensated for two things: the time value of money (Risk-Free Rate) and the systematic risk of the stock (Beta).

Formula: Re = Risk-Free Rate + Beta × (Market Risk Premium)

  • Risk-Free Rate: Usually the yield on long-term government bonds (e.g., 10-year Treasury).
  • Beta (β): A measure of how much the stock moves relative to the overall market. A beta > 1 means the stock is more volatile than the market.
  • Market Risk Premium: The additional return investors demand for choosing stocks over risk-free assets.

Why the Tax Shield Matters

Unlike equity, interest payments on debt are often tax-deductible. This "tax shield" reduces the effective cost of debt for the company. That is why we multiply the Cost of Debt (Rd) by (1 - Tax Rate) in the WACC calculation. This adjustment reflects the actual cash outflow the company experiences when servicing its debt.

Example Calculation

Imagine a company with the following profile:

  • Equity Value: $1,000,000
  • Debt Value: $500,000 (Total Value = $1.5M)
  • Risk-Free Rate: 4%
  • Beta: 1.2
  • Market Premium: 6%
  • Pre-tax Cost of Debt: 5%
  • Tax Rate: 20%

Step 1: Cost of Equity = 4% + (1.2 * 6%) = 11.2%
Step 2: After-tax Debt = 5% * (1 – 0.20) = 4%
Step 3: WACC = (1M/1.5M * 11.2%) + (0.5M/1.5M * 4%) = 8.8%

In this scenario, you would use 8.8% as your discount rate to pull the company's future free cash flows back to their Present Value (PV).

Leave a Comment