# AI calculates a pediatric medication dose using birth weight instead of actual body weight for a premature infant in the NICU

- **ID:** `medical/incorrect-birth-weight-based-medication-dosing`
- **Domain:** medical
- **Category:** data_error
- **Error Code:** `PEDS-DOSE-WEIGHT-ERROR`
- **Verification:** ai_generated
- **Fix Rate:** 88%

## Root Cause

Premature infants lose up to 10-15% of their birth weight in the first week of life due to fluid shifts and diuresis; using birth weight for dosing can lead to overdose of medications like gentamicin or vancomycin, which have narrow therapeutic windows.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| Pediatric Dosage Handbook 2024 | active | — | — |
| Neofax 2023 | active | — | — |
| Lexicomp Pediatric 2024 | active | — | — |

## Workarounds

1. **Implement a rule in the clinical decision support system that triggers an alert when dose calculation uses a weight that is more than 24 hours old, and requires the user to input the most recent weight.** (95% success)
   ```
   Implement a rule in the clinical decision support system that triggers an alert when dose calculation uses a weight that is more than 24 hours old, and requires the user to input the most recent weight.
   ```
2. **Use a weight-based dosing calculator that automatically pulls the latest weight from the EHR and displays both birth weight and current weight for comparison.** (90% success)
   ```
   Use a weight-based dosing calculator that automatically pulls the latest weight from the EHR and displays both birth weight and current weight for comparison.
   ```
3. **For high-risk medications like aminoglycosides, require a second verification of the weight used in the calculation by a pharmacist.** (85% success)
   ```
   For high-risk medications like aminoglycosides, require a second verification of the weight used in the calculation by a pharmacist.
   ```

## Dead Ends

- **** — Birth weight is static and quickly becomes outdated; the infant's weight changes daily in the NICU. (90% fail)
- **** — NICU infants often have fluid shifts, edema, or weight loss due to phototherapy or diuretics; weight must be updated daily. (80% fail)
- **** — Weight can change significantly in 24 hours in premature infants due to fluid management or feeding adjustments. (70% fail)
