The actual result is 37.1465555388 whose scale must be 10 for it to be exact.
What the JavaDoc says is that the preferred scale is the difference meaning that if the result didn't actually need to be 10, then it would try to make it 8. For example if you would have divided by 2, whose scale is also 0, the result would have been 18573277.76940000 (scale 8).
EDIT: small adition - you can force the division to a certain scale by using the overloaded divide methods:
divide(BigDecimal, RoundingMode)
that will give a BigDecimal
with scale of this
and value rounded using the specified rounding method if the result would actually need more decimals to be exact.
dividedivide(BigDecimal, scale, RoundingMode)
that will give a BigDecimal
with specified scale, and value rounded by specified method if needed.
This might be useful if your dividing by a number you know can cause repeating decimals, like 3 (1/3 = 0.333333...) since, if that happens, the simple divide will throw an exception. Bounding it to a maximum number of decimals will help you avoid the exception but will make your computations less precise.