HP Forums

Full Version: solve({ 2*x^2*y^2 = 0,2*y^2*x^2 = 0},{x,y}) [Enter] -> { [x,0] [0, y] }
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
HP-Prime
solve({ 2*x^2*y^2 = 0,2*y^2*x^2 = 0},{x,y}) [Enter] returns
{[x,0]} it means x=x, x takes any parameter & y = 0

now inverting variables {x, y} -> {y, x}
solve({ 2*x^2*y^2 = 0,2*y^2*x^2 = 0},{y, x}) [Enter] returns
{[y,0]} it means y=y, y takes any parameter & x = 0

Why the CAS not return the full answer?

solve({ 2*x^2*y^2 = 0,2*y^2*x^2 = 0},{x,y}) [Enter] ->
{ [x,0] [0, y] } -> (x = x and y = 0) or (x = 0 and y = y)

or

solve({ 2*x^2*y^2 = 0,2*y^2*x^2 = 0},{y, x}) [Enter] ->
{ [0,x] [y, 0] } -> (y = 0 and x = x) or (y = y and y = 0)

within a program reverse variables the logic of the code becomes more complicated

The CAS of ti68K calculators (ti89/nspire), if return the complete solution =)
solve( 2*x^2*y^2= 0 and 2*y^2*x^2 = 0 ,{x,y}) [Enter] returns
(x = x and y = 0) or (x = 0 and y = y)
The reason is the same as for solve(x*y,[x,y]) or solve(x*y,x), no special case for y=0. If your system has more unknowns than equation (after gbasis computation), it is solved with respect to the last unknown(s) it depends on, regarding the first "unknown(s)" as parameters, and solve happens in the generic situation.
(09-21-2016 05:37 PM)parisse Wrote: [ -> ]The reason is the same as for solve(x*y,[x,y]) or solve(x*y,x), no special case for y=0. If your system has more unknowns than equation (after gbasis computation), it is solved with respect to the last unknown(s) it depends on, regarding the first "unknown(s)" as parameters, and solve happens in the generic situation.

Sir,
Could you direct me to the place where I can download the latest manual(s) for XCAS, English and/or French it doesn't matter.
Thank you.
Reference URL's