← All studies · askamerica.ai

K-12 Dive's 2024 NAEP article checks out against NCES/NAGB source data

Validation of "Reading, math continue slide in 2024 NAEP results" (K-12 Dive, Jan. 29, 2025)

Summary

The K-12 Dive article checks out. Every specific NAEP score figure it cites — the 5-point reading declines for grades 4 and 8 since 2019, the 2-point reading declines since 2022, the 3-point and 8-point math declines for grades 4 and 8 since 2019, the roughly 2-point math gain for 4th grade since 2022, and 8th-grade math being flat since 2022 — matches NCES's own published NAEP figures, both against AskAmerica's own edu.naep_scores warehouse table and against nationsreportcard.gov / NAGB's own summaries. The headline state-level claim (Louisiana the only state to beat its 2019 4th-grade reading score; Alabama the only state to beat its 2019 4th-grade math score) is independently corroborated verbatim by NAGB's own '10 Takeaways from 2024 NAEP Results.' The ESSER funding context ($190B total, Jan. 28 2025 deadline) is accurate as a simplification, with a minor caveat about liquidation extensions available to some districts. No factual errors were found; one immaterial 1-point rounding gap turned up between this connector's raw ingested scale score and NCES's officially rounded 8th-grade math figure, which reflects a vintage/rounding quirk in the warehouse data, not a mistake in the article.

Claim-by-claim verdicts

6 true · 1 mostly true · 7 assertions checked

1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
3Math scores dipped 3 points for 4th graders between 2019 and 2024.true-3 pts240.00→237.30 (-2.70, rounds to -3) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Confirmed verbatim on nationsreportcard.gov math results page: '3 points lower compared to the pre-pandemic score in 2019.'
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=4 AND "year" IN (2019,2024)
6Only one state, Louisiana, saw an increase in 4th grade reading scores between 2019 and 2024; Alabama was the only state to see an increase in 4th grade math over the same period.trueLouisiana (reading), Alabama (math) sole gainersRaw scale scores: Louisiana reading +6.10 (largest gain, only clearly meaningful increase); Alabama math the only state math gain reported by NCES edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Directly corroborated by an independent NCES-affiliated source: NAGB's own '10 Takeaways from 2024 NAEP Results' states verbatim, 'Only one state, Louisiana, surpassed its 2019 (pre-pandemic) 4th-grade reading score, and only one state, Alabama, surpassed its 2019 (pre-pandemic) 4th-grade math score.' Note: the warehouse table carries no standard errors, so the state-by-state significance calls behind the '11 no-change / 38 declined' style breakdowns could not be independently recomputed here (see question_coverage note) — a small raw increase for Alabama in the reading table (+1.48) that is not the same measure/subject also appears, consistent with sub-significance noise, not a contradiction.
Show SQL
SELECT jurisdiction_name, MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019, MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024 FROM edu.naep_scores WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0 GROUP BY jurisdiction_name
4Math scores dipped 8 points for 8th graders between 2019 and 2024.true-8 pts280.99→272.23 (-8.75, warehouse's raw double rounds to -9, a 1-point discrepancy against the officially published -8) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Independent confirmation found in NCES/press coverage of the statistical analysis report ('the average score dipped 8 points for 8th graders between 2019 and 2024'). The warehouse's own raw value rounds to 9 rather than 8 — a minor rounding/vintage artifact in this connector's ingested scale scores, not an error in the article, which matches NCES's own officially published figure.
Show SQL
SELECT "year", avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND grade=8 AND "year" IN (2019,2024)
54th grade math rose about 2 points since 2022; no notable change for 8th grade math between 2022 and 2024.true+2 (g4), ~0 (g8)Grade 4: 234.86→237.30 (+2.45); Grade 8: 273.13→272.23 (-0.90) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Matches nationsreportcard.gov verbatim ('2 points higher compared to 2022') for grade 4, and NAGB's '10 Takeaways' ('8th grade, math scores are flat nationally') for grade 8.
Show SQL
SELECT "year", grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND subject='MAT' AND "year" IN (2022,2024)
2Since 2022, average reading scores fell 2 points for both grades 4 and 8.true-2 pts, both gradesGrade 4: 216.11→214.27 (-1.84); Grade 8: 259.11→256.66 (-2.45) edu.naep_scoresNAEP 2024 release / edu.naep_scores declared 2013-2024Rounds to -2 for both grades; matches NCES reading trend text ('2 points lower compared to 2022') found directly on nationsreportcard.gov.
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2022,2024) AND subject='RED'
1Average reading scores dropped 5 points for both 4th and 8th graders from 2019 to 2024.true-5 pts, both gradesGrade 4: 219.44→214.27 (-5.17); Grade 8: 262.00→256.66 (-5.34) edu.naep_scoresNAEP 2024 release, Jan. 29 2025 / edu.naep_scores declared 2013-2024Warehouse figures round to -5 for both grades, matching NCES's own reported 5-point reading declines (also independently corroborated via nationsreportcard.gov reading national-trends page).
Show SQL
SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction=0 AND variable_type='TOTAL' AND subgroup_name='All students' AND "year" IN (2019,2024) AND subject='RED'
7The $190 billion total ESSER relief funds faced their final spending deadline the Tuesday before this article's Jan. 29, 2025 publication.mostly true$190B total, deadline hit Tuesday (Jan. 28, 2025)not checkable here (fiscal grant program, not in this connector's schemas) n/aJan. 29, 2025 / n/aWeb sources confirm ESSER I+II+III totaled roughly $190 billion ($13.23B + $54.31B + $121.97B) and that ESSER III's liquidation deadline was Jan. 28, 2025, matching the article's timing. Rated 'mostly true' rather than 'true' because ED had also opened a case-by-case liquidation-extension process for a portion of ESSER III funds around this period, so 'final' deadline is a simplification for some districts, not a factual error.

Verdicts: true, mostly true, partially true, mostly false, false, not checkable here (no table carries the measure), stale vintage (the article cites a release this corpus has not loaded — a freshness gap, not a falsehood).

What could not be independently checked

NAEP's state-by-state breakdowns in the article ('38 states decreased,' '11 no significant change,' etc.) rest on statistical significance tests using standard errors that are not present in AskAmerica's edu.naep_scores table (point estimates only). Those exact state counts are therefore graded 'not independently recomputed here' rather than verified number-by-number; the sole-gainer claims for Louisiana and Alabama that anchor the state-level section were instead confirmed against NCES's/NAGB's own published significance calls, which is the correct authority for a significance-dependent claim regardless.

Every query behind this report

2 warehouse calls ran in this session, in order. Each is reproducible against the same snapshot.

query — 12 rows — 5640 ms
SELECT year, subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction = 0 AND variable_type = 'TOTAL' AND subgroup_name = 'All students' AND year IN (2019, 2022, 2024) ORDER BY subject, grade, year
query — 51 rows — 3693 ms
SELECT jurisdiction_name,
  MAX(CASE WHEN "year"=2019 THEN avg_score END) AS y2019,
  MAX(CASE WHEN "year"=2024 THEN avg_score END) AS y2024
FROM edu.naep_scores
WHERE variable_type='TOTAL' AND subgroup_name='All students' AND subject='RED' AND grade=4 AND jurisdiction<>0
GROUP BY jurisdiction_name
HAVING MAX(CASE WHEN "year"=2019 THEN avg_score END) IS NOT NULL AND MAX(CASE WHEN "year"=2024 THEN avg_score END) IS NOT NULL

Sources

  1. K-12 Dive article under review
  2. NAEP Reading: National Trends (nationsreportcard.gov)
  3. NAEP Mathematics: Explore Results 2024 (nationsreportcard.gov)
  4. NAEP Mathematics: National Trends (nationsreportcard.gov)
  5. NAGB '10 Takeaways from 2024 NAEP Results'
  6. 2024 Mathematics/Reading Summary of Results PDF (nationsreportcard.gov)
  7. AskAmerica edu.naep_scores (NAEP national/state scale scores) — jurisdiction=0 national aggregate, variable_type=TOTAL, subgroup_name='All students'
    Show SQL
    SELECT "year", subject, grade, avg_score FROM edu.naep_scores WHERE jurisdiction = 0 AND variable_type = 'TOTAL' AND subgroup_name = 'All students' AND "year" IN (2019, 2022, 2024) ORDER BY subject, grade, "year"
  8. ESSER funding totals and 2025 liquidation deadline