Ask Your Question

Revision history [back]

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)
...