# AI将6.5%的糖化血红蛋白解读为相当于65 mg/dL的血糖，导致错误的糖尿病管理建议

- **ID:** `medical/confusing-hemoglobin-a1c-with-blood-glucose-level`
- **领域:** medical
- **类别:** data_error
- **错误码:** `LAB-VALUE-A1C-MISINTERPRETATION`
- **验证级别:** ai_generated
- **修复率:** 88%

## 根因

糖化血红蛋白是一个百分比，反映过去2-3个月的平均血糖水平，而非直接血糖测量值；6.5%的A1c对应估计平均血糖（eAG）约为140 mg/dL，而非65 mg/dL。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| ADA Standards of Medical Care in Diabetes 2024 | active | — | — |
| NGSP A1c-Derived Average Glucose (ADAG) Study | active | — | — |

## 解决方案

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.
   ```
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)'.
   ```
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.
   ```

## 无效尝试

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