Congressional Apportionment Calculator
ANA›Life Services Authority›National Calculator Authority›Congressional Apportionment Calculator
.calc-container { max-width: 640px; margin: 2rem 0; padding: 1.5rem; background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); font-family: system-ui, -apple-system, sans-serif; } .calc-container h3 { font-family: Georgia, serif; font-size: 1.15rem; color: #1a1a1a; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; } .calc-row label { min-width: 160px; font-size: 0.9rem; color: #333; font-weight: 500; } .calc-row input[type="number"], .calc-row select { flex: 1; min-width: 120px; max-width: 200px; padding: 0.5rem 0.6rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.9rem; font-family: system-ui, sans-serif; color: #1a1a1a; background: #fafaf8; } .calc-row input:focus, .calc-row select:focus { outline: none; border-color: var(--ac, #3d5a80); box-shadow: 0 0 0 2px rgba(26,74,138,0.12); } .calc-row .unit { font-size: 0.82rem; color: #888; min-width: 30px; } .calc-btn { display: inline-block; margin-top: 0.5rem; padding: 0.55rem 1.5rem; background: var(--ac, #3d5a80); color: #fff; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: system-ui, sans-serif; } .calc-btn:hover { opacity: 0.9; } .calc-result { margin-top: 1.25rem; padding: 1rem 1.25rem; background: #f0f6fc; border-left: 3px solid var(--ac, #3d5a80); border-radius: 0 6px 6px 0; display: none; } .calc-result.visible { display: block; } .calc-result-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #666; margin-bottom: 0.25rem; } .calc-result-value { font-size: 1.6rem; font-weight: 700; color: var(--ac, #3d5a80); } .calc-result-detail { font-size: 0.85rem; color: #555; margin-top: 0.5rem; line-height: 1.5; } .calc-note { margin-top: 1rem; font-size: 0.8rem; color: #888; font-style: italic; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; } .calc-grid-item { padding: 0.6rem 0.8rem; background: #f8f9fa; border-radius: 4px; border: 1px solid #eee; } .calc-grid-item .label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; } .calc-grid-item .value { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; } @media (max-width: 720px) { .calc-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; } .calc-row label { min-width: auto; } .calc-row input[type="number"], .calc-row select { max-width: 100%; width: 100%; } .calc-grid { grid-template-columns: 1fr; } } .calc-chart { margin: 1rem 0; text-align: center; } .calc-chart svg { max-width: 100%; height: auto; } .calc-chart-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem; margin-top: 0.6rem; font-size: 0.8rem; color: #555; } .calc-chart-legend span { display: inline-flex; align-items: center; gap: 0.3rem; } .calc-chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; font-style: normal; } .calc-related { max-width: 640px; margin: 2rem 0 1rem; padding: 1.25rem 1.5rem; background: #f8f9fa; border: 1px solid #e8e8e8; border-radius: 8px; } .calc-related h3 { font-family: Georgia, serif; font-size: 1rem; color: #1a1a1a; margin: 0 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-related-list { list-style: none; padding: 0; margin: 0 0 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; } .calc-related-list li a { font-size: 0.88rem; color: var(--ac, #3d5a80); text-decoration: none; } .calc-related-list li a:hover { text-decoration: underline; } .calc-browse-all { margin: 0.5rem 0 0; font-size: 0.9rem; font-weight: 600; } .calc-browse-all a { color: var(--ac, #3d5a80); text-decoration: none; } .calc-browse-all a:hover { text-decoration: underline; } @media (max-width: 720px) { .calc-related-list { grid-template-columns: 1fr; } }
Congressional Apportionment Calculator
Calculate how 435 U.S. House seats are distributed among states using the Huntington-Hill Equal Proportions method — the official algorithm used after each decennial census.
Enter population for up to 10 states (or use the preloaded 2020 Census example). Seats are apportioned among states with population > 0.
State 1 Name
State 1 Population
State 2 Name
State 2 Population
State 3 Name
State 3 Population
State 4 Name
State 4 Population
State 5 Name
State 5 Population
State 6 Name
State 6 Population
State 7 Name
State 7 Population
State 8 Name
State 8 Population
State 9 Name
State 9 Population
State 10 Name
State 10 Population
Total House Seats to Apportion
Apportionment Method
Huntington-Hill (Equal Proportions) — Official Hamilton (Largest Remainder) Jefferson (Greatest Divisor / D'Hondt) Webster (Major Fractions) Adams (Smallest Divisor)
Calculate Apportionment
function conCalc() { var resultDiv = document.getElementById('con-result'); resultDiv.innerHTML = '';
// --- Collect states --- var states = []; for (var i = 1; i State ' + i + ' has a population but no name. Please enter a name.'; return; } if (!popRaw || isNaN(popRaw) || Number(popRaw) State "' + name + '" must have a valid population greater than 0.'; return; } states.push({ name: name, pop: Math.round(Number(popRaw)) }); }
if (states.length Please enter at least one state with a name and population.'; return; }
var totalSeatsEl = document.getElementById('con-total-seats'); var totalSeats = parseInt(totalSeatsEl.value); if (isNaN(totalSeats) || totalSeats Total seats must be at least ' + states.length + ' (one per state) and a positive integer.'; return; }
var method = document.getElementById('con-method').value;
var seats = []; var methodLabel = '';
if (method === 'huntington-hill') { methodLabel = 'Huntington-Hill (Equal Proportions)'; seats = huntingtonHill(states, totalSeats); } else if (method === 'hamilton') { methodLabel = 'Hamilton (Largest Remainder)'; seats = hamilton(states, totalSeats); } else if (method === 'jefferson') { methodLabel = 'Jefferson (Greatest Divisor / D'Hondt)'; seats = jefferson(states, totalSeats); } else if (method === 'webster') { methodLabel = 'Webster (Major Fractions)'; seats = webster(states, totalSeats); } else if (method === 'adams') { methodLabel = 'Adams (Smallest Divisor)'; seats = adams(states, totalSeats); }
// --- Compute summary stats --- var totalPop = states.reduce(function(s, st) { return s + st.pop; }, 0); var seatsAssigned = seats.reduce(function(s, x) { return s + x; }, 0);
// Build results table var html = '### Apportionment Results — ' + methodLabel + ' '; html += ''; html += '' + 'State' + 'Population' + 'Pop %' + 'Ideal Seats' + 'Seats Apportioned' + 'Seats %' + 'Avg District Size' + '';
for (var i = 0; i 0 ? Math.round(st.pop / s).toLocaleString() : 'N/A'; var bg = i % 2 === 0 ? '#f9f9f9' : '#fff'; html += '' + '' + st.name + '' + '' + st.pop.toLocaleString() + '' + '' + popPct + '%' + '' + idealQ + '' + '' + s + '' + '' + seatsPct + '%' + '' + distSize + '' + ''; }
// Totals row var avgDistrict = Math.round(totalPop / seatsAssigned).toLocaleString(); html += '' + 'TOTAL' + '' + totalPop.toLocaleString() + '' + '100.000%' + '' + totalSeats.toFixed(4) + '' + '' + seatsAssigned + '' + '100.000%' + '' + avgDistrict + '' + ''; html += '';
// Representation fairness metrics html += ''; html += '#### Representation Fairness Metrics '; html += ''; html += '' + 'State' + 'Absolute Deviation' + 'Relative Deviation' + 'Representation Ratio' + '';
for (var i = 0; i 1 = over-represented) var repRatio = ((s / seatsAssigned) / (st.pop / totalPop)).toFixed(4); var repColor = Math.abs(Number(repRatio) - 1) 1 ? '#1565c0' : '#b71c1c'); var bg = i % 2 === 0 ? '#f9f9f9' : '#fff'; html += '' + '' + st.name + '' + '' + absDev + '' + '' + relDev + '' + '' + repRatio + '' + ''; } html += ''; html += 'Representation Ratio > 1.00 = over-represented; < 1.00 = under-represented; 1.00 = perfectly proportional.
'; html += '';
resultDiv.innerHTML = html; }
// ============================================================ // APPORTIONMENT ALGORITHMS // ============================================================
// --- Huntington-Hill (Equal Proportions) --- // Official U.S. method since 1941. // Priority value for assigning the n-th seat to state i: // P(pop, n) = pop / sqrt(n * (n+1)) // Each state starts with 1 seat; remaining (total - numStates) seats // are assigned one at a time to the state with the highest priority value. function huntingtonHill(states, totalSeats) { var n = states.length; var seats = new Array(n).fill(1); // each state gets 1 guaranteed seat var remaining = totalSeats - n; if (remaining bestPriority) { bestPriority = priority; bestIdx = i; } } seats[bestIdx]++; } return seats; }
// --- Hamilton (Largest Remainder) --- // 1. Compute quota q_i = pop_i / totalPop * totalSeats // 2. Each state gets floor(q_i) seats initially. // 3. Remaining seats go to states with largest fractional remainders. function hamilton(states, totalSeats) { var totalPop = states.reduce(function(s, st) { return s + st.pop; }, 0); var quotas = states.map(function(st) { return st.pop / totalPop * totalSeats; }); var floors = quotas.map(function(q) { return Math.floor(q); }); var remainders = quotas.map(function(q, i) { return q - floors[i]; }); var seatsUsed = floors.reduce(function(s, x) { return s + x; }, 0); var leftover = totalSeats - seatsUsed;
// Sort indices by remainder descending var indices = remainders.map(function(_, i) { return i; }); indices.sort(function(a, b) { return remainders[b] - remainders[a]; });
var seats = floors.slice(); for (var k = 0; k totalSeats) lo = mid; else hi = mid; } var d = (lo + hi) / 2; var seats = states.map(function(st) { return Math.floor(st.pop / d); }); // Adjust for rounding errors var diff = totalSeats - seats.reduce(function(s, x) { return s + x; }, 0); if (diff > 0) { // Give extra seats to states with largest pop/d remainders var remainders = states.map(function(st, i) { return st.pop / d - seats[i]; }); var idx = remainders.map(function(, i) { return i; }); idx.sort(function(a, b) { return remainders[b] - remainders[a]; }); for (var k = 0; k totalSeats) lo = mid; else hi = mid; } var d = (lo + hi) / 2; var seats = states.map(function(st) { return Math.round(st.pop / d); }); var diff = totalSeats - seats.reduce(function(s, x) { return s + x; }, 0); if (diff !== 0) { var remainders = states.map(function(st, i) { return st.pop / d - seats[i]; }); var idx = remainders.map(function(, i) { return i; }); if (diff > 0) { idx.sort(function(a, b) { return remainders[b] - remainders[a]; }); for (var k = 0; k totalSeats) hi = mid; else lo = mid; } var d = (lo + hi) / 2; var seats = states.map(function(st) { return Math.ceil(st.pop / d); }); var diff = totalSeats - seats.reduce(function(s, x) { return s + x; }, 0); if (diff > 0) { var remainders = states.map(function(st, i) { return st.pop / d - (seats[i] - 1); }); var idx = remainders.map(function(_, i) { return i; }); idx.sort(function(a, b) { return remainders[b] - remainders[a]; }); for (var k = 0; k
#### Formulas
Huntington-Hill (Equal Proportions) — Official U.S. Method:
Each state receives 1 guaranteed seat. Remaining seats are assigned iteratively. At each step, the state with the highest priority value receives the next seat:
P(i, n) = Populationi / √(n × (n + 1))
where n is the state's current seat count. This minimizes the relative difference in representation between any two states.
Hamilton (Largest Remainder):
Quotai = (Populationi / Total Population) × Total Seats Initial seats = floor(Quotai) Remaining seats → states with largest fractional remainders
Jefferson / D'Hondt (Greatest Divisor):
Find divisor d: Σ floor(Populationi / d) = Total Seats Seatsi = floor(Populationi / d)
Webster (Major Fractions):
Find divisor d: Σ round(Populationi / d) = Total Seats Seatsi = round(Populationi / d)
Adams (Smallest Divisor):
Find divisor d: Σ ceil(Populationi / d) = Total Seats Seatsi = ceil(Populationi / d)
Representation Ratio:
Ratioi = (Seatsi / Total Seats) / (Populationi / Total Population)
A ratio of 1.00 = perfectly proportional. >1.00 = over-represented. <1.00 = under-represented.
#### Assumptions & References
- The Huntington-Hill Equal Proportions method has been the official U.S. apportionment method since the Apportionment Act of 1941 (2 U.S.C. § 2a).
- The U.S. House of Representatives is fixed at 435 seats by the Reapportionment Act of 1929.
- Every state is constitutionally guaranteed at least 1 seat (Article I, Section 2; 14th Amendment).
- Apportionment is based on the total resident population (including non-citizens) as counted by the decennial Census.
- The District of Columbia, Puerto Rico, and other U.S. territories are not included in House apportionment.
- Population figures used in the preloaded example are from the 2020 U.S. Census (top 5 states by population).
- The Huntington-Hill method minimizes the relative difference in representation; Webster minimizes the absolute difference; Hamilton can exhibit the Alabama Paradox.
- Reference: U.S. Census Bureau — Congressional Apportionment (census.gov/topics/public-sector/congressional-apportionment.html)
- Reference: Balinski, M.L. & Young, H.P. (2001). Fair Representation: Meeting the Ideal of One Man, One Vote. Brookings Institution Press.
More Calculators
- EV Range vs. Tennessee Road Trip Planner
- EV Range vs. Charging Time Calculator
- Termite Damage Repair Cost Estimator
- Appliance Energy Star Savings Calculator
- Termite Inspection Frequency Calculator
- Appliance Total Cost of Ownership Calculator
- New Jersey Contractor License Fee Calculator
- New Hampshire Sales Tax Calculator for Construction Materials
- New Jersey Contractor Insurance Cost Estimator
- New Jersey Permit Cost Estimator
- New Mexico Contractor License Fee Calculator
Read Next
Ev Range Vs Tennessee Road Trip Planner ANA › Life Services Authority › National Calculator Authority › EV Range vs.
Study Time Planner Authority Network America › Life Services Authority › National Calculator Authority .calc-container { max-width: 640px;...