Calculate My Ssdi Benefits

.ssdi-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .ssdi-calculator-container h2 { color: #1a2b49; text-align: center; margin-bottom: 25px; font-size: 28px; } .ssdi-input-group { margin-bottom: 20px; } .ssdi-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .ssdi-input-group input, .ssdi-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .ssdi-btn { width: 100%; padding: 15px; background-color: #0056b3; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .ssdi-btn:hover { background-color: #004494; } .ssdi-result-box { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #0056b3; display: none; } .ssdi-result-box h3 { margin-top: 0; color: #1a2b49; } .ssdi-stat { font-size: 24px; font-weight: bold; color: #0056b3; margin: 10px 0; } .ssdi-info-text { font-size: 14px; color: #666; line-height: 1.5; } .ssdi-article { margin-top: 40px; line-height: 1.6; color: #333; } .ssdi-article h3 { color: #1a2b49; margin-top: 25px; }

SSDI Benefits Estimator

Enter your average yearly income over your working life.

Your Estimated SSDI Benefit

$0.00 / month

*This is an estimate based on the 2024 Social Security "Bend Point" formula. Actual benefits are calculated by the SSA using your specific lifetime earnings record (AIME).

How Your SSDI Benefits Are Calculated

Social Security Disability Insurance (SSDI) benefits are not based on the severity of your disability or your financial need. Instead, they are calculated based on your Average Indexed Monthly Earnings (AIME). This is the average of your highest-earning years, adjusted for inflation.

The Social Security Administration (SSA) applies a formula to your AIME to determine your Primary Insurance Amount (PIA). For 2024, the formula uses three percentage tiers known as "bend points":

  • 90% of the first $1,174 of your AIME
  • 32% of AIME between $1,174 and $7,078
  • 15% of AIME above $7,078

Eligibility Requirements

To qualify for SSDI, you must generally meet two work-related tests:

  1. The Recent Work Test: Based on your age at the time you became disabled. For example, if you are over 31, you generally must have worked 5 out of the last 10 years.
  2. The Duration of Work Test: This ensures you have worked long enough under Social Security to be covered. Usually, 40 credits (10 years of work) are required, 20 of which were earned in the last 10 years ending with the year you become disabled.

Example SSDI Calculation

If an individual has an average annual income of $60,000, their AIME is $5,000 per month. The 2024 calculation would be:

  • 90% of $1,174 = $1,056.60
  • 32% of ($5,000 – $1,174) = $1,224.32
  • Total Monthly Benefit: $2,280.92

Important Considerations

The maximum SSDI benefit for 2024 is capped at $3,822 per month. Additionally, if you receive other public disability benefits (like Workers' Compensation), your SSDI payment may be reduced so that the total amount does not exceed 80% of your average current earnings.

function calculateSSDI() { var annualIncome = parseFloat(document.getElementById('annualIncome').value); var currentAge = parseInt(document.getElementById('currentAge').value); var yearsWorked = parseInt(document.getElementById('yearsWorked').value); var resultDiv = document.getElementById('ssdiResult'); var monthlyText = document.getElementById('monthlyBenefitText'); var statusText = document.getElementById('eligibilityStatusText'); if (isNaN(annualIncome) || annualIncome <= 0) { alert("Please enter a valid annual income."); return; } if (isNaN(currentAge) || currentAge < 18) { alert("Please enter a valid age (18+)."); return; } // Logic: Calculate AIME (Average Indexed Monthly Earnings) // Simplified: Using current annual income as the base for indexed average var aime = annualIncome / 12; var pia = 0; // 2024 Bend Points var firstBend = 1174; var secondBend = 7078; if (aime <= firstBend) { pia = aime * 0.90; } else if (aime 3822) { pia = 3822; } // Eligibility Logic (Simplified) var isEligible = true; var reason = "You likely meet the work credit requirements."; if (yearsWorked 30) { isEligible = false; reason = "Warning: You may not have enough work credits. Typically, 5-10 years of work is required depending on age."; } else if (yearsWorked < 1.5) { isEligible = false; reason = "Warning: Minimum work history is usually required even for younger applicants."; } // Output formatting resultDiv.style.display = "block"; monthlyText.innerHTML = "$" + pia.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " / month"; if (isEligible) { statusText.style.color = "#28a745"; statusText.innerHTML = "Status: Potentially Eligible. " + reason; } else { statusText.style.color = "#dc3545"; statusText.innerHTML = "Status: Eligibility Concern. " + reason; } // Smooth scroll to result resultDiv.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment