Edit:
The shortest solution that works for me:
reSum=$(expr "scale=1;555/230" | bc)
if (( `echo $reSum'>='1.5 | bc` )); then
# anything
fi
As pointed out by shellter, [ $(expr "$reSum > 1.5" | bc) ]
actually does a lexicographic comparison.
So, for example, expr "2.4 > 18 | bc" // =>0
.
However, (( `echo $reSum'>='1.5 | bc` ))
does floating point comparison rather than strings.