Previous Up Next

9.1.9  Separation of variables

The split command tries to factor an expression involving two variables into the product of two expressions, each of which depends on only one of the variables.

Examples

split((x+1)*(y-2),[x,y])

or:

split(x*y-2*x+y-2,[x,y])
     

x+1,y−2
          
split((x^2*y^2-1,[x,y])
     

0
          

Previous Up Next