# AI recommends a 7-day course of antibiotics for uncomplicated urinary tract infection (UTI) in a non-pregnant adult female, exceeding the recommended 3-5 day course and increasing resistance risk

- **ID:** `medical/antibiotic-course-duration-shortening`
- **Domain:** medical
- **Category:** data_error
- **Error Code:** `MED-ABX-003`
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

Current IDSA guidelines for uncomplicated UTI in non-pregnant women recommend 3-5 days of nitrofurantoin or 3 days of TMP-SMX, not 7 days. Longer courses increase antibiotic resistance, adverse effects, and cost without improving cure rates.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| UpToDate 2023.5 | active | — | — |
| Sanford Guide 2023 | active | — | — |
| Epic Antibiotic Stewardship v2.1 | active | — | — |

## Workarounds

1. **Implement guideline-based order sets: For uncomplicated UTI in non-pregnant female, default to nitrofurantoin 100 mg BID x 5 days. Add a hard stop: if duration >5 days, require indication (e.g., 'complicated UTI', 'pyelonephritis', 'male'). Example order: 'Nitrofurantoin 100 mg PO BID x 5 days'** (90% success)
   ```
   Implement guideline-based order sets: For uncomplicated UTI in non-pregnant female, default to nitrofurantoin 100 mg BID x 5 days. Add a hard stop: if duration >5 days, require indication (e.g., 'complicated UTI', 'pyelonephritis', 'male'). Example order: 'Nitrofurantoin 100 mg PO BID x 5 days'
   ```
2. **Add antibiotic stewardship alert: when duration exceeds guideline, display: 'IDSA recommends 3-5 days for uncomplicated UTI. Longer courses increase resistance and adverse effects. Please confirm indication.'** (85% success)
   ```
   Add antibiotic stewardship alert: when duration exceeds guideline, display: 'IDSA recommends 3-5 days for uncomplicated UTI. Longer courses increase resistance and adverse effects. Please confirm indication.'
   ```

## Dead Ends

- **Always prescribe 7 days 'to be safe' because some patients have resistant organisms** — Routine 7-day courses select for resistant organisms; guidelines recommend 3-5 days for uncomplicated UTI, with 7 days reserved for complicated or pyelonephritis cases (75% fail)
- **Prescribe 10 days of amoxicillin-clavulanate because it covers more bacteria** — Amoxicillin-clavulanate has higher resistance rates for E. coli (the most common UTI pathogen) compared to nitrofurantoin or TMP-SMX, and longer duration increases C. diff risk (65% fail)
- **Use a 5-day course of ciprofloxacin because it's broad spectrum** — Ciprofloxacin is a fluoroquinolone with significant side effects (tendon rupture, QT prolongation) and should be reserved for complicated UTI or when other options are not available; 3-day course is sufficient for uncomplicated UTI if used (80% fail)
