http://www.perlmonks.org?node_id=1019685


in reply to Re^2: [OT] Function to do x**y for |y|<1 w/o ** operator.
in thread [OT] Function to do x**y for |y|<1 w/o ** operator.

He has log, but not exp.

Perhaps there's also something helpful in Math::BigFloat's _pow() sub:
# Taylor: | u u^2 u^3 | # x ** y = 1 + | --- + --- + ----- + ... | # |_ 1 1*2 1*2*3 _|
where (I gather)
u = y * ln x
Cheers,
Rob