Earnings per Share Calculation

.eps-calc-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .eps-calc-container h2 { color: #2c3e50; text-align: center; margin-top: 0; } .eps-input-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .eps-input-section { grid-template-columns: 1fr; } } .eps-field { display: flex; flex-direction: column; } .eps-field label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .eps-field input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .eps-btn { background-color: #27ae60; color: white; border: none; padding: 15px 20px; border-radius: 4px; font-size: 18px; cursor: pointer; width: 100%; font-weight: bold; transition: background-color 0.3s; } .eps-btn:hover { background-color: #219150; } .eps-result-box { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #27ae60; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); } .eps-result-box h3 { margin: 0 0 10px 0; color: #2c3e50; } .eps-value { font-size: 28px; font-weight: bold; color: #27ae60; } .eps-explanation { line-height: 1.6; margin-top: 30px; } .eps-explanation h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .eps-formula-card { background: #eee; padding: 15px; border-radius: 5px; font-family: "Courier New", Courier, monospace; margin: 15px 0; text-align: center; }

Earnings Per Share (EPS) Calculator

Basic Earnings Per Share:

$0.00

What is Earnings Per Share (EPS)?

Earnings Per Share (EPS) is a key financial metric used to determine a company's profitability on a per-share basis. It indicates how much profit a company makes for each share of its common stock. Investors use EPS as a primary indicator of a company's financial health and to calculate the Price-to-Earnings (P/E) ratio.

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

Understanding the Inputs

  • Net Income: The total profit of the company after all expenses, taxes, and interest have been paid.
  • Preferred Dividends: Dividends promised to preferred shareholders. These must be subtracted from net income because EPS measures earnings available specifically to common shareholders.
  • Average Outstanding Shares: The weighted average number of common shares held by stockholders during the reporting period.

Real-World Example

Suppose "TechCorp" reports a net income of $1,200,000. They paid $200,000 in dividends to preferred shareholders. Throughout the year, they had an average of 500,000 common shares outstanding.

Using the formula:
Earnings Available = $1,200,000 – $200,000 = $1,000,000
EPS = $1,000,000 / 500,000 = $2.00 per share.

Why EPS Matters

A higher EPS generally suggests higher profitability and may lead to an increase in the stock price. However, it is important to compare EPS figures within the same industry and consider the company's historical performance, as share buybacks can artificially inflate EPS by reducing the number of outstanding shares.

function calculateEPS() { var netIncome = parseFloat(document.getElementById('netIncome').value); var prefDividends = parseFloat(document.getElementById('prefDividends').value); var avgShares = parseFloat(document.getElementById('avgShares').value); var resultArea = document.getElementById('resultArea'); var epsOutput = document.getElementById('epsOutput'); var resultText = document.getElementById('resultText'); if (isNaN(netIncome) || isNaN(prefDividends) || isNaN(avgShares)) { alert("Please enter valid numeric values for all fields."); return; } if (avgShares <= 0) { alert("Average outstanding shares must be greater than zero."); return; } var earningsAvailable = netIncome – prefDividends; var eps = earningsAvailable / avgShares; epsOutput.innerHTML = "$" + eps.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultText.innerHTML = "This means for every share of common stock, the company generated " + "$" + eps.toFixed(2) + " in net profit after meeting preferred obligations."; resultArea.style.display = "block"; }

Leave a Comment