Income Tax CalculatorSpecialized Version
📊

Self Employment Tax Calculator

Self-employment tax

$
$
$
%
⚠️ Disclaimer: This calculator provides estimates only and does not constitute tax advice. Actual taxes may vary based on individual circumstances. Consult a tax professional for accurate tax planning.

Self Employment Tax Calculator

Calculate your self-employment tax (Social Security and Medicare) with our free calculator. Self-employed individuals, freelancers, and independent contractors pay both the employer and employee portions of these taxes—totaling 15.3% on net earnings.

Self-Employment Tax Breakdown (2024)

| Tax Component | Rate | Wage Base Limit | Notes | Social Security (Employee)6.2%$168,600Same as W-2 workers Social Security (Employer)6.2%$168,600Paid by self-employed Medicare (Employee)1.45%No limitAll earnings taxed Medicare (Employer)1.45%No limitPaid by self-employed Additional Medicare0.9%Over $200,000High-income surcharge | Total SE Tax | 15.3% | Varies | On 92.35% of net earnings |

How Self-Employment Tax Works

You pay SE tax on 92.35% of net self-employment income (after business expenses). Half of the SE tax is deductible on your income tax return, reducing your adjusted gross income. This mirrors how employers deduct their portion of payroll taxes.

Self-Employment Tax Calculator

``javascript function calculateSelfEmploymentTax(netEarnings) { const seTaxableAmount = netEarnings * 0.9235; // Only 92.35% is taxable const socialSecurityLimit = 168600; // 2024 limit

// Social Security: 12.4% up to wage base const socialSecurityTax = Math.min(seTaxableAmount, socialSecurityLimit) * 0.124;

// Medicare: 2.9% on all earnings let medicareTax = seTaxableAmount * 0.029;

// Additional Medicare tax: 0.9% over $200k if (seTaxableAmount > 200000) { medicareTax += (seTaxableAmount - 200000) * 0.009; }

const totalSETax = socialSecurityTax + medicareTax; const deductiblePortion = totalSETax / 2;

return { totalSETax: totalSETax.toFixed(2), socialSecurityTax: socialSecurityTax.toFixed(2), medicareTax: medicareTax.toFixed(2), deductiblePortion: deductiblePortion.toFixed(2), effectiveRate: (totalSETax / netEarnings * 100).toFixed(2) + '%' }; } ``

Reducing Self-Employment Tax

Consider an S-corp election if earnings exceed $50,000—paying yourself a reasonable salary and taking remaining profit as distributions can reduce SE tax. Maximize business expense deductions to lower net earnings. Contribute to SEP-IRA or Solo 401(k) to reduce both income tax and SE tax base.

Frequently Asked Questions

What is the self-employment tax rate?

Self-employment tax is 15.3% total: 12.4% for Social Security (up to $168,600 in 2024) and 2.9% for Medicare (no limit). An additional 0.9% Medicare tax applies to earnings over $200,000. The tax is calculated on 92.35% of net self-employment income.

Why do self-employed pay higher taxes?

Self-employed individuals pay both the employee and employer portions of Social Security and Medicare taxes—a total of 15.3% versus 7.65% for W-2 employees. However, half the SE tax is deductible, and self-employed can deduct business expenses that employees cannot.

How can I reduce self-employment tax?

Options include: maximizing business expense deductions, forming an S-corporation (for higher earners), contributing to SEP-IRA or Solo 401(k), and ensuring you are not overpaying—only net profit is subject to SE tax. Some income types (rental, dividends) are not subject to SE tax.

Related Tools

Explore other tools you might find useful:

Related Calculators