Mais moi qui était par pure coïncidence en train de découvrir le logiciel Maxima (un logiciel de calcul formel sous license GPL et de très bonne qualité), j'ai cherché comment faire ça. Voici la session qui te donnera la réponse (ce que j'ai tapé au clavier est en gras) :
$ maxima
Maxima 5.9.1 http://maxima.sourceforge.net(...)
Using Lisp CMU Common Lisp CVS release-19a 19a-release-20040728 + minimal debian patches
Distributed under the GNU Public License. See the file COPYING.
Dedicated to the memory of William Schelter.
This is a development version of Maxima. The function bug_report()
provides bug reporting information.
(%i1) declare(a, real);
(%o1) DONE
(%i2) determinant([a]);
(%o2) a
# Avec l'aide de Maxima
Posté par kd . En réponse au message Déterminant d'une matrice d'ordre 1. Évalué à 3.
Mais moi qui était par pure coïncidence en train de découvrir le logiciel Maxima (un logiciel de calcul formel sous license GPL et de très bonne qualité), j'ai cherché comment faire ça. Voici la session qui te donnera la réponse (ce que j'ai tapé au clavier est en gras) :
$ maxima
Maxima 5.9.1 http://maxima.sourceforge.net(...)
Using Lisp CMU Common Lisp CVS release-19a 19a-release-20040728 + minimal debian patches
Distributed under the GNU Public License. See the file COPYING.
Dedicated to the memory of William Schelter.
This is a development version of Maxima. The function bug_report()
provides bug reporting information.
(%i1) declare(a, real);
(%o1) DONE
(%i2) determinant([a]);
(%o2) a
Voilà, le déterminant de la matrice [a] est a.