How to Calculate Earnings per Share Example

#eps-calc-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); color: #333; } .eps-calc-header { text-align: center; margin-bottom: 25px; } .eps-calc-header h2 { color: #1a3a5f; margin-bottom: 10px; font-size: 28px; } .eps-input-group { margin-bottom: 20px; } .eps-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #444; } .eps-input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .eps-input-group input:focus { outline: none; border-color: #3498db; box-shadow: 0 0 5px rgba(52,152,219,0.3); } .eps-btn { width: 100%; background-color: #1a3a5f; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .eps-btn:hover { background-color: #2c5282; } #eps-display-result { margin-top: 25px; padding: 20px; background-color: #f8fafc; border-radius: 8px; border-left: 5px solid #1a3a5f; display: none; } .result-value { font-size: 24px; font-weight: bold; color: #1a3a5f; } .eps-article { margin-top: 40px; line-height: 1.6; color: #444; } .eps-article h3 { color: #1a3a5f; margin-top: 25px; } .eps-article table { width: 100%; border-collapse: collapse; margin: 20px 0; } .eps-article table th, .eps-article table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .eps-article table th { background-color: #f4f7f9; }

Earnings Per Share (EPS) Calculator

Determine a company's profitability per individual share of common stock.

How to Calculate Earnings Per Share Example

Earnings Per Share (EPS) is one of the most vital financial metrics 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.

The Basic EPS Formula

To find the EPS, you subtract any preferred dividends from the net income and divide the result by the total number of outstanding common shares during that period.

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

Step-by-Step Calculation Example

Let's look at a realistic example of how to calculate earnings per share:

Financial Metric Value
Net Income $1,200,000
Preferred Dividends $200,000
Common Shares Outstanding 500,000

Calculation:

  1. Subtract Preferred Dividends from Net Income: $1,200,000 – $200,000 = $1,000,000 (Earnings available to common shareholders).
  2. Divide by Outstanding Shares: $1,000,000 / 500,000 = $2.00.
  3. Result: The Earnings Per Share is $2.00.

Why EPS Matters for Investors

EPS is a primary component used to calculate the Price-to-Earnings (P/E) ratio. A higher EPS generally indicates better profitability and may lead to a higher stock price over time. It allows investors to compare companies of different sizes within the same industry by normalizing profit on a per-share basis.

Types of EPS

  • Basic EPS: Uses current outstanding shares without considering potential dilution.
  • Diluted EPS: Accounts for all convertible securities (like stock options or convertible bonds) that could be turned into shares, providing a "worst-case" scenario for shareholders.
function calculateEarningsPerShare() { var netIncome = parseFloat(document.getElementById('netIncome').value); var prefDividends = parseFloat(document.getElementById('prefDividends').value); var avgShares = parseFloat(document.getElementById('avgShares').value); var resultDiv = document.getElementById('eps-display-result'); var output = document.getElementById('eps-text-output'); // Default preferred dividends to 0 if empty if (isNaN(prefDividends)) { prefDividends = 0; } // Validation if (isNaN(netIncome) || isNaN(avgShares)) { resultDiv.style.display = "block"; output.innerHTML = "Please enter valid numbers for Net Income and Shares Outstanding."; return; } if (avgShares <= 0) { resultDiv.style.display = "block"; output.innerHTML = "Average shares must be greater than zero."; return; } // Calculation logic var earningsAvailable = netIncome – prefDividends; var eps = earningsAvailable / avgShares; // Display Results resultDiv.style.display = "block"; var html = "
Earnings Available to Common Shareholders: $" + earningsAvailable.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + "
"; html += "
Final Earnings Per Share (EPS): $" + eps.toFixed(2) + "
"; output.innerHTML = html; }

Leave a Comment