Food Insecurity and Food Deserts: Issues and Solutions function table_sort(table_name, column_number, data_type) { var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0; table = document.getElementById(table_name); switching = true; // Set the sorting direction to ascending: dir = "asc"; /* Make a loop that will continue until no switching has been done: */ while (switching) { /* Start by saying no switching is done */ switching = false; rows = table.getElementsByTagName("TR"); /* Loop through all table rows (except the first, which contains table headers) start the index at 2 to skip 2 header rows */ for (i = 2; i < (rows.length - 1); i++) { /* Start by saying there should be no switching */ shouldSwitch = false; /* Get the two elements you want to compare, one from current row and one from the next: */ x = rows[i].getElementsByTagName("TD")[column_number]; y = rows[i + 1].getElementsByTagName("TD")[column_number]; /* Check if the two rows should switch place, based on the direction, asc or desc: */ if (dir == "asc") { /* text data */ if (data_type == 0) { if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } /* numeric data */ if (data_type == 1) { /* remove commas and convert to numeric */ x_num = x.innerHTML; while (x_num.search(",") >= 0) { x_num = (x_num + "").replace(',', ''); } /* temp removed x_num = parseInt(x_num, 10); */ x_num = parseFloat(x_num); y_num = y.innerHTML; while (y_num.search(",") >= 0) { y_num = (y_num + "").replace(',', ''); } /* temp removed y_num = parseInt(y_num, 10); */ y_num = parseFloat(y_num); if (x_num > y_num) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } } else if (dir == "desc") { /* text data */ if (data_type == 0) { if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } /* numeric data */ if (data_type == 1) { /* remove commas and convert to numeric */ x_num = x.innerHTML; while (x_num.search(",") >= 0) { x_num = (x_num + "").replace(',', ''); } /* temp removed x_num = parseInt(x_num, 10); */ x_num = parseFloat(x_num); y_num = y.innerHTML; while (y_num.search(",") >= 0) { y_num = (y_num + "").replace(',', ''); } /* temp removed y_num = parseInt(y_num, 10); */ y_num = parseFloat(y_num); if (x_num < y_num) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } } } if (shouldSwitch) { /* If a switch has been marked, make the switch and mark that a switch has been done: */ rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; // Each time a switch is done, increase this count by 1: switchcount ++; } else { /* If no switching has been done AND the direction is "asc", set the direction to "desc" and run the while loop again. */ if (switchcount == 0 && dir == "asc") { dir = "desc"; switching = true; } } } } function food_ask(food_question, food_question_answer) { document.getElementById(food_question).innerHTML = food_question_answer; } function food_answer(food_question, food_question_answer) { document.getElementById(food_question).innerHTML = food_question_answer; } function food_identify(food_sound, food_answer) { document.getElementById(food_sound).innerHTML = food_answer; } function food_reset(food_sound, food_answer) { document.getElementById(food_sound).innerHTML = food_answer; } function imageswap(box, boximage, boxcaption, boxtext) { document.getElementById(box).src = boximage; document.getElementById(boxcaption).innerHTML = boxtext; } function pageswap(page, pagesource, pagecaption, pagetext) { document.getElementById(page).src = pagesource; document.getElementById(pagecaption).innerHTML = pagetext; } function disptext(textinfo) { document.getElementById(textinfo).style.display = 'block'; } function hidetext(textinfo) { document.getElementById(textinfo).style.display = 'none'; }
#pimafoodtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #pimafoodtable td, #pimafoodtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #pimafoodtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #pimafoodtable td { vertical-align: top; } #pimafoodtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #pimafoodtable tr:hover { cursor: pointer; } #pimafoodtable a:link { cursor: pointer; } #ghgtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #ghgtable td, #ghgtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #ghgtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #ghgtable td { vertical-align: top; } #ghgtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #ghgtable tr:hover { cursor: pointer; } #ghgtable a:link { cursor: pointer; } #deathtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #deathtable td, #deathtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #deathtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #deathtable td { vertical-align: top; } #deathtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #deathtable tr:hover { cursor: pointer; } #deathtable a:link { cursor: pointer; } #natdistable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #natdistable td, #natdistable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #natdistable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #natdistable td { vertical-align: top; } #natdistable tr:nth-child(even) { color: black; background-color: #EDBB99; } #natdistable tr:hover { cursor: pointer; } #natdistable a:link { cursor: pointer; } #pandemictable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #pandemictable td, #pandemictable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #pandemictable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #pandemictable td { vertical-align: top; } #pandemictable tr:nth-child(even) { color: black; background-color: #EDBB99; } #pandemictable tr:hover { cursor: pointer; } #pandemictable a:link { cursor: pointer; } #actionstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #actionstable td, #actionstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #actionstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #actionstable td { vertical-align: top; } #actionstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #actionstable tr:hover { cursor: pointer; } #actionstable a:link { cursor: pointer; } #lockdowntable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #lockdowntable td, #lockdowntable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #lockdowntable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #lockdowntable td { vertical-align: top; } #lockdowntable tr:nth-child(even) { color: black; background-color: #EDBB99; } #lockdowntable tr:hover { cursor: pointer; } #lockdowntable a:link { cursor: pointer; } #nutrientstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #nutrientstable td, #nutrientstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #nutrientstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #nutrientstable td { vertical-align: top; } #nutrientstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #nutrientstable tr:hover { cursor: pointer; } #nutrientstable a:link { cursor: pointer; } #committable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #committable td, #committable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #committable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #committable td { vertical-align: top; } #committable tr:nth-child(even) { color: black; background-color: #EDBB99; } #committable tr:hover { cursor: pointer; } #committable a:link { cursor: pointer; } #fedprogstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #fedprogstable td, #fedprogstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #fedprogstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #fedprogstable td { vertical-align: top; } #fedprogstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #fedprogstable tr:hover { cursor: pointer; } #fedprogstable a:link { cursor: pointer; } #data { border-collapse: collapse; } #data td, #data th { border: 2px solid darkblue; padding: 2px; text-align: center; } #data th { vertical-align: bottom; color: lightblue; background-color: darkblue; } #data tr:nth-child(even) { color: darkblue; background-color: lightskyblue; } #data tr:hover { color: lightblue; background-color: darkblue; cursor: pointer; } #data a:link { cursor: pointer; } #innertable td { border-style: none; border-collapse: collapse; border: hidden; }
Introduction
Sugary, high calorie snacks are components of a food desert
D. Meeks
Walmart, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
The relationships among hunger, food access, nutrition and health are complicated.
Healthy eating to maintain good health is not necessarily obvious and frequently very difficult for those who are hungry.
Individuals and families may live in neighborhoods where food is available, but that does not imply that the food provides sufficient nutrition for a healthy lifestyle. Unlike grocery stores, which provide a large variety of fruits and vegetables, convenient corner stores and quick marts in poor neighborhoods stock fat-filled and sugary snacks that provide empty calories and little nutrition.
Food insecurity leads to poor health, placing enormous social and financial burdens on public health and welfare systems, which can't keep up with demand. Educating students throughout their elementary, middle school and high school years about the benefits of a healthy diet can mitigate some of the damage done by a poor diet, leading to improved quality of life, better job opportunities, higher school and work attendance and reduced reliance on government programs.
Nutrition and Health
Like hunger, poor and inadequate nutrition has led to a health crisis in the U.S. Poor nutrition also has far-reaching economic, social and political impacts.
USDA food pyramid 1992 to 2005
U.S. Department of Agriculture
Apr. 4, 2006
Wikipedia food pyramid
https://en.wikipedia.org/wiki/Food_pyramid_
(nutrition)#/media/File:USDA_Food_Pyramid.gif
public domain
Poor diet leads to chronic diseases, disability and early death.
It deprives families of breadwinners and parents, places psychological strains on caretakers, reduces quality of life, stresses businesses that
deal with absenteeism and functional limitations, requires replacing sick employees with lower-paid temporary employees and increases health insurance costs.
These affect local, state and federal tax revenues, social security disability costs, government welfare and nutritional program costs that are spread more thinly
as the number of individuals and families depending on social programs for basic needs increases.[5]
According to the Centers for Disease Control and Prevention (CDC):
20% of young people aged 2 to 19 years and 42% of adults are obese,having abnormal or excessive fat accumulation that presents a risk to health putting them at risk for heart disease, type 2 diabetesa disease that occurs when blood sugar is too high for the body to process and some cancers
two of the leading causes of heart disease and strokeoccurs when the blood supply to part of the brain is blocked or reduced are high blood pressure and high blood cholesterolthe condition of having too much fat in one's blood
unhealthy diet is responsible for up to 45% of all cardiometabolic disease deaths (CMD)a group of common but often preventable conditions including heart attack, stroke, diabetes, insulin resistance and non-alcoholic fatty liver disease
consuming too much sodiumhelps maintain a balance of body fluids and keep muscles and nerves running smoothly but most Americans eat too much of it can increase blood pressure and the risk of heart disease and stroke
current sodium guidelines recommend getting less than 2,300 milligramsone thousandth of a gram a day, but the average American consumes more than 3,400 milligrams per day
more than 70% of the sodium that Americans eat comes from packaged, processed, store-bought and restaurant foods
people who are overweight or obese are at increased risk of type 2 diabetes because they are less able to use the insulina hormone produced in the pancreas that regulates the amount of glucose in the blood they manufacture
96 million, more than 1 in 3 American adults, are prediabetic,a condition, that without intervention, is likely to become diabetes and more than 8 in 10 of them don't know they have this condition
the number of adults with diagnosed diabetes has nearly doubled in the last 2 decades as the U.S. population has increased, aged and become more overweight
consuming sugar-sweetened beverages and highly processed food often leads to weight gain, obesity and other chronic conditions that put people at higher risk of at least 13 types of cancer, including uterine, breast cancer in postmenopausal women and colorectal cancer
the risk of colorectal cancer is also associated with eating red and processed meat.[3],[4]
nutrient↕
substances/sources
health benefits
vitamins
fat soluble:
vitamins A, D, E and K
water soluble: vitamin B-1 (thiamine), B-12 (cyanocobalamin), B-6,
B-2 (riboflavin), B-5 (pantothenic acid), B-3 (niacin), B-9 (folate, folic acid), B-7 (biotin), C
boosting the immune system
prevent or delay certain cancers
strengthen teeth and bones
aid calcium absorption
maintain healthy skin
help metabolize proteins and carbohydrates
support healthy blood
assist brain and nervous system functioning
minerals
major minerals: magnesium, calcium, phosphorus, sulfur, sodium, potassium, chloride
trace minerals: iron, selenium, zinc, manganese, chromium, copper, iodine, fluoride, molybdenum
major: balance water levels
maintain healthy skin, hair, and nails
improve bone health
trace: strengthen bones, prevent tooth decay, aid in blood clotting, help transport oxygen, support the immune system, support healthy blood pressure
protein
lean red meats, poultry, including chicken and turkey, fish and other seafood, beans and legumes, eggs, dairy products, soy, nuts, some grains, including quinoa
ensure growth and development of muscles, bones, hair, and skin, form antibodies, hormones, and other essential substances, serve as a fuel source for cells and tissues when needed
fats
nuts, fish, such as salmon and tuna, vegetable oils, seeds
promote: cell growth and new cells, blood clotting, building new cells, reduce the risk of heart disease and type 2 diabetes, muscle movement, balance blood sugar, brain functioning, mineral and vitamin absorption, hormone production, immune function
carbohydrates
quinoa, brown rice, vegetables, whole grain pasta, bread, and other baked goods, oatmeal, fruits, barley
support the immune system, brain function, nervous system, energy to perform tasks, digestive function
water
natural, unsweetened water
from fruit
supports: flushes out toxins, shock absorption, transport nutrients, prevent constipation, lubrication, hydration
Health costs related to poor eating and nutritional habits cost millions of dollars annually:
annual diet-related CMD costs were $50.4 billion for 18.2% of the total population
84.3% of the cost, $42.6 billion, is to pay for acute medical carecare in which a patient is treated for a brief but severe episode of illness, for conditions that are the result of disease or trauma and during recovery from surgery[4]
two-thirds of Medicaid beneficiaries are overweight or obese, 28% have hypertension, and 26% report being in poor health
2020 costs due to treatment and lost productivity were estimated at $238.7 billion for diabetes, $302.3 billion for cancer, $519.9 for cardiovascular disease and $805.2 billion for obesity
the economic cost of obesity, heart disease, type 2 diabetes and nutrition-related cancers totaled $16 trillion between 2011-2020.[5]
To reduce the probability of nutrition-related illnesses the CDC recommends:
a healthy diet, physical activity and sleep to prevent obesity
eating foods low in saturated fatsa type of fat containing a high proportion of fatty acid molecules without double bonds and high in fiberthe indigestible parts or compounds of plants, which pass relatively unchanged through our stomach and intestines
increasing access to low-sodium foods.[3]
The Healthy Eating Index (HEI), modified several times since 1995, is a measure of diet quality used to assess how well particular foods align with dietary recommendations published in the Dietary Guidelines for Americans (Dietary Guidelines), which are used by health and nutrition professionals to help individuals and families eat nutritious foods.[1]
The HEI, developed by USDA Food and Nutrition Services, Center for Nutrition Policy and Promotion, Health and Human Services and National Cancer Institute is used to assess the dietary quality of those two years and older. A new set of guidelines, Healthy Eating Index-Toddlers-2020 was developed to assess the diets of very young children 12 through 23 months.[1]
The HEI uses a scoring system ranging from 0 to 100, with a score of 100 indicating that foods best meet dietary recommendations. As of 2020, the HEI score for those ages 2 and older was 58 out of 100 and the average HEI-Toddlers-2020 score for ages 12 through 23 months was 63 out of 100, indicating that U.S. diets do not meet current national recommendations for good nutrition.[1]
Researchers found that even when those with poor diets were provided with easily accessible, higher quality and nutritious foods, they didn't usually modify poor eating and food purchashing behaviors and nutritional inequality was reduced by only 9%. The remaining 91% difference was due to food demand and existing purchasing and eating practices.[2]
What is used to assess the dietary quality of those two years and older? About 254 million pre-school children have vitamin Aa fat-soluble vitamin that is stored in the liver deficiency, most commonly found in South Asian and sub-Saharan African countries. Vitamin A, zinc,an essential trace element being an essential component of the active site of a variety of enzymes irona component of hemoglobin, an oxygen carrier that transports oxygen from the lungs to the peripheral tissue and then carries carbon dioxide back to the lungs and iodinea component of biochemical pathways in organisms deficiencies were reported to cause deaths in approximately 20% of children aged under five. Seleniuma factor of biological and antioxidant protection of vascular endothelium, of low-density lipoproteins, protection of DNA and chromosomes deficiencies have been observed in China, Africa, and Northern Europe.[7]
Poor nutrient soil, grain processing that removes nutrients and fertilizers that contain dangerous heavy metalsmetals that bind to parts of cells that prevent organs from working properly reduce crop nutrition. Mineral and vitamin concentration in local food crops, usually consumed by poor populations, can be increased by using different biofortificationprocess of increasing the micronutrient content of a food crop through selective breeding, genetic modification, or the use of enriched fertilizers techniques.[7] Some of these agriculture methods are now being utilized.
Food waste is also an international problem contributing to poor nutrition. A 2021 United Nations global initiative, to halve food loss and waste by 2030 in 50 countries, will identify methods of decreasing food waste using data collection, improved farming technology, public and private partnerships and consumer education.[8]
Sources:
Researcher explains connection between
ultra-processed foods and depression
PBS NewsHour
Nov. 25, 2023
YouTube
https://www.youtube.com/watch?v=mWRgB2Rhq34
Embedded video, no copy made
[1] United States Department of Agriculture. (Sep. 14, 2023). Healthy eating index. https://www.fns.usda.gov/cnpp/healthy-eating-index-hei
[2] Allcott, R., Diamond, R., Dubé, J.-P., Handbury, J., Rahkovsky, I., & Schnell. Food deserts and the causes of nutritional inequality. National Bureau of Economic Research, working paper 24094. https://www.nber.org/system/files/working_papers/w24094/w24094.pdf
[3] Centers for Disease Control and Prevention. (Sep. 8, 2022). Poor nutrition. National Center for Chronic Disease Prevention and Health Promotion. https://www.cdc.gov/chronicdisease/resources/publications/factsheets/nutrition.htm
[4] Jardim, T. V., Mozaffarian, D., Abrahams-Gessel, S, Sy, S., Lee, Y., Liu, J., Huang, Y, Rehm, C., Wilde, P., Micha, R., & Gaziano, T. A. (Dec. 17, 2019). Cardiometabolic disease costs associated with suboptimal diet in the United States: A cost analysis based on a microsimulation model. PLOS Medicine. https://journals.plos.org/plosmedicine/article?id=10.1371/journal.pmed.1002981
[5] Hayes, T. O., & Asres, R. (Mar. 8, 2022). The economic costs of poor nutrition. American Action Forum. https://www.americanactionforum.org/research/the-economic-costs-of-poor-nutrition/
What are the 6 nutrients?
[6] Fletcher, J. (Aug. 22, 2019). What are the 6 essential nutrients? Medical News Today. https://www.medicalnewstoday.com/articles/326132
[7] Koç, E., & Karayiǧit, B. (Nov. 4, 2021). Assessment of biofortification approaches used to improve micronutrient-dense plants that are a sustainable solution to combat hidden hunger. Journal of Soil Science and Plant Nutrition, 22, 475-500. https://link.springer.com/article/10.1007/s42729-021-00663-1
[8] O'Connor, C. (n. d.) UNEP food waste index fighting food waste to improve food security: Solutions for people and the planet. United Nations Environment Programme. https://fbli.foodbanking.org/wp-content/uploads/2021/07/UNEP-Food-Waste-Index.pdf
Food Deserts
High calorie processed foods are part of a food desert
D. Meeks
Walmart, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
The U.S. Department of Agriculture (USDA) defined a food desert as:
an area that has either a poverty rate greater than or equal to 20% or a median family income not exceeding 80% of the median family income in urban areas, or 80% of the statewide median family income in non-urban areas
in urban areas, at least 500 people or 33% of the population must live more than 1 mile from the nearest large grocery store
In rural areas, at least 500 people or 33% of the population must live more than 10 miles from the nearest large grocery store.[6]
In the 2008 Food, Conservation and Energy Act (2008 Farm Act), Congress directed the USDA to assess the extent of areas in the U.S. where people have limited access to a variety of healthy and affordable food. The outcome was Access to Affordable and Nutritious Food: Measuring and Understanding Food Deserts and Their Consequences report.[2],[3]
The report asked three important questions:
What are affordable and nutritious food?
What is the impact of not having access to nutritious food?
Do individuals or areas lack access?[3]
Sugary, high calorie drinks contribute to diabetes and are components of a food desert
D. Meeks
Walmart, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
More than 13.5 million Americans live in food deserts,residential areas with poor access to affordable, healthy food[1]
which:
are more likely to be found in high poverty and high percentage of minority areas
can also be found in urban and rural areas where vehicle and public transportation are inadequate
are less prevalent in the Northeastern U.S. than in other regions of the country
are more likely to be located in areas with few food retailers
are less likely to be found in rural areas experiencing population growth
populations with low access to stores are likely to be found in the Southwest, Midwest, Northwest, and Florida
populations with lower access to vehicles are more common in the Northeast and Southeast.[2],[5]
The causes of nutritional inequality resulting from food deserts are based on several facts:
households in the upper 25% of income buy groceries that are 0.56 standard deviationsa measure of how dispersed the data is in relation to the average more healthful than those in the bottom 25% of income, as measured by the Healthy Eating Index, the standard measure of dietary quality
stores in low-income neighborhoods offer fewer healthy groceries than those in high-income neighborhoods
low-income neighborhoods have more drug and convenience stores as well as fewer large supermarkets, which offer wider variety of healthy options
lack of access to full-service grocery stores and easy access to convenience foods is likely linked to obesity and other diet-related diseases.[3],[4]
A 2020 study of Tucson found that independent food stores were found in neighborhoods with high population densities and in central Tucson, food was accessible for a substantial part of the population due to Asian, Mediterranean, African and Hispanic food markets.[7] These small stores tended to be clustered close to each other.
Crunchy snacks are convenient but not a replacement for fruit and vegetables
D. Meeks
Walmart, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
Large, full-service grocery stores, found only on major streets, with two-thirds located at intersections, serve about 56% of the city's population.
Because of this market centralization, the city has 43 food deserts.
This number could be reduced by the introduction of 25 new full-service grocery stores in areas where there is little competition.[7]
Sources:
[1] Correll, R. (Nov. 1, 2022). What are food deserts? VeryWellHealth. https://www.verywellhealth.com/what-are-food-deserts-4165971
[2] Dutko, P., Ver Ploeg, M., Farrigan, T. (Aug. 2012). Characteristics and influential factors of food deserts. Economic research report number 40. USDA Economic Research Service. https://www.ers.usda.gov/webdocs/publications/45014/30940_err140.pdf?v=41156
[3] United States Department of Agriculture. (Jun. 2009). Access to affordable and nutritious food: Measuring and understanding food deserts and their consequences. https://www.ers.usda.gov/webdocs/publications/42711/12716_ap036_1_.pdf
[4] Allcott, R., Diamond, R., Dubé, J.-P., Handbury, J., Rahkovsky, I., & Schnell. Food deserts and the causes of nutritional inequality. National Bureau of Economic Research, working paper 24094. https://www.nber.org/system/files/working_papers/w24094/w24094.pdf
[5] Alexis, A. C. (Jun. 14, 2021). What are food deserts? All you need to know. Healthline. https://www.healthline.com/nutrition/food-deserts#causes
[6] Caporuscio, J. (Jun. 22, 2020). What are food deserts, and how do they impact health? https://www.medicalnewstoday.com/articles/what-are-food-deserts
[7] Bao, Y., Tong, D., Plane, D.A., & Buechler, S. (2020). Urban food accessibility and diversity: Exploring the role of small non-chain grocers. Applied Geography, 125, 1-10. https://www.sciencedirect.com/science/article/pii/S0143622819311373
Hunger in America
Engel's law
H. Ritchie/Our World in Data
Engel's Law: Richer people spend more money on food,
but it makes up a smaller share of their income
Jan. 19, 2023
https://ourworldindata.org/engels-law-food-spending
Licensed under CC-BY by author H. Ritchie
Hunger exists in every U.S. county.[3]
Engel's law, posed more than 150 years ago by statistician Ernst Engel, states that households spend more money on food as incomes rise but a smaller share of overall income. Poor households spend less money on food than higher income households, but the amount accounts for more of their total income. During the last 25 years, the poorest 20% of U.S. households spent between 28.8% and 42.6% of their annual before-tax income on food, compared with 6.5% to 9.2% spent by the richest 20% of U.S. households.[1]
For poorer households, however, financial security is more unpredictable and inconsistent. They are far more financially sensitive to increasing food prices, overall cost-of-living and availability of local, state and federal food assistance programs.[1]
According to the Federal Reserve Board Black families' median wealth, $24,100, is less than 15% that of white families, $188,200. The median wealth of Latino families is about 20%, $36,100, of that of white families.[3]
A 2021 National Women's Law Center report found that among full-time, year-round workers, Native American women are typically paid only 60 cents for every dollar paid to white, non-Hispanic men. The annual difference is $24,656.[4]
In the U.S. hunger most affects children, rural communities, senior citizens, active and retired military veterans, African Americans, Latinos, Native Americans and Asian Americans.[2] The effects of hunger depend on age, location, job status, housing status, household size, familial responsibilities and other factors.
Hungry children often exhibit poor academic performance, increased risk to anemia,a condition characterized by an absence of healthy red blood cells or hemoglobin to carry oxygen to body tissues asthmaa respiratory condition that causes breathing difficulties and other health problems and growth issues that affect thinking, learning and behavior.[5] These can have devastating and life-long effects on a child's educational success, ability to find reliabile employment later in life and to extracate themselves from the environment that caused the hunger.
Farming in Yuma, Arizona
NASA/Terraprints.com
Oct. 25, 2006
Wikipedia, Yuma, Arizona
https://en.wikipedia.org/wiki/Yuma,_Arizona#/
media/File:Yuma_arizona_map.jpg
CC BY 2.5
Those living in rural communities often do not have access to public transportation and may live far from the nearest grocery stores. Unemployment in many rural communities is high and jobs, when available, tend to be part-time, low-wage opportunities.[6]
Between November and April, 90% of American and Canadian leafy greensinclude kale, microgreens, collard greens, spinach, cabbage, beet greens, water cress, romaine lettuce, Swiss chard, arugula, endive, bok choy and turnip greens and other vegetables come from the Yuma area.[7] Despite the abundance of food produced in that area, 80% of that county's population qualifies for federal food assistance, 14.6% living in the county are food insecure and nearly $17 million are needed to meet their basic food needs.[8]
Senior citizens suffer from many of the same hunger factors as other populations. But more than other group, they tend to be socially isolated or find themselves as the primary caretakers of grandchildren.[9] According to the 2022 American Community Survey, 6,928,281 grandparents live with their own grandchildren under 18 years of age, with 32.4% responsible for caring for those grandchildren.[10] This creates additional financial burdens on hungry older adults.
In 2020, 24% of active duty service members were food insecure. Ironically, some military families don't qualify for federal food assistance because military housing allowances are considered income. Low pay and frequent relocation also create difficulty for partners seeking secure and steady jobs that pay a liveable wage.[11]
In communities of color, hunger is a product of discrimination, racism, low wages, language barriers, immigration status issues and stereotyping.[12],[13],[14],[15]
Of western states, which include Arizona, California, Colorado, Idaho, New Mexico, Nevada, Oregon, Texas, Utah and Washington, Arizona ranks third in food insecurity at 11.1%. Within large cities in those states, including Albuquerque, Austin, Colorado Springs, Denver, El Paso, Las Vegas, Phoenix, Portland, Salt Lake City, San Antonio, San Diego and Tucson, Tucson ranks second in food insecurity, at 12.6%, behind Colorado Springs. In Pima County, 10% of the white populiation is food insecure, but 18% of the Hispanic and Latin community is food insecure.[16]
Sources:
[1] Ritchie, H. (Jan. 19, 2023). Engel's law: Richer people spend more money on food, but it makes up a smaller share of their income. https://ourworldindata.org/engels-law-food-spending
[2] Feeding America. (2024). Hunger in America. https://www.feedingamerica.org/hunger-in-america
[3] Bhutta, N., Chang, A. C., Dettling, L. J., Hsu, J. W., & Hewitt, J. (Sep. 28, 2020). Disparities in wealth by race and ethnicity in the 2019 survey of consumer finances. Board of Governors of the Federal Reserve System. https://www.federalreserve.gov/econres/notes/feds-notes/disparities-in-wealth-by-race-and-ethnicity-in-the-2019-survey-of-consumer-finances-20200928.html
[4] Tucker, J. (Sep. 2021). Native American women need action that closes the gap. https://nwlc.org/wp-content/uploads/2020/09/Native-Women-Equal-Pay-2021.pdf
[5] Feeding America. (2024). Child hunger keeps kids from reaching their full potential. https://www.feedingamerica.org/hunger-in-america/child-hunger-facts
[6] Feeding America. (2024). Hunger in rural communities. https://www.feedingamerica.org/hunger-in-america/rural-hunger-facts
[7] Yuma County Agriculture Water Coalition and Yuma Fresh Vegetable Association. (Mar. 22, 2023). Yuma is to agriculture what Silicon Valley is to computers. https://www.azfb.org/Article/Yuma-is-to-Agriculture-What-Silicon-Valley-is-to-Computers
What law states that households spend more money on food as incomes rise but a smaller share of overall income?
[8] Feeding America. (2024). Food insecurity maps. https://map.feedingamerica.org/
[9] Feeding America. (2024). Millions of seniors have trouble getting the food they need. https://www.feedingamerica.org/hunger-in-america/senior-hunger-facts
[10] United States Census Bureau. (n. d.). American community survey S1002 grandparents. https://data.census.gov/table/ACSST5Y2022.S1002?q=grandparents&t=Grandparents%20and%20Grandchildren&g=010XX43US_010XX00US&hidePreview=true
[11] Feeding America. (2024). Active military and veteran food insecurity. https://www.feedingamerica.org/hunger-in-america/food-insecurity-in-veterans
[12] Feeding America. (2024). Hunger hits black communities harder. https://www.feedingamerica.org/hunger-in-america/black-communities
[13] Feeding America. (2024). Food insecurity in Latino communities. https://www.feedingamerica.org/hunger-in-america/latino-hunger-facts
[14] Feeding America. (2024). Hunger impacts Native American families and communities. https://www.feedingamerica.org/hunger-in-america/native-american
[15] Feeding America. (2024). Hunger in Asian American communities. https://www.feedingamerica.org/hunger-in-america/asian-americans
[16] Campo-Carmona, B. (Jan. 31, 2023). Food insecurity in Tucson ranks high. Making Action Possible for Southern Arizona. https://mapazdashboard.arizona.edu/article/food-insecurity-tucson-ranks-high
Food Security and Education
Leafy greens contribute to a healty diet
D. Meeks
Sprouts, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
The relationships between food and disease have been studied for decades.
This is not surprising to those educated about the benefits of a balanced diet and the importance of purchasing and consuming healthy food.
But those living in poverty do not have the time or funds to transport, purchase and cook food to maintain a healthy diet.
And for millions across the planet are starving, simply trying to survive, food education is not a priority.
Nutrition education is related to better health, improved financial security and a higher quality of life in both food secure and food insecure environments. Many individuals with regular access to nutritious food already know that fruits, vegetables, nuts and whole grains are linked to reduced risk of cardiovascular disease, that diets high in saturated fat, trans fat and refined sugars are linked with higher risk of diabetes and cardiovascular disease and that sugar-sweetened beverages increase the risk of obesity, diabetes and cardiovascular disease.[1]
Life-long nutrition education is more effective than short-term programs. Food nutrition labels, removal of unhealthy foods from school and work environments, calorie information in fast food outlets, food literacy programs and public service ads can be used to educate consumers.[13]
U.S. studies have shown that greater availability and lower priced food from fast food restaurants are related to poorer diet. Other studies demonstrated that, instead of opening new supermarkets, promoting healthy food options in corner convenience stores in underserved areas increased the sales of fruits and vegetables and improved the diets of vulnerable populations.[1]
Food consumption data demonstrates that increasing healthy food supplies, healthier eating and a healthier lifestyle do not necessarily show an immediate benefit of eliminating food deserts. Unhealthy food supplies in a community usually lead to a lower demand for good food and less incentive for healthy food suppliers to locate in that community. This leads to a vicious circle of poor nutrition choices supporting poor food supplies.[12]
Supermarkets place unhealthy cereals withing children's reach
D. Meeks
Walmart, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
The U.S. Department of Housing and Urban Development (HUD)
Moving-to-Opportunity demonstration project studied effects of housing policy and nutrition in
in public housing projects in five U.S. cities.
Individuals were randomly assigned to three different groups receiving:
mobility counseling and a Section 8 public housing voucher that could only be used in census tracts with low poverty rates
a Section 8 voucher that could be used in the traditional way, without any geographic restriction
no new assistance.[1],[2] Results showed that the adults in the first two groups had lower probabilities of obesity compared to the last group.[1],[2]
Learning and developing long-term healthy eating habits among children, parents, and in schools, is needed for better nutrition to be normalized and accepted.[12]
Education efforts in poor international communities are also possible. The goals of Food for Education (FFE) programs are to increase school enrollment and attendance and reduce dropout rates while educating students about nutrition. These programs differ among countries but most provide free school meals, food rations and groceries for families of children in elementary schools, or cash incentives for students' participation in food and nutrition eduction programs.[5]
Adequate learning resources must be provided for these programs to succeed. An FFE program in Bangladesh improved poor student school enrollment, especially for girls, but exposed an important nutritional education program issue. Bangladesh failed to invest in school resources needed to support high student enrollment in this program, resulting in overcrowding and reduced educational achievement.[6]
USDA MyPlate
United States Department of Agriculture
https://www.myplate.gov/myplate-plan/widget
public domain
The USDA Foreign Agricultural Service (FAS) McGovern-Dole International Food for Education and Child Nutrition (McGovern-Dole)
program was established in 2002.
The program donates U.S. agricultural commodities and financial and technical assistance to international maternal and child nutrition projects,
It has provided more than 31 million children and families in 48 countries with 5.5 billion school meals.
In 2022, FAS invested $220 million in eight new projects in
Burundi,
Cambodia,
Gambia,
Lesotho,
Madagascar,
Mauritania,
Tanzania, and
Timor-Leste.[4]
In 2018 McGovern-Dole began a five-year, $36 million project in Sri Lanka with Save the Children. The program supports nutrition education, child development and food security. Its objective is to reduce hunger and improve literacy and primary education, especially for young girls. The program provides school meals, teacher training, and related support, to maintain school enrollment and academic performance. It also educated students, parents and staff about sanitation and provided simple recipes that enabled caregivers to cook nutritional, well balanced meals.[3]
When Sri Lankan schools closed during the pandemic the program shifted its efforts to providing take-home meals that fed more than 460,000 citizens. When they reopened meals were distributed to students in their schools.[3]
The U.S. Department of Agriculture provides many nutrition resources in English and Spanish to educate the public about nutrition:
MyPlate helps shoppers in any community locate farmers' markets, SNAP EBT savings options, healthy shopping tips, meal planning options and explanations of retail and unit food prices[7]
Small Changes Matter describes how to reduce sugar, saturated fat, salt and sodium consumption[8]
Life Stages provides nutrition information for pregnant women, infants, toddlers, preschoolers, teens, young adults, adults, older adults and families[9]
Partner Resources includes healthy recipes and cooking videos[10]
Dietary Guidelines for Americans 2020-2025 provides descriptions on using U.S. Department of Agriculture nutrition-related resources.[11]
Sources:
Vegetables are a healthy choice
D. Meeks
Sprouts, Tucson, Arizona
Jan. 18, 2024
CC BY-SA 4.0
[1] United States Department of Agriculture. (Jun. 2009). Access to affordable and nutritious food: Measuring and understanding food deserts and their consequences. https://www.ers.usda.gov/webdocs/publications/42711/12716_ap036_1_.pdf
[2] Kling, J. R., Liebman, J. B., & Katz, L. F. (Jan. 2007). Experimental analysis of neighborhood effects. Econometrica, 75, 83-119. https://scholar.harvard.edu/sites/scholar.harvard.edu/files/lkatz/files/experimental_analysis_of_neighborhood_effects.pdf
[3] United States Department of Agriculture Foreign Agricultural Service. (Jul. 6, 2022). A success story - USDA-FAS McGovern-Dole and Save the Children's PALAM-A project is feeding thousands of school kids in Sri Lanka. https://apps.fas.usda.gov/newgainapi/api/Report/DownloadReportByFileName?fileName=A%20Success%20Story%20-%20USDA-FAS%20McGovern-Dole%20and%20Save%20the%20Children%27s%20PALAM-A%20Project%20is%20Feeding%20Thousands%20of%20School%20Kids%20in%20Sri%20Lanka_Colombo_Sri%20Lanka_CE2022-0016.pdf
[4] United States Department of Agriculture Foreign Agricultural Service. (Feb. 6, 2023). FAS expands exports, advances climate resilience, strengthens food security in 2022. https://fas.usda.gov/newsroom/usda-fas-expands-exports-advances-climate-resilience-and-strengthens-food-security-2022
[5] Alam, G. M., & Sulaiman, T. (Jul. 22, 2021). Supporting youths to continue further education in emerging nations: Food for education intervention or education for food policy? British Food Journal. 124(3), 853-870. https://doi.org/10.1108/BFJ-05-2021-0552
[6] Ahmed, A. U., & Arends-Kuenning. (Apr. 2006). Do crowded classrooms crowd out learning? Evidence from the food for education program in Bangladesh. World Development, 34(4). 665-684. https://www.sciencedirect.com/science/article/abs/pii/S0305750X06000064#:~:text=We%20find%20evidence%20for%20a,than%20through%20classroom%20crowding%20effects.
What is the source of most winter leafy greens eaten by Americans and Canadians?
[7] United States Department of Agriculture. (n. d.). MyPlate. https://www.myplate.gov/app/shopsimple?utm_campaign=desktop-redirect&utm_medium=redirect&utm_source=shop-simple
[8] United States Department of Agriculture. (Dec. 2020.). Small changes matter. Start simple with MyPlate today. https://myplate-prod.azureedge.us/sites/default/files/2021-01/DGA_2020-2025_StartSimple_withMyPlate_English_color.pdf
[9] 35-9 United States Department of Agriculture. (n. d.). Life stages. https://www.myplate.gov/life-stages
[10] United States Department of Agriculture. (n. d.). Partner resources. https://www.myplate.gov/partner-resources
[11] United States Department of Agriculture. (Dec. 2020). Dietary guidelines for Americans 2020-2025. https://www.dietaryguidelines.gov/sites/default/files/2021-03/Dietary_Guidelines_for_Americans-2020-2025.pdf
Of western states, where does Arizona rank in food insecurity?
[12] Haskell, S. (Feb. 11, 2021). Food insecurity and food deserts: How are they related? https://www.canr.msu.edu/news/food-insecurity-and-food-deserts-how-are-they-related
[13] Friel, S., Hattersley, L., Ford, L., & O'Rourke, K. (Sep. 2015). Addressing inequities in healthy eating. Health Promotion International, 30(2), ii77-ii88. https://academic.oup.com/heapro/article/30/suppl_2/ii77/645595
Observations and Conclusions
Poor nutrition leads to chronic diseases, disability and early death, reducing the quality of life of individuals and families.
Poor health stresses social, economic and political institutions, including education and employment opportunities and health system resources.
Families and individuals need access to healthy food where they live and work.
When nutrition education programs are provided with sufficient resources, they can offer short-term and long=term benefits to students and families, improving quality of life.
Access to nutrition, dietary and health guidelines needs to be available to everyone in grocery stores and local, corner markets.
Resources
What are the three main goals of the Food for Education Program?
Alaimo, K, Chilton, M., & Jones, S. J. (2020). Food insecurity, hunger and malnutrition. Clinical and Applied Topics in Nutrition, 311-326. https://www.sciencedirect.com/science/article/pii/B9780128184608000174?via%3Dihub
Annie E. Casey Foundation. (Feb. 13, 2021). Food deserts in the United States. https://www.aecf.org/blog/exploring-americas-food-deserts
Black, K., & Trepal, D. (Dec. 12, 2022). Food deserts in Tucson, Arizona. https://storymaps.arcgis.com/stories/8ffb710d755b4563804407e515462614
Food and Agricultural Organization of the United Nations. (Dec. 8, 2023). Friday, December 8: Youth, children, education, and skills. https://foodpavilion.org/blog/daily_recaps/friday-december-8-youth-children-education-and-skills/
Making Action Possible. (2017). Explore your county. University of Arizona Eller College. https://mapazdashboard.arizona.edu/explore-your-county
Tong, D., Buechler, S., & Bao, Y. (Feb. 25, 2016). A comprehensive food access analysis in Tucson. Making Action Possible for Southern Arizona. The University of Arizona Eller Center. https://mapazdashboard.arizona.edu/article/comprehensive-food-access-analysis-tucson
USDA Economic Research Service. (n. d.). Data products. https://www.ers.usda.gov/data-products/
USDA Economic Research Service. (Jul. 6, 2023). Go to the atlas. https://www.ers.usda.gov/data-products/food-access-research-atlas/go-to-the-atlas/
What was the HEI score in 2020 for those aged 2 and older?
USDA Economic Research Service. (n. d.). Key statistics and graphics. https://www.ers.usda.gov/topics/food-nutrition-assistance/food-security-in-the-u-s/key-statistics-graphics/
United States Department of Agriculture. (n. d.). Food access research atlas. https://www.ers.usda.gov/data-products/food-access-research-atlas/documentation/
United States Department of Agriculture. (Sep. 14, 2023). How the HEI is scored. https://www.fns.usda.gov/cnpp/how-hei-scored
United States Department of Agriculture. (Sep. 14, 2023). How we use the HEI. https://www.fns.usda.gov/cnpp/how-we-use-hei
United States Department of Agriculture. (n. d.). Infographics. https://www.myplate.gov/resources/graphics/infographics
United States Department of Agriculture. (n. d.). Printed materials. https://www.myplate.gov/resources/print-materials
United States Department of Agriculture. (n. d.). Professional resources. https://www.dietaryguidelines.gov/professional-resources
U.S. Food and Drug Administration. (n. d.). How to understand and use the nutrition facts label. https://www.fda.gov/food/nutrition-facts-label/how-understand-and-use-nutrition-facts-label
Watts, J. (Jan. 29, 2024). Move to sustainable food systems could bring $10tn benefits a year, study finds. The Guardian. https://www.theguardian.com/environment/2024/jan/29/sustainable-food-production-economic-benefits-study
Translate this page:
Denise Meeks, dmeeks@arizona.edu / tucsonkosmicgirl@gmail.com