Calculate Eps

Earnings Per Share (EPS) Calculator

Earnings Per Share (EPS) $0.00


Understanding Earnings Per Share (EPS)

Earnings Per Share (EPS) is a critical financial metric used by investors and analysts to gauge a company's profitability. It represents the portion of a company's profit allocated to each individual share of common stock. A higher EPS indicates greater value because investors will pay more for a company with higher profits.

The Basic EPS Formula

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

Key Components Explained

  • Net Income: The total profit of the company after all expenses, taxes, and interest have been paid.
  • Preferred Dividends: These must be subtracted from net income because EPS measures profit available to common shareholders.
  • Common Shares Outstanding: The number of shares currently held by all shareholders, including restricted shares and those held by company officers.

Practical Example

Imagine "TechCorp" reports a net income of $1,000,000. They have paid out $100,000 in dividends to preferred shareholders. Throughout the year, they had an average of 450,000 common shares outstanding.

Using the formula: ($1,000,000 – $100,000) / 450,000 = $2.00 per share.

This means for every share you own, the company generated $2.00 in profit.

function calculateEPS() { var netIncome = parseFloat(document.getElementById('netIncome').value); var prefDividends = parseFloat(document.getElementById('prefDividends').value) || 0; var shares = parseFloat(document.getElementById('sharesOutstanding').value); var resultDiv = document.getElementById('epsResult'); var valueSpan = document.getElementById('epsValue'); var interpretation = document.getElementById('epsInterpretation'); if (isNaN(netIncome) || isNaN(shares) || shares 0) { text = "This positive EPS indicates the company is profitable for common shareholders. It is a key component in calculating the Price-to-Earnings (P/E) ratio."; } else if (eps < 0) { text = "A negative EPS indicates the company is currently operating at a loss. Investors typically look for a plan to return to profitability."; } else { text = "The company is currently breaking even with an EPS of zero."; } interpretation.innerHTML = text; resultDiv.style.display = 'block'; resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment