Epsq Calculator

EPS Calculator (Earnings Per Share)

Analyze stock profitability and investment value

Earnings Per Share (EPS)
$0.00
P/E Ratio
0.00

Understanding the EPS Calculation

Earnings Per Share (EPS) is a critical indicator used by investors to determine a company's profitability on a per-share basis. Higher EPS values generally indicate higher profitability and more potential value for shareholders.

The EPS Formula

EPS = (Net Income – Preferred Dividends) / Average Outstanding Shares

Why EPS Matters

  • Profitability Metric: It shows how much profit a company makes for every share of its stock.
  • Valuation Tool: EPS is the primary component used to calculate the Price-to-Earnings (P/E) ratio.
  • Growth Comparison: By tracking EPS over several quarters, investors can see if a company is growing its core earnings.

Example Calculation

If Company A has a Net Income of $1,000,000, pays $100,000 in Preferred Dividends, and has 500,000 Weighted Average Shares:

($1,000,000 – $100,000) / 500,000 = $1.80 EPS

function calculateEPS() { var netIncome = parseFloat(document.getElementById('netIncome').value); var prefDividends = parseFloat(document.getElementById('prefDividends').value) || 0; var avgShares = parseFloat(document.getElementById('avgShares').value); var sharePrice = parseFloat(document.getElementById('sharePrice').value); var resultArea = document.getElementById('resultArea'); var epsOutput = document.getElementById('epsOutput'); var peOutput = document.getElementById('peOutput'); var peRatioContainer = document.getElementById('peRatioContainer'); if (isNaN(netIncome) || isNaN(avgShares) || avgShares 0 && eps > 0) { var peRatio = sharePrice / eps; peOutput.innerText = peRatio.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + 'x'; peRatioContainer.style.display = 'block'; } else { peRatioContainer.style.display = 'none'; } // Smooth Scroll to Result resultArea.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Reply

Your email address will not be published. Required fields are marked *