+ 2
Cube Roots
How to find Cube Roots
4 Respuestas
+ 8
Niall Sarath ,
since you didn't give any more details, here is the way you can get it done:
> the cube root of a number x is equivalent to raising x to the power of 1/3.
you can apply this to programming languages, or you can use dedicated math modules like in python:
from math import pow
x = 70
cube_root = pow(x, 1/3)
print(cube_root)
+ 2
That seems more of a mathy question that would be suited for other kinds of forums. This is a Q&A that is centered around programming.
0
How to find Cube Roots?
0
Thanks for sharing. I found a lot of interesting information here. A really good post, very thankful and hopeful that you will write many more posts like this one https://www.litebluelite.com