# AI interprets a hemoglobin A1c of 6.5% as equivalent to a blood glucose of 65 mg/dL, leading to incorrect diabetes management recommendations

- **ID:** `medical/confusing-hemoglobin-a1c-with-blood-glucose-level`
- **Domain:** medical
- **Category:** data_error
- **Error Code:** `LAB-VALUE-A1C-MISINTERPRETATION`
- **Verification:** ai_generated
- **Fix Rate:** 88%

## Root Cause

Hemoglobin A1c is a percentage reflecting average blood glucose over 2-3 months, not a direct glucose measurement; an A1c of 6.5% corresponds to an estimated average glucose (eAG) of approximately 140 mg/dL, not 65 mg/dL.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| ADA Standards of Medical Care in Diabetes 2024 | active | — | — |
| NGSP A1c-Derived Average Glucose (ADAG) Study | active | — | — |

## Workarounds

1. **Implement a lookup table or formula in the AI system: eAG (mg/dL) = 28.7 × A1c - 46.7, and display both values together to avoid confusion.** (95% success)
   ```
   Implement a lookup table or formula in the AI system: eAG (mg/dL) = 28.7 × A1c - 46.7, and display both values together to avoid confusion.
   ```
2. **When generating clinical recommendations, always present A1c as a percentage and explicitly state the eAG in parentheses, e.g., 'A1c 6.5% (eAG 140 mg/dL)'.** (90% success)
   ```
   When generating clinical recommendations, always present A1c as a percentage and explicitly state the eAG in parentheses, e.g., 'A1c 6.5% (eAG 140 mg/dL)'.
   ```
3. **Add a validation step that checks if any numerical output from the AI is implausible (e.g., an A1c of 6.5% should never produce a glucose value below 100 mg/dL) and flags it for review.** (85% success)
   ```
   Add a validation step that checks if any numerical output from the AI is implausible (e.g., an A1c of 6.5% should never produce a glucose value below 100 mg/dL) and flags it for review.
   ```

## Dead Ends

- **** — The relationship is nonlinear and described by the formula: eAG (mg/dL) = 28.7 × A1c - 46.7, so 7% = 154 mg/dL. (90% fail)
- **** — Only the ADAG study formula is validated; other charts may use outdated or incorrect conversions. (70% fail)
- **** — Fructosamine is measured in μmol/L, not a percentage, and its relationship to glucose is different. (60% fail)
