- Is there a loss in precision when using
BigDecimalmultiplied bysin,cos,tanor any other trigonometric methods? - Is it valid to use
BigDecimalwith rational numbers? - I know,
BigDecimalis used for "precision currency calculations" (Java BigDecimal trigonometric methods). I know, there are projects like https://github.com/eobermuhlner/big-math or http://www.apfloat.org/. Where lies the difference when using double for that withoutBigDecimal? Because havingBigDecimaland converting to double only because I need theexpof it, does this makes sense. Precision is lost when using trigonometric methods. Or not?
The question is: Does it even make sense to use BigDecimal with "rational numbers"?