+ 1
Cube Roots
How to find Cube Roots
3 ответов
+ 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?