> I was trying to calculate how much carfentanil I needed, and when I > tried 0.2/5000 I got the result 4e-05
it correct, the result is in the e-notation format, where MeN means M*10^N check with bc: $ echo "4*10^-5" | bc -l results in 0.00004 exactly like: $ echo ".2/5000" | bc -l can this bug be closed? ciao!