I am trying to raise -48.08 to the power of 0.2 which should equal -2.17. However when trying to calculate this in python, every way I've tried, I cannot seem to arrive at that number.
Here are my attempted solutions:
math.pow(-48.08 , 0.2)
which gives the following error:
ValueError: math domain error
Another solution attempted was:
-48.08 ** 0.2
Which gives a complex number 197498009.35948756-143490702.9960685j
Does anyone know a way in which I could achieve this?
Thanks