+ 1

Cube Roots

How to find Cube Roots

3rd Dec 2024, 4:39 PM
Niall Sarath
Niall Sarath - avatar
3 Answers
+ 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)
3rd Dec 2024, 7:50 PM
Lothar
Lothar - avatar
+ 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.
3rd Dec 2024, 7:02 PM
Justice
Justice - avatar
0
How to find Cube Roots?
3rd Dec 2024, 4:39 PM
Niall Sarath
Niall Sarath - avatar