Net Worth Percentile Calculator

.nw-calc-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 20px rgba(0,0,0,0.08); } .nw-calc-header { text-align: center; margin-bottom: 30px; } .nw-calc-header h2 { color: #2c3e50; margin-bottom: 10px; } .nw-input-group { margin-bottom: 20px; } .nw-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #34495e; } .nw-input-group input, .nw-input-group select { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .nw-input-group input:focus { border-color: #3498db; outline: none; } .nw-btn { width: 100%; background-color: #27ae60; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .nw-btn:hover { background-color: #219150; } .nw-result-box { margin-top: 30px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; display: none; text-align: center; border-left: 5px solid #27ae60; } .nw-percentile-display { font-size: 36px; font-weight: 800; color: #2c3e50; margin: 10px 0; } .nw-description { line-height: 1.6; color: #444; margin-top: 40px; } .nw-description h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .nw-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .nw-table th, .nw-table td { padding: 12px; border: 1px solid #ddd; text-align: left; } .nw-table th { background-color: #f2f2f2; }

Net Worth Percentile Calculator

Compare your household wealth against the rest of the US population.

All Ages Under 35 35 – 44 45 – 54 55 – 64 65 or older
Your Net Worth: $0
0%
You have a higher net worth than 0% of US households.

How This Calculation Works

This calculator estimates your net worth percentile based on the most recent Survey of Consumer Finances (SCF) data from the Federal Reserve. Net worth is calculated by taking everything you own (assets) and subtracting everything you owe (liabilities).

Net Worth Formula:
Net Worth = (Cash + Investments + Real Estate + Business Equity) - (Mortgages + Loans + Debt)

Net Worth Benchmarks (US Households)

Percentile Net Worth Threshold
Top 1% $13,700,000+
Top 5% $3,800,000+
Top 10% $1,900,000+
50th (Median) $192,900
25th Percentile $14,000

Why the Median Matters More Than the Average

In wealth statistics, the "average" (mean) net worth is often skewed significantly higher by a small number of ultra-wealthy individuals. The median (the 50th percentile) is a much more accurate representation of the "typical" household, as it marks the exact middle point where half the population has more and half has less.

Tips to Improve Your Net Worth Percentile

  • Automate Savings: Treat your savings like a recurring bill that must be paid every month.
  • Debt Reduction: Focus on high-interest debt (credit cards) first, as interest payments eat away at your net worth.
  • Asset Appreciation: Invest in diversified index funds or real estate that traditionally increase in value over time.
  • Increase Income: Scaling your primary income or adding side streams allows more capital for investment.
function calculateNetWorthPercentile() { var assets = parseFloat(document.getElementById("totalAssets").value); var liabilities = parseFloat(document.getElementById("totalLiabilities").value); var age = document.getElementById("ageBracket").value; if (isNaN(assets)) assets = 0; if (isNaN(liabilities)) liabilities = 0; var netWorth = assets – liabilities; var percentile = 0; // Data points based on Federal Reserve SCF 2022/2023 trends (All Ages) // -10k: 10th, 14k: 25th, 192k: 50th, 500k: 70th, 1.9M: 90th, 3.8M: 95th, 13.7M: 99th var thresholds = [ { val: -50000, p: 5 }, { val: -10000, p: 10 }, { val: 0, p: 15 }, { val: 14000, p: 25 }, { val: 50000, p: 35 }, { val: 100000, p: 42 }, { val: 192900, p: 50 }, { val: 350000, p: 63 }, { val: 500000, p: 72 }, { val: 800000, p: 80 }, { val: 1200000, p: 85 }, { val: 1920000, p: 90 }, { val: 3800000, p: 95 }, { val: 7500000, p: 98 }, { val: 13700000, p: 99 }, { val: 25000000, p: 99.5 } ]; // Adjustment factors based on age (Approximate shifts in distribution) var ageFactor = 1.0; if (age === "under35") ageFactor = 0.2; else if (age === "35-44") ageFactor = 0.6; else if (age === "45-54") ageFactor = 1.2; else if (age === "55-64") ageFactor = 1.6; else if (age === "65plus") ageFactor = 1.5; // Adjust thresholds for age comparison for (var i = 0; i < thresholds.length; i++) { thresholds[i].adjVal = thresholds[i].val * ageFactor; } // Determine percentile via linear interpolation if (netWorth = thresholds[thresholds.length – 1].adjVal) { percentile = 99.9; } else { for (var j = 0; j = thresholds[j].adjVal && netWorth < thresholds[j+1].adjVal) { var valRange = thresholds[j+1].adjVal – thresholds[j].adjVal; var pRange = thresholds[j+1].p – thresholds[j].p; var position = (netWorth – thresholds[j].adjVal) / valRange; percentile = thresholds[j].p + (position * pRange); break; } } } // Format output var resultBox = document.getElementById("nwResultBox"); var nwValText = document.getElementById("nwValText"); var percentileResult = document.getElementById("percentileResult"); var comparisonText = document.getElementById("comparisonText"); resultBox.style.display = "block"; nwValText.innerHTML = "Your Net Worth: " + netWorth.toLocaleString('en-US', { style: 'currency', currency: 'USD' }); percentileResult.innerHTML = percentile.toFixed(1) + "th Percentile"; var ageText = (age === "all") ? "US households" : "households in your age group"; comparisonText.innerHTML = "Your wealth is higher than " + percentile.toFixed(1) + "% of " + ageText + "."; // Smooth scroll to result resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment