Common Stock Growth Rate Calculator

Common Stock Growth Rate Calculator :root { –primary-color: #2c3e50; –secondary-color: #27ae60; –accent-color: #3498db; –bg-color: #f8f9fa; –text-color: #333; –border-radius: 8px; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: var(–text-color); margin: 0; padding: 0; background-color: var(–bg-color); } .calculator-container { max-width: 800px; margin: 40px auto; background: #fff; padding: 30px; border-radius: var(–border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .calculator-header { text-align: center; margin-bottom: 30px; border-bottom: 2px solid #eee; padding-bottom: 20px; } .calculator-header h1 { color: var(–primary-color); margin: 0; font-size: 2.2rem; } .calculator-header p { color: #666; margin-top: 10px; } .input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; } @media (max-width: 600px) { .input-grid { grid-template-columns: 1fr; } } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; color: var(–primary-color); font-size: 0.95rem; } .input-wrapper { position: relative; display: flex; align-items: center; } .input-wrapper input { width: 100%; padding: 12px 15px; padding-right: 35px; /* Space for suffix */ border: 2px solid #e0e0e0; border-radius: var(–border-radius); font-size: 1rem; transition: border-color 0.3s ease; } .input-wrapper input:focus { border-color: var(–accent-color); outline: none; } .suffix { position: absolute; right: 12px; color: #777; font-weight: 500; } .btn-calculate { width: 100%; padding: 15px; background-color: var(–secondary-color); color: white; border: none; border-radius: var(–border-radius); font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background-color 0.2s, transform 0.1s; margin-top: 10px; } .btn-calculate:hover { background-color: #219150; } .btn-calculate:active { transform: scale(0.98); } .result-section { margin-top: 30px; background-color: #f1f8ff; border: 1px solid #d1e3f8; border-radius: var(–border-radius); padding: 25px; display: none; /* Hidden by default */ } .result-header { font-size: 1.2rem; color: var(–primary-color); margin-bottom: 15px; text-align: center; font-weight: 600; } .result-value-container { text-align: center; margin-bottom: 20px; } .result-value { font-size: 3rem; color: var(–secondary-color); font-weight: 800; line-height: 1; } .result-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; border-top: 1px solid #d1e3f8; padding-top: 20px; } .metric-box { background: white; padding: 15px; border-radius: 6px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .metric-label { font-size: 0.85rem; color: #666; margin-bottom: 5px; } .metric-data { font-size: 1.2rem; font-weight: 700; color: var(–primary-color); } /* Content Styling */ .content-section { max-width: 800px; margin: 50px auto; padding: 0 20px; } .content-section h2 { color: var(–primary-color); border-left: 5px solid var(–secondary-color); padding-left: 15px; margin-top: 40px; } .content-section h3 { color: #444; margin-top: 30px; } .content-section p, .content-section li { color: #444; font-size: 1.05rem; margin-bottom: 15px; } .content-section ul { padding-left: 20px; } .formula-box { background: #f4f4f4; padding: 20px; border-left: 4px solid var(–accent-color); margin: 20px 0; font-family: "Courier New", monospace; font-weight: 600; } .info-tooltip { font-size: 0.8rem; color: #888; margin-top: 5px; }

Common Stock Growth Rate Calculator

Calculate the Sustainable Growth Rate (SGR) for equity valuation.

%
Net Income / Shareholder's Equity
%
% of earnings paid as dividends
Sustainable Growth Rate (g)
0.00%
Retention Ratio (b)
0.00%
Doubling Time (Rule of 72)
— Years

Understanding Common Stock Growth Rate

The Common Stock Growth Rate, often denoted as g in financial modeling, represents the rate at which a company's earnings and dividends are expected to grow in the future. This metric is a critical component in the Gordon Growth Model (Dividend Discount Model) used to determine the intrinsic value of a stock.

While growth can be estimated using historical trends, the most robust method for fundamental analysis is the Sustainable Growth Rate (SGR) model. This model assumes that a company will grow by reinvesting its earnings back into the business at its current rate of return on equity.

The Calculation Formula

The calculator above utilizes the Retention Growth Model formula. The logic is that growth is driven by the portion of earnings kept within the company (Retained Earnings) multiplied by how effectively the company uses that capital (Return on Equity).

g = ROE × b

Where:

  • g = Sustainable Growth Rate
  • ROE = Return on Equity (Net Income / Shareholder Equity)
  • b = Retention Ratio (1 – Dividend Payout Ratio)

How to Interpret the Inputs

Return on Equity (ROE): This measures a corporation's profitability by revealing how much profit a company generates with the money shareholders have invested. A higher ROE typically signals a capability for higher growth, assuming the earnings are reinvested.

Dividend Payout Ratio: This is the percentage of earnings paid to shareholders in dividends. The remaining amount is the Retention Ratio.

Example Calculation

Imagine a company with the following financial metrics:

  • ROE: 15%
  • Dividend Payout Ratio: 40% (meaning they keep 60% of earnings)

First, we calculate the Retention Ratio (b):
b = 100% – 40% = 60% (or 0.60)

Next, we apply the growth formula:
g = 15% × 60% = 9.00%

This means the company's intrinsic growth rate is 9%. If the company pays out all its earnings as dividends (100% payout), the retention ratio becomes 0%, and the sustainable growth rate drops to 0%, as no capital is being reinvested for expansion.

Why This Matters for Investors

Investors use this growth rate to decide if a stock is overvalued or undervalued. If the calculated sustainable growth rate is significantly lower than the market's expectation (implied by the current stock price), the stock might be overvalued. Conversely, a high sustainable growth rate coupled with a low P/E ratio may indicate an investment opportunity.

function calculateStockGrowth() { // 1. Get Input Values var roeInput = document.getElementById("roeInput"); var payoutInput = document.getElementById("payoutInput"); var resultSection = document.getElementById("resultOutput"); // Parse values var roe = parseFloat(roeInput.value); var payout = parseFloat(payoutInput.value); // 2. Validation if (isNaN(roe) || isNaN(payout)) { alert("Please enter valid numeric values for both ROE and Payout Ratio."); return; } // Logic check for payout ratio limits if (payout 100) { alert("Dividend Payout Ratio must be between 0 and 100%."); return; } // 3. Calculation Logic // Retention Ratio (b) = 1 – Payout Ratio // Since inputs are in whole percentages (e.g. 40 for 40%), we calculate (100 – payout) / 100 var retentionPercent = 100 – payout; var retentionRatio = retentionPercent / 100; // Growth Rate (g) = ROE * Retention Ratio // ROE is in percentage terms. // Example: ROE 15, Retention 0.6. Growth = 15 * 0.6 = 9. var growthRate = roe * retentionRatio; // Doubling Time (Rule of 72) var doublingTime = 0; var doublingText = "–"; if (growthRate > 0) { doublingTime = 72 / growthRate; doublingText = doublingTime.toFixed(1) + " Years"; } else if (growthRate <= 0) { doublingText = "No Growth"; } // 4. Update UI document.getElementById("finalGrowth").innerHTML = growthRate.toFixed(2) + "%"; document.getElementById("retentionResult").innerHTML = retentionPercent.toFixed(2) + "%"; document.getElementById("doublingResult").innerHTML = doublingText; // Show results resultSection.style.display = "block"; // Smooth scroll to results resultSection.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment