How to Calculate Expected Dividend Growth Rate

.dividend-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 30px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .dividend-calc-container h2 { color: #1a2a3a; text-align: center; margin-top: 0; } .calc-input-group { margin-bottom: 20px; } .calc-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .calc-input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .calc-btn { width: 100%; background-color: #2c7be5; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #1a5ab5; } .calc-result { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; margin-bottom: 0; } .result-label { font-weight: 500; color: #555; } .result-value { font-weight: 700; color: #2c7be5; font-size: 1.1em; } .article-section { margin-top: 40px; line-height: 1.6; color: #444; } .article-section h3 { color: #1a2a3a; border-left: 4px solid #2c7be5; padding-left: 15px; margin-top: 30px; } .article-section p { margin-bottom: 15px; } .example-box { background-color: #f1f4f8; padding: 20px; border-radius: 8px; border-left: 5px solid #2c7be5; margin: 20px 0; }

Expected Dividend Growth Rate Calculator

Estimate future dividend increases using the Fundamental Growth Method (Retention Ratio × ROE).

Retention Ratio: 0%
Return on Equity (ROE): 0%
Expected Growth Rate: 0%

What is the Expected Dividend Growth Rate?

The expected dividend growth rate is a forecast of how much a company's dividend payment per share is likely to increase over a specific period. For long-term dividend growth investors, this metric is critical because it helps determine the "yield on cost" and the total return potential of an equity investment.

While historical growth rates are useful, the Fundamental Growth Method (also known as the Sustainable Growth Rate) provides a more accurate forward-looking estimate by looking at how much profit a company reinvests and how efficiently it generates profit from its equity.

The Formula: How to Calculate Expected Growth

To calculate the expected dividend growth rate (g), we use the following relationship:

Expected Growth (g) = Retention Ratio (b) × Return on Equity (ROE)
  • Retention Ratio (b): The percentage of net income kept by the company after paying dividends. Formula: (Net Income – Dividends) / Net Income.
  • Return on Equity (ROE): A measure of financial performance calculated by dividing net income by shareholders' equity. Formula: Net Income / Shareholders' Equity.

Why Reinvestment Matters

If a company pays out 100% of its earnings as dividends, its retention ratio is 0%. Without reinvesting capital back into the business to buy new equipment, fund R&D, or acquire competitors, the company has no internal fuel for growth. Conversely, a company that retains a portion of its earnings and generates a high ROE on that retained capital is positioned to grow its earnings—and eventually its dividends—at a faster pace.

Real-World Example

Company: BlueChip Corp

  • Net Income: $1,000,000
  • Dividends Paid: $400,000
  • Shareholders' Equity: $5,000,000

Step 1: Calculate Retention Ratio. ($1M – $0.4M) / $1M = 0.60 (60%)

Step 2: Calculate ROE. $1M / $5M = 0.20 (20%)

Step 3: Calculate Growth. 0.60 × 0.20 = 0.12 or 12%

In this scenario, BlueChip Corp has an expected dividend growth rate of 12% per year.

Limitations of this Model

While the Fundamental Growth Method is powerful, it assumes that the company's ROE and payout ratio will remain constant. In reality, these figures fluctuate based on economic cycles, competition, and management decisions. Investors should also check the "Historical Dividend Growth" (CAGR) over the last 5-10 years to see if the theoretical growth matches the company's actual track record.

function calculateDivGrowth() { var income = parseFloat(document.getElementById('netIncome').value); var dividends = parseFloat(document.getElementById('divPaid').value); var equity = parseFloat(document.getElementById('shareEquity').value); if (isNaN(income) || isNaN(dividends) || isNaN(equity) || income <= 0 || equity income) { alert("Note: Dividends exceed Net Income. This implies a payout from reserves and a negative retention ratio, making the growth rate calculation unsustainable."); } // 1. Retention Ratio (b) var retentionRatio = (income – dividends) / income; // 2. Return on Equity (ROE) var roe = income / equity; // 3. Expected Growth (g = b * ROE) var growthRate = retentionRatio * roe; // Displaying Results document.getElementById('divResult').style.display = 'block'; document.getElementById('resRetention').innerText = (retentionRatio * 100).toFixed(2) + "%"; document.getElementById('resROE').innerText = (roe * 100).toFixed(2) + "%"; document.getElementById('resGrowth').innerText = (growthRate * 100).toFixed(2) + "%"; // Scroll smoothly to results document.getElementById('divResult').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment