Is there any name for this formula
$$(1+x)^n-1$$
When working with floating point numbers this can be calculated with much better precision for very small $|x|<1$ values using Taylor series comparing to result from direct calculation approach. Still I need to name it somehow to move this to separate calculation class and don't like the name OnePlusPoweredMinusOneFunction.
If you are dealing with this numerically, use
(if those functions are available in your math library) to get high precision results.
and
both for small
xwithout cancellation.