Hi Troops,
The following code returns incorrect answers. The same computation run directly through SymPy gives the expected answer t**(-2*p1/3-2*p2/3-2*p3/3)
{t,p1,p2,p3}::Symbol.
tmp := 1 / (t**(2*p1) * t**(2*p2) * t**(2*p3))**(1/3).
map_sympy (tmp, "simplify");
tmp := 1 / ((t**(2*p1+2*p2+2*p3)))**(1/3).
map_sympy (tmp, "simplify");
Cheers,
Leo