> -----Message d'origine-----
> De : maxima-admin at math.utexas.edu
> [mailto:maxima-admin at math.utexas.edu] De la part de Richard Fateman
> Envoy? : mercredi 8 mars 2006 01:25
> ? : Tim Milstead
> Cc : maxima at math.utexas.edu
> Objet : Re: [Maxima] Simultaneous Matrix Equations
>
>
> You could try
>
> linsolve([ x=1, y=2], [x,y]);
>
> using solve instead of linsolve will find solutions that are
> not linear, e.g.
>
> solve([ x^2=1, y=2], [x,y]);
>
> It is possible to extract the matrix elements and construct
> the equations by writing a little program; maybe there is
> a command to do this.
>
COEFMATRIX ([eq1, ...], [var1, ...])