First time here? Check out the FAQ!
answered 2013-04-11 06:33:39 +0100
Hi,
You can solve this one with maxima. First you define a = A^(1/3) in your equation and multiply the LHS by a. Then
sage: var('a','z') sage: EQ = z * a^2 + 2*(a^3 - 2*z) == 0 sage: EQ.solve(a) ...