# AI instructs a diabetic patient to use a U-40 insulin syringe for U-100 insulin, causing tenfold dosing error

- **ID:** `medical/insulin-u100-u40-syringe`
- **Domain:** medical
- **Category:** data_error
- **Error Code:** `MED-ERR-0403`
- **Verification:** ai_generated
- **Fix Rate:** 89%

## Root Cause

AI confused insulin syringe types: U-40 syringes are calibrated for 40 units/mL insulin, while U-100 syringes are for 100 units/mL. Using a U-40 syringe for U-100 insulin delivers 2.5 times the intended dose per unit mark, risking severe hypoglycemia.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| BD Ultra-Fine 6mm | active | — | — |
| NovoFine 4mm | active | — | — |
| EasyTouch U-100 | active | — | — |

## Workarounds

1. **Always verify the insulin concentration (U-100 or U-40) on the vial and match it to the syringe markings. If only U-40 syringes are available for U-100 insulin, calculate the correct volume: (desired units / 100) * 40 = units to draw on U-40 syringe. Example: 10 units U-100 insulin = draw 4 units on U-40 syringe. Document in the patient's insulin log.** (90% success)
   ```
   Always verify the insulin concentration (U-100 or U-40) on the vial and match it to the syringe markings. If only U-40 syringes are available for U-100 insulin, calculate the correct volume: (desired units / 100) * 40 = units to draw on U-40 syringe. Example: 10 units U-100 insulin = draw 4 units on U-40 syringe. Document in the patient's insulin log.
   ```
2. **Use a standardized color-coding system: U-100 syringes have orange caps, U-40 syringes have red caps. Train all nursing staff to check cap color before drawing insulin. Implement a barcode scanning system at the bedside that rejects mismatched syringe/insulin pairs.** (88% success)
   ```
   Use a standardized color-coding system: U-100 syringes have orange caps, U-40 syringes have red caps. Train all nursing staff to check cap color before drawing insulin. Implement a barcode scanning system at the bedside that rejects mismatched syringe/insulin pairs.
   ```
3. **For patients at home, prescribe only one insulin concentration and matching syringes. Provide a written dosing chart with clear instructions: 'Use only the blue syringe for your insulin. If you have a red syringe, do not use it—call your pharmacy.'** (85% success)
   ```
   For patients at home, prescribe only one insulin concentration and matching syringes. Provide a written dosing chart with clear instructions: 'Use only the blue syringe for your insulin. If you have a red syringe, do not use it—call your pharmacy.'
   ```

## Dead Ends

- **** — Assuming all insulin syringes are the same and using whichever is available without checking concentration markings. (85% fail)
- **** — Converting doses manually by multiplying units by 2.5, but then using a U-100 syringe anyway due to habit. (65% fail)
- **** — Telling the patient to 'use the same number of units' regardless of syringe type, ignoring the concentration difference. (90% fail)
