Hello Michel, On Sat, May 16, 2009 at 2:59 AM, Michel <michel.vandenbe...@uhasselt.be> wrote: > > var('Q') > solve(Q*sqrt(Q^2 + 2) - 1,Q) > > yields > > [Q == 1/sqrt(Q^2 + 2)] > > Not what I was looking for!
In Sage 4.0 which will be out in a few days, I added support for Maxima's to_poly_solve function which will handle your problem. Here's a sample session from my tree: sage: var('Q') Q sage: solve(Q*sqrt(Q^2 + 2) - 1,Q) [[Q == 1/sqrt(-sqrt(2) + 1)], [Q == 1/sqrt(sqrt(2) + 1)]] --Mike --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---