# AI instructs to reconstitute IV vancomycin with bacteriostatic water containing benzyl alcohol for a neonate, ignoring risk of 'gasping baby syndrome'

- **ID:** `medical/iv-antibiotic-dilution-bacteriostatic`
- **Domain:** medical
- **Category:** system_error
- **Error Code:** `NEONATE-DILUTION-ERR-001`
- **Verification:** ai_generated
- **Fix Rate:** 85%

## Root Cause

Bacteriostatic water with benzyl alcohol is contraindicated in neonates (especially preterm) because immature hepatic metabolism of benzyl alcohol leads to accumulation of toxic metabolites, causing metabolic acidosis, gasping respirations, and potentially fatal 'gasping baby syndrome'.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| NeoFax 2023 | active | — | — |
| Pediatric Injectable Drugs 13th Ed | active | — | — |
| ISMP Guidelines for Safe IV Administration 2024 | active | — | — |

## Workarounds

1. **Reconstitute vancomycin with preservative-free 0.9% sodium chloride (normal saline) only. For neonates, use a concentration of 5-10 mg/mL and verify with NICU pharmacy: `echo "Vancomycin 50 mg (from 500 mg vial reconstituted with 10 mL NS) further diluted to final volume 5 mL with NS => 10 mg/mL" && check fluid restriction order`** (95% success)
   ```
   Reconstitute vancomycin with preservative-free 0.9% sodium chloride (normal saline) only. For neonates, use a concentration of 5-10 mg/mL and verify with NICU pharmacy: `echo "Vancomycin 50 mg (from 500 mg vial reconstituted with 10 mL NS) further diluted to final volume 5 mL with NS => 10 mg/mL" && check fluid restriction order`
   ```
2. **Use commercially available vancomycin premixed bags (e.g., 500 mg/100 mL NS) but for neonates, ensure the concentration is appropriate (e.g., 5 mg/mL) and the bag contains no preservatives. Verify lot number against preservative-free list: `grep -i "benzyl alcohol" /pharmacy/preservative_list.txt`** (90% success)
   ```
   Use commercially available vancomycin premixed bags (e.g., 500 mg/100 mL NS) but for neonates, ensure the concentration is appropriate (e.g., 5 mg/mL) and the bag contains no preservatives. Verify lot number against preservative-free list: `grep -i "benzyl alcohol" /pharmacy/preservative_list.txt`
   ```

## Dead Ends

- **** — Using sterile water for injection instead of normal saline for reconstitution — results in hypotonic solution causing hemolysis (70% fail)
- **** — Assuming 'any preservative-free water' is safe — sterile water for injection without preservatives is still hypotonic and requires tonicity adjustment (60% fail)
- **** — Using adult vancomycin concentration (5 mg/mL) for neonates without adjusting for fluid restriction — leads to fluid overload in tiny infants (80% fail)
