Equal odds and population weighted odds are different tools
Most state pickers give every state a flat 1 in 50 chance, and for a name generator or a classroom prompt that is the correct default. It falls apart the moment someone wants a batch that reflects where Americans actually live. California holds an estimated 39 million residents against Wyoming's 580,000, a ratio of roughly 67 to 1. A generator that treats them as equally likely is not modeling the population, it is modeling the map. Switch this tool to population weighted mode and California comes up about 67 times more often than Wyoming over a large batch, using the same 2024 Census Bureau population estimates that back the weighting.
Both modes support drawing without repeats. Equal odds without repeats runs a Fisher-Yates shuffle on the filtered pool and slices off the count you asked for. Weighted odds without repeats uses a different method, since shuffling by population would just reorder duplicates. This tool applies the Efraimidis-Spirakis A-ExpJ algorithm: every state gets a key of Math.random() raised to the power of 1 divided by its population, and the highest keys win. Heavier states tend toward higher keys without ever being guaranteed a slot, so a full batch of all 50 still comes out in a different, population-tilted order each time.
Four Census regions, one region that surprises people
The region filter follows the four regions the US Census Bureau has used since 1950, not the informal regions people draw on a napkin. The surprise is the South region, which the Bureau defines as 16 states running from Delaware and Maryland down through Texas and Oklahoma. States many people mentally file as Mid-Atlantic or Southwest sit inside it by that definition.
| Region | States | Includes |
|---|---|---|
| Northeast | 9 | New England plus New York, New Jersey and Pennsylvania |
| Midwest | 12 | The Great Lakes states and the northern Plains |
| South | 16 | Delaware and Maryland through Texas, Oklahoma and the Southeast |
| West | 13 | The Mountain states, the Pacific coast, Alaska and Hawaii |
Where the numbers come from
Capitals and statehood years are fixed public facts and do not change. Population figures are different: this tool rounds 2024 Census Bureau Vintage estimates to the nearest tenth of a million, so treat them as directionally correct rather than survey grade. A state's population moves every year, and a page like this one gets updated on its own schedule, not on the Bureau's.
What this generator does not do
- It does not include Puerto Rico, Guam, the US Virgin Islands, American Samoa or the Northern Mariana Islands. None of the five inhabited territories is a state, and folding them into a "random state" pool without saying so would misrepresent the premise. Washington, D.C. is the only non-state option, and it stays off by default for the same reason.
- It shows one time zone per state, the zone covering the capital or the bulk of the population. Kentucky, Tennessee, Indiana, Michigan, Texas, Nebraska, Kansas, North Dakota, South Dakota and Idaho all legally split across two zones. Treat the listed zone as a majority reading, not a legal boundary.
- Population weighted mode is built for realistic-feeling samples, classroom demonstrations and quick what-if questions. It is not a substitute for a proper stratified sample in actual survey research, where the sampling frame and margin of error need documenting on their own terms.
Practical uses
Geography teachers run a state-of-the-day prompt with equal odds and no repeats so every student's state is different across a term. Developers seeding US-only address test data pair this with the random ZIP code generator so each fake record lands in a state that actually contains that ZIP. Trivia writers use population weighted mode paired with a small batch to talk about a state most contestants have actually visited.
Nearby tools
For a full mailing address instead of a state name, the random address generator and the random ZIP code generator build out the rest of the record. The random country generator covers the same idea at a global scale, and the random nationality generator pairs a person with a country rather than a place. Browse the rest under all generators.
