Unit Analysis Skill
Performs dimensional analysis for equation verification and unit conversions between SI, imperial, and custom systems.
Usage
python3 -c "
# Convert 60 mph to m/s
mph = 60
ms = mph * 1609.34 / 3600
print(f'{mph} mph = {ms:.2f} m/s')
"
Examples
- "Convert 100 km/h to m/s" -> Shows conversion chain with unit cancellation
- "Verify units in F=ma" -> Confirms kg*m/s^2 = Newton
- "Convert between pressure units" -> Handles Pa, atm, psi, bar, mmHg
Guidelines
- Show the conversion chain for transparency
- Verify units cancel properly in multi-step conversions
- Use SI units as the standard intermediate system