Article

Cheapest States to Live In 2025 – Top 5 States Where Your Dollar Will Go Further

The cheapest states to live in the United States. Places to live rich, below the national average cost of living (COL).

Written by human
Written by Joe Chappius

- Apr 7, 2025

Edited by Sam Onelia

19 min read | Personal finance

In today's economic climate, where the cost of living is on the rise, finding a place where your money stretches further can make a significant difference in your quality of life. As the price of residential real estate has soared by 30% over the past three years, many Americans are rethinking where they call home.

With the rise of remote work, the opportunity to live in more affordable states without compromising on lifestyle has never been more accessible.

What is the cheapest state to live in?

  1. Mississippi
  2. Oklahoma
  3. Kansas
  4. Alabama
  5. Georgia

From affordable housing and lower childcare costs to reasonable living wages, these states offer a range of benefits that can help you achieve greater financial stability and peace of mind.

Whether you're looking for a place with a strong sense of community, excellent education opportunities, or a mild climate, there's a state on this list that can meet your needs.

<div id="map-container" style="width: 100%; max-width: 1000px; margin: 20px auto; padding: 10px;">
<h2 style="text-align: center; font-family: Arial, sans-serif; color: #333;" id="Cost_of_Living_Index_by_State">Cost of Living Index by State</h2>
<div id="map" style="width: 100%; height: 0; padding-bottom: 60%; position: relative; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1);"></div>
</div>

<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css">
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-ajax/2.1.0/leaflet.ajax.min.js"></script>

<script>
function adjustMapSize() {
var mapContainer = document.getElementById('map-container');
var windowHeight = window.innerHeight;
var containerTop = mapContainer.getBoundingClientRect().top;
var maxHeight = windowHeight - containerTop - 40; // 40px buffer
var mapElement = document.getElementById('map');
mapElement.style.height = Math.min(maxHeight, 600) + 'px';
}

document.addEventListener('DOMContentLoaded', function() {
var map = L.map('map', {
zoomSnap: 0.1
});

L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; OpenStreetMap contributors'
}).addTo(map);

var costData = {
"Alabama": 88.2, "Alaska": 126.7, "Arizona": 106.9, "Arkansas": 89.9, "California": 139.8,
"Colorado": 105.8, "Connecticut": 116.7, "Delaware": 103.9, "Florida": 103.0, "Georgia": 89.3,
"Hawaii": 181.5, "Idaho": 99.7, "Illinois": 91.4, "Indiana": 88.9, "Iowa": 89.0, "Kansas": 87.2,
"Kentucky": 95.2, "Louisiana": 92.8, "Maine": 116.9, "Maryland": 125.1, "Massachusetts": 147.9,
"Michigan": 91.6, "Minnesota": 96.8, "Mississippi": 84.9, "Missouri": 89.9, "Montana": 104.8,
"Nebraska": 91.5, "Nevada": 105.4, "New Hampshire": 113.2, "New Jersey": 118.6, "New Mexico": 93.6,
"New York": 136.8, "North Carolina": 95.0, "North Dakota": 96.7, "Ohio": 92.0, "Oklahoma": 85.7,
"Oregon": 120.6, "Pennsylvania": 97.9, "Rhode Island": 113.8, "South Carolina": 94.2,
"South Dakota": 93.8, "Tennessee": 89.5, "Texas": 90.9, "Utah": 102.4, "Vermont": 116.7,
"Virginia": 103.2, "Washington": 113.9, "West Virginia": 89.3, "Wisconsin": 94.8, "Wyoming": 91.8
};

function getColor(d) {
return d > 140 ? '#005a32' :
d > 120 ? '#238b45' :
d > 100 ? '#41ab5d' :
d > 95 ? '#74c476' :
d > 90 ? '#a1d99b' :
d > 85 ? '#c7e9c0' :
'#edf8e9';
}

function style(feature) {
return {
fillColor: getColor(costData[feature.properties.name]),
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7
};
}

function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 5,
color: '#666',
dashArray: '',
fillOpacity: 0.7
});
layer.bringToFront();
info.update(layer.feature.properties);
}

function resetHighlight(e) {
geojson.resetStyle(e.target);
info.update();
}

function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
});
}

var geojson;

var info = L.control();

info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};

info.update = function (props) {
this._div.innerHTML = (props ? '<b>' + props.name + ': ' + costData[props.name].toFixed(1)
: 'Hover over a state to see its index');
};

info.addTo(map);

fetch('https://raw.githubusercontent.com/PublicaMundi/MappingAPI/master/data/geojson/us-states.json')
.then(response => response.json())
.then(data => {
geojson = L.geoJson(data, {
style: style,
onEachFeature: onEachFeature,
filter: function(feature) {
return feature.properties.name !== 'Alaska' && feature.properties.name !== 'Hawaii';
}
}).addTo(map);

// Fit bounds to continental US
var continentalBounds = geojson.getBounds();
map.fitBounds(continentalBounds, {
padding: [20, 20] // Add some padding
});
});

var legend = L.control({position: 'bottomright'});

legend.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info legend');
div.innerHTML = '<h4>Cost of Living Index' +
'<div class="gradient">';
return div;
};

legend.addTo(map);

adjustMapSize();
window.addEventListener('resize', adjustMapSize);
map.invalidateSize();
});
</script>

<style>
.info {
padding: 6px 8px;
font: 14px/16px Arial, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
line-height: 18px;
color: #555;
}
.legend .gradient {
width: 200px;
height: 20px;
background: linear-gradient(to right, #edf8e9, #c7e9c0, #a1d99b, #74c476, #41ab5d, #238b45, #005a32);
margin-bottom: 5px;
}
.legend .labels {
display: flex;
justify-content: space-between;
}
.legend .left, .legend .right {
font-size: 12px;
}
</style>


Cost of Living Index by State


function adjustMapSize() {
var mapContainer = document.getElementById('map-container');
var windowHeight = window.innerHeight;
var containerTop = mapContainer.getBoundingClientRect().top;
var maxHeight = windowHeight - containerTop - 40; // 40px buffer
var mapElement = document.getElementById('map');
mapElement.style.height = Math.min(maxHeight, 600) + 'px';
}
document.addEventListener('DOMContentLoaded', function() {
var map = L.map('map', {
zoomSnap: 0.1
});
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; OpenStreetMap contributors'
}).addTo(map);
var costData = {
"Alabama": 88.2, "Alaska": 126.7, "Arizona": 106.9, "Arkansas": 89.9, "California": 139.8,
"Colorado": 105.8, "Connecticut": 116.7, "Delaware": 103.9, "Florida": 103.0, "Georgia": 89.3,
"Hawaii": 181.5, "Idaho": 99.7, "Illinois": 91.4, "Indiana": 88.9, "Iowa": 89.0, "Kansas": 87.2,
"Kentucky": 95.2, "Louisiana": 92.8, "Maine": 116.9, "Maryland": 125.1, "Massachusetts": 147.9,
"Michigan": 91.6, "Minnesota": 96.8, "Mississippi": 84.9, "Missouri": 89.9, "Montana": 104.8,
"Nebraska": 91.5, "Nevada": 105.4, "New Hampshire": 113.2, "New Jersey": 118.6, "New Mexico": 93.6,
"New York": 136.8, "North Carolina": 95.0, "North Dakota": 96.7, "Ohio": 92.0, "Oklahoma": 85.7,
"Oregon": 120.6, "Pennsylvania": 97.9, "Rhode Island": 113.8, "South Carolina": 94.2,
"South Dakota": 93.8, "Tennessee": 89.5, "Texas": 90.9, "Utah": 102.4, "Vermont": 116.7,
"Virginia": 103.2, "Washington": 113.9, "West Virginia": 89.3, "Wisconsin": 94.8, "Wyoming": 91.8
};
function getColor(d) {
return d > 140 ? '#005a32' :
d > 120 ? '#238b45' :
d > 100 ? '#41ab5d' :
d > 95 ? '#74c476' :
d > 90 ? '#a1d99b' :
d > 85 ? '#c7e9c0' :
'#edf8e9';
}
function style(feature) {
return {
fillColor: getColor(costData[feature.properties.name]),
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7
};
}
function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 5,
color: '#666',
dashArray: '',
fillOpacity: 0.7
});
layer.bringToFront();
info.update(layer.feature.properties);
}
function resetHighlight(e) {
geojson.resetStyle(e.target);
info.update();
}
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
});
}
var geojson;
var info = L.control();
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};
info.update = function (props) {
this._div.innerHTML = (props ? '<b>' + props.name + ': ' + costData[props.name].toFixed(1)
: 'Hover over a state to see its index');
};
info.addTo(map);
fetch('https://raw.githubusercontent.com/PublicaMundi/MappingAPI/master/data/geojson/us-states.json')
.then(response => response.json())
.then(data => {
geojson = L.geoJson(data, {
style: style,
onEachFeature: onEachFeature,
filter: function(feature) {
return feature.properties.name !== 'Alaska' && feature.properties.name !== 'Hawaii';
}
}).addTo(map);
// Fit bounds to continental US
var continentalBounds = geojson.getBounds();
map.fitBounds(continentalBounds, {
padding: [20, 20] // Add some padding
});
});
var legend = L.control({position: 'bottomright'});
legend.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info legend');
div.innerHTML = '<h4>Cost of Living Index' +
'<div class="gradient">';
return div;
};
legend.addTo(map);
adjustMapSize();
window.addEventListener('resize', adjustMapSize);
map.invalidateSize();
});


.info {
padding: 6px 8px;
font: 14px/16px Arial, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
line-height: 18px;
color: #555;
}
.legend .gradient {
width: 200px;
height: 20px;
background: linear-gradient(to right, #edf8e9, #c7e9c0, #a1d99b, #74c476, #41ab5d, #238b45, #005a32);
margin-bottom: 5px;
}
.legend .labels {
display: flex;
justify-content: space-between;
}
.legend .left, .legend .right {
font-size: 12px;
}

The Cost Of Living Index

The Cost of Living Index measures the average cost of living in various states relative to the national average, which is set at 100. States with a Cost of Living Index below 100 are more affordable than the national average, making them attractive options for those looking to maximize their income.

This index takes into account essential expenses like food, shelter, clothing, utilities, transportation, healthcare, public education, and taxes.

Interesting Fact: Mississippi vs. Hawaii

Mississippi, the cheapest state to live in, has a Cost of Living Index of 84.9, making it much more affordable than the national average.
In contrast, Hawaii, the most expensive state, has a Cost of Living Index of 181.5. Although the median household income in Hawaii is $91,010 compared to $52,788 in Mississippi, this difference in income does not mean that you will have more spending power in Hawaii.
In fact, the higher cost of living in Hawaii means that your dollar doesn't go as far. In Mississippi, you can stretch your income much further, getting more value out of every dollar you earn. It's not just about how much you make—it's about how much your money can buy.

The 5 Cheapest States To Live In

Here is our top 5 list of cheapest states to live in the U.S. based on 2 adults working in a household of 4 people.

The monthly rent reflects the average rent for a two-bedroom apartment.

Living in any of these states will allow you to save more of every dollar that you earn.

​1. Mississippi

  • Cost of Living Index: 84.9

  • Living wage per hour: $21.63

  • Median household income: $52,788

  • Average rent per month: $851

  • Average childcare: $11,874

Okay, so it's not as glamorous as other states but Mississippi is definitely one of the cheaper states to live in the U.S. and it definitely has its benefits.

The state offers over 50 colleges and universities and is known for its great sense of community. The worries of traffic and smog will fade away after a few months of living here, making Mississippi a great choice and the cheapest state to live in.

​2. Oklahoma

  • Cost of Living Index: 85.7

  • Living wage per hour: $23.27

  • Median household income: $53,840

  • Average rent per month: $907

  • Average child care: $15,792

Oklahoma has a mild climate, which can be a big drawcard to those who don't like drastic changes in temperatures.

The mild weather makes for beautiful green scenery all year round. For the most part, it has a strong economy.

The cities are full of college students, and there is the vibrancy of big-city life if you want that.

Education opportunities are also vast. Extra study on the side and you might increase your income even more.

​3. Kansas

  • Cost of Living Index: 87.2

  • Living wage per hour: $23.24

  • Median household income: $61,091

  • Average rent per month: $942

  • Average child care: $16,332

Kansas has plenty of booming industries such as agriculture and aerospace, and also boasts one of the lowest cost of living rates in the U.S.

Kansas also has a good job market with an unemployment rate of less than 4%.

If you enjoy all the seasons, Kansas is the perfect fit. From hot summers to cold winters and everything in between, Kansas offers a variety of climates.

​4. Alabama

  • Cost of Living Index: 88.2

  • Living wage per hour: $22.47

  • Median household income: $61,091

  • Average rent per month: $883

  • Average child care: $13,319

Alabama has warm weather, great college football, and a low cost of living. The state of Alabama also has one of the lowest unemployment rates in the U.S. and great education - like the The University of Alabama, Auburn University, and Troy University.

Alabama is a great state to live in and has something for everyone. It is rich in culture, has beautiful nature scenes, and has very affordable housing costs.

The cost of living in Alabama is lower than most states in the U.S., making it one of the most popular states to live in for 2023.

5. Georgia

  • Cost of Living Index: 89.3

  • Living wage per hour: $23.27

  • Median household income: $61,224

  • ****Average rent per month: $1,090

  • Average child care: $14,906

Georgia is a very popular state with more than 100,000 people moving there every year. The state has a laid-back culture, clean air, and good food.

The state of Georgia has plenty of safe cities to live in, which is why it's ideal for young families and college students. With coastal beaches and the popular Georgia State University, the state is known for its southern hospitality.

Here is a list of the 10 cheaper states to live in the U.S.:

  • Mississippi (84.9)

  • Oklahoma (85.7)

  • Kansas (87.2)

  • Alabama (88.2)

  • Georgia (89.30)

  • West Virginia (88.5)

  • Missouri (88.6)

  • Indiana (88.9)

  • Iowa (88.9)

  • Tennessee (89.5)

Need some extra cash?

Find the best personal loan in minutes through our comparison. 100% free and easy to use.

Get a loan with Lending For Bad Credit!
About hero image

Lowest Cost of Living Between All States

Here is a full list of the lowest cost and least expensive states to live in, based on the cost of living per state.

RankStateCost of Living IndexHousingGroceryUtilities
1Mississippi84.968.592.687.9
2Oklahoma85.771.093.395.2
3Kansas87.271.79298.1
4Alabama88.269.997.8100.7
5Georgia89.375.493.691
6West Virginia89.367.898.794.5
7Missouri89.979.595.995.3
8Indiana88.977.393.3103.1
9Iowa897210194
10Tennessee89.58094.294
11Arkansas89.978.192.996.9
12Texas90.982.589.9100.5
13Illinois91.480.79892.2
14Nebraska91.583.697.786.5
15Michigan91.680.691.799.1
16Wyoming91.880.410383.2
17Ohio9278.498.794.8
18Louisiana92.886.996.487.6
19New Mexico93.688.298.191.4
20South Dakota93.891104.689.3
21South Carolina94.281.1101110.8
22Wisconsin94.884.197.7102.7
23North Carolina9588.99896.6
24Kentucky95.278.394108.5
25North Dakota96.792.310294.8
26Minnesota96.884101.399.4
27Pennsylvania97.987.4104.9109.9
28Puerto Rico9873.7119.9151.6
29Idaho99.710697.682.2
30Utah102.4108.299.893.1
31Florida103107.6105101.7
32Virginia103.2110.396.398.8
33Delaware103.9103.810394.6
34Montana104.8119102.584.9
35Colorado105.8122.794.290.5
36Nevada105.4118105.194.6
37Arizona106.9121.5101.6100.4
38New Hampshire113.2105.5103.1112.4
39Rhode Island113.8116.9100.1125.8
40Washington113.9125.5108.189.6
41Connecticut116.7122.3104.9131.4
42Vermont116.7130.1107.8120.7
43Maine116.9126.6101.899.8
44New Jersey118.6141.9103.1112.4
45Oregon120.6144.3107.1106
46Maryland125.1162.7112.1106.2
47Alaska126.7120.3135148.4
48New York136.8191.5112.199.5
49California139.8193.2116.4125
50Massachusetts147.9204.7112.8122.9
51District of Columbia154.5249.6112107
52Hawaii181.5312.8150.3141.3

To better understand the costs of living costs across all states, we need to take a closer look at the national costs of living.

The average household in the United States spends $61,334 a year on expenses. Of this, around $1,784 (or 34.9%) a month is dedicated to housing and housing-related costs.

While the median price of a single-family home in the U.S. is $396,300, the average rent for a two-bedroom apartment is around $1,295 a month.

American households dedicate a further 16% of their spending to transportation which amounts to about $9,826 a year.

Healthcare costs amount to an additional $5,177 every year, while food, groceries, and dining amount to another $7,317 every year.

Personal income for individuals nationwide is $35,805 while the median household income is $67,521 a year.

The living wage for the United States is $68,808 annually for a family of four.

Living Wage by State

Below is a list of states according to the living wage needed by a household to support themselves, based on a family of four with 2 adults working full-time.

RankStateLiving Wage
1South Dakota$28,853
2West Virginia$29,306
3Kentucky$29,459
4Arkansas$29,491
5Mississippi$29,542
6Wyoming$29,629
7North Dakota$29,712
8Tennessee$29,905
9Oklahoma$29,936
10Ohio$29,982
11Alabama$30,248
12Indiana$30,323
13Iowa$30,655
14Idaho$30,663
15Louisiana$30,688
16Montana$30,742
17Nebraska$30,847
18Kansas$30,943
19Missouri$31,060
20New Mexico$31,074
21Michigan$31,077
22Wisconsin$31,235
23Nevada$31,547
24Texas$31,702
25Pennsylvania$32,157
26Alaska$32,406
27Utah$32,408
28North Carolina$32,572
29South Carolina$32,994
30Georgia$33,255
31Florida$33,315
32Arizona$33,442
33Minnesota$33,539
34Delaware$33,551
35Maine$33,696
36Rhode Island$34,045
37Vermont$34,166
38Illinois$34,471
39New Hampshire$35,054
40Connecticut$35,574
41Washington$35,810
42Oregon$36,285
43Colorado$36,285
44Virginia$36,517
45Maryland$37,288
46New Jersey$37,906
47California$40,372
48Hawaii$40,944
49Massachusetts$41,416
50New York$41,700

Does your dollar stretch further where you live compared to the rest of the country? Comment below.

Our Commitment to Transparency

At Financer.com, we're committed to helping you with your finances. All our content abides by our Editorial Guidelines. We are open about how we review products and services in our Review Process and how we make money in our Advertiser Disclosure.

Comments

Join Financer Stacks - Your weekly guide to mastering money basics, stacking extra income, and creating a life where money works for you.