Constant Growth Rate Calculator

Constant Growth Rate (Gordon Growth Model) Calculator /* Scoped CSS for the calculator to prevent WordPress theme conflicts */ .cgr-calculator-container { max-width: 600px; margin: 20px auto; padding: 25px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .cgr-calculator-container h2 { text-align: center; color: #2c3e50; margin-bottom: 20px; } .cgr-input-group { margin-bottom: 15px; } .cgr-input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #34495e; } .cgr-input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; /* Fix padding issues */ } .cgr-input-group input:focus { border-color: #3498db; outline: none; box-shadow: 0 0 5px rgba(52, 152, 219, 0.3); } .cgr-btn { width: 100%; padding: 12px; background-color: #27ae60; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; font-weight: bold; transition: background-color 0.3s; } .cgr-btn:hover { background-color: #219150; } .cgr-result-box { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #27ae60; border-radius: 4px; display: none; /* Hidden by default */ box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .cgr-result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .cgr-result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .cgr-result-label { color: #7f8c8d; font-size: 14px; } .cgr-result-value { font-weight: bold; color: #2c3e50; font-size: 18px; } .cgr-final-val { font-size: 24px; color: #27ae60; } .cgr-error { color: #c0392b; margin-top: 10px; text-align: center; font-weight: bold; display: none; } /* Article Styles */ .cgr-content-section { max-width: 800px; margin: 40px auto; line-height: 1.6; color: #333; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .cgr-content-section h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .cgr-content-section p { margin-bottom: 15px; } .cgr-content-section ul { margin-bottom: 15px; padding-left: 20px; } .cgr-content-section li { margin-bottom: 8px; } .cgr-formula-box { background-color: #f0f4f8; padding: 15px; border-radius: 5px; font-family: 'Courier New', Courier, monospace; text-align: center; margin: 20px 0; font-weight: bold; border: 1px solid #d1d8dd; }

Constant Growth Model Calculator

Projected Next Year Dividend (D₁): $0.00
Denominator (k – g): 0.00%
Intrinsic Stock Value (P₀): $0.00
function calculateGordonModel() { // 1. Get DOM elements var d0Input = document.getElementById('currentDividend'); var kInput = document.getElementById('requiredReturn'); var gInput = document.getElementById('growthRate'); var resultBox = document.getElementById('cgrResult'); var errorBox = document.getElementById('cgrErrorMessage'); var resD1 = document.getElementById('resD1'); var resDenominator = document.getElementById('resDenominator'); var resValue = document.getElementById('resValue'); // 2. Parse Values var d0 = parseFloat(d0Input.value); var k = parseFloat(kInput.value); var g = parseFloat(gInput.value); // 3. Reset Display errorBox.style.display = 'none'; resultBox.style.display = 'none'; errorBox.innerHTML = "; // 4. Validation if (isNaN(d0) || isNaN(k) || isNaN(g)) { errorBox.innerHTML = "Please enter valid numbers for all fields."; errorBox.style.display = 'block'; return; } if (d0 < 0) { errorBox.innerHTML = "Dividend cannot be negative."; errorBox.style.display = 'block'; return; } // Critical Logic Check for Gordon Growth Model // k must be greater than g, otherwise the formula results in negative or infinite value. if (k = k, the theoretical price implies infinity."; errorBox.style.display = 'block'; return; } // 5. Calculation Logic // Formula: P0 = D1 / (k – g) // Where D1 = D0 * (1 + g) // Convert percentages to decimals var kDecimal = k / 100; var gDecimal = g / 100; // Calculate Next Year's Dividend (D1) var d1 = d0 * (1 + gDecimal); // Calculate Denominator (k – g) var denominator = kDecimal – gDecimal; // Calculate Intrinsic Value (P0) var p0 = d1 / denominator; // 6. Display Results // Format currency using USD for standard presentation var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 2 }); resD1.innerHTML = formatter.format(d1); resDenominator.innerHTML = (denominator * 100).toFixed(2) + "%"; resValue.innerHTML = formatter.format(p0); resultBox.style.display = 'block'; }

Understanding the Constant Growth Model

The Constant Growth Rate Calculator is designed based on the Gordon Growth Model (GGM). This financial model is used to determine the intrinsic value of a stock based on a future series of dividends that grow at a constant rate. It assumes that dividends grow indefinitely at a stable rate, making it a popular method for valuing companies with stable cash flow patterns.

The Formula

The calculation relies on projecting the next year's dividend and discounting it by the difference between the required rate of return and the growth rate:

P₀ = D₁ / (k – g)

Where:

  • P₀ = The current intrinsic value of the stock.
  • D₁ = The expected dividend next year (Calculated as D₀ × (1 + g)).
  • k = The required rate of return (Cost of Equity).
  • g = The constant growth rate in dividends (in perpetuity).

How to Use This Calculator

  1. Enter Current Dividend (D₀): Input the most recent annual dividend paid per share.
  2. Enter Required Rate of Return (k): This is the minimum return investors expect for taking the risk of investing in the stock. It is typically calculated using the CAPM model.
  3. Enter Constant Growth Rate (g): The expected annual percentage growth of the dividends. Note: This rate must be lower than the required rate of return.

Critical Assumptions & Limitations

While the Constant Growth Model is a powerful tool for valuation, it operates under strict assumptions:

  • Stable Growth: It assumes the company grows at a single rate forever. It is not suitable for high-growth startups or companies with volatile earnings.
  • k > g: The model fails mathematically if the growth rate exceeds or equals the required rate of return. In such cases, the denominator becomes zero or negative, implying an infinite price, which is impossible in real markets.
  • Dividend Dependency: The model is only applicable to companies that pay dividends.

Example Calculation

Imagine a utility company pays a current annual dividend of $2.00. Investors require a 7% return, and the company has a steady dividend growth history of 3%.

First, calculate D₁: $2.00 × (1 + 0.03) = $2.06.

Next, determine the spread (k – g): 7% – 3% = 4% (0.04).

Finally, calculate value: $2.06 / 0.04 = $51.50.

Leave a Comment