So the good result relies only on the precision of the operation which is not straightforward immediately for the developer (because the statement will return a value).
To sum up:
Only #power can be used for proper exponentiation, as #** cannot be given any argument and thus will give almost always wrong results if used with large numbers. Existing code might need to be rewritten, changing class from Float to BigDecimal will not be idempotent.
BigDecimal is advertised as an "arbitrary precision library" yet using the defaults is less precise than Float. This is misleading, it will bite newcomers in the back.
I think this should be documented and/or fine-tuned, the above two violates the Principle of Least Surprise.