How to find cube root of 3?

easy way - use a calculator - cuberoot(3) = e^(1/3 ln(3))

Use Newton-Raphson method to find the solution to x^3-3 = 0
Approximate using a Taylor series.

google the way to manually extract cube roots, which is an extension of long division. It's tedious, but not hard.