# AI calculates neonatal respiratory rate threshold using adult norms, missing tachypnea in a 2-day-old term infant

- **ID:** `medical/neonatal-respiratory-rate-adult`
- **Domain:** medical
- **Category:** data_error
- **Error Code:** `PEDIATRICS-017`
- **Verification:** ai_generated
- **Fix Rate:** 90%

## Root Cause

Neonatal respiratory rates are much higher than adults (normal 30-60 breaths/min for term newborns vs 12-20 for adults). Using adult thresholds (e.g., >20 = tachypnea) fails to detect respiratory distress in infants, delaying intervention for pneumonia, sepsis, or congenital heart disease.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| WHO Pocket Book of Hospital Care for Children 2nd ed | active | — | — |
| AAP Neonatal Resuscitation Program 8th ed | active | — | — |
| Epic EHR Neonatal Module v2023 | active | — | — |

## Workarounds

1. **Use WHO or AAP reference tables for respiratory rate by age: Term newborn (0-28 days): normal 30-60 bpm, tachypnea >60 bpm. Preterm: normal 40-70 bpm, threshold >70 bpm. Implement as age-specific logic in decision support.** (95% success)
   ```
   Use WHO or AAP reference tables for respiratory rate by age: Term newborn (0-28 days): normal 30-60 bpm, tachypnea >60 bpm. Preterm: normal 40-70 bpm, threshold >70 bpm. Implement as age-specific logic in decision support.
   ```
2. **Integrate neonatal early warning score (NEWS) or modified pediatric early warning score (PEWS) that automatically flags abnormal RR based on age-appropriate z-scores.** (90% success)
   ```
   Integrate neonatal early warning score (NEWS) or modified pediatric early warning score (PEWS) that automatically flags abnormal RR based on age-appropriate z-scores.
   ```
3. **Educate clinicians to always document respiratory rate and compare against age-specific norms. Use visual aids (posters, EHR pop-ups) showing normal ranges for each age group.** (85% success)
   ```
   Educate clinicians to always document respiratory rate and compare against age-specific norms. Use visual aids (posters, EHR pop-ups) showing normal ranges for each age group.
   ```

## Dead Ends

- **** — Neonatal rates are not linear with age. A 2-day-old has rates 3x higher than a 2-year-old. Formula-based adjustments are inaccurate; use published reference tables. (80% fail)
- **** — The upper limit of normal for a term newborn is 60 bpm; 40 bpm is abnormally low (bradypnea) and may miss tachypnea. Different thresholds exist for preterm vs term infants. (75% fail)
- **** — Tachypnea often precedes desaturation by hours in neonatal sepsis. Pulse oximetry can be normal in early respiratory distress, especially with supplemental oxygen. (90% fail)
