Gleichungssystem lösen
Veröffentlicht von johannweilharter in Uncategorized am Januar 8, 2012
Das sind die gegebenen Gleichungen. Es ist praktisch, wenn man ihnen Namen (g1,g2) gibt.
So sieht eine Lösung aus.
Berechnungen an einer Linse
Veröffentlicht von johannweilharter in Geometrie am Januar 6, 2012
Maxima 5.25
Veröffentlicht von johannweilharter in Programme am August 23, 2011
Please distribute this message as you see fit. Announcing Maxima 5.25 Maxima is a GPL'd branch of Macsyma, the venerable symbolic computation system. Maxima 5.25 is a bug fix and feature enhancement release. The current version is 5.25.0. Maxima has functions to work with polynomials, matrices, finite sets, integrals, derivatives and differential equations, linear algebra, plotting, floating point and arbitrary-precision arithmetic, etc. Maxima can run on MS Windows and various flavors of Unix, including MacOS X. There is a precompiled executable installer for Windows, RPM's for Linux, and source code tar.gz. Maxima is implemented in Common Lisp; several Lisps can compile and run Maxima, including CMUCL, SBCL, Clisp, GCL, and ECL. The Maxima project welcomes new participants. You can contribute in several ways: reporting bugs, fixing bugs, writing new add-on packages, revising core functions, user interfaces, documentation, .... Why not see what's happening on the mailing list and consider how you might contribute to the project. Thanks to everyone who contributed to the 5.25 release. Regards, Robert Dodier Maxima developer and 5.25 release manager Project page: http://sourceforge.net/projects/maxima Documentation: http://maxima.sourceforge.net/documentation.html Bug reports. You must create a Sourceforge login before filing a bug report (anonymous reports no longer allowed). http://sourceforge.net/tracker/?group_id=4933&atid=104933 Mailing list. Please sign up before posting a message. http://maxima.sourceforge.net/maximalist.html Download page: http://sourceforge.net/project/showfiles.php?group_id=4933 Ports page: http://apps.sourceforge.net/mediawiki/maxima/index.php?title=Maxima_ports Project home page: http://maxima.sourceforge.net Change log: http://maxima.git.sourceforge.net/git/gitweb.cgi?p=maxima/maxima;a=blob;f=ChangeLog-5.25 _______________________________________________ Maxima mailing list Maxima@math.utexas.edu http://www.math.utexas.edu/mailman/listinfo/maxima
Lineare Gleichungen
Veröffentlicht von johannweilharter in Uncategorized am August 22, 2011
Neues Design
Veröffentlicht von johannweilharter in Uncategorized am Juli 20, 2011
wir testen ein neues Design
Flächenintegral
Veröffentlicht von johannweilharter in Analysis am März 16, 2011
Heute haben wir in der 4BHK eine schöne Darstellung der Grundidee des Flächenintegrals gemacht:: http://maxima.weilharter.info/dokumente2/DX1603.pdf
Mittelwert und Varianz einer gruppierten Verteilung
Veröffentlicht von johannweilharter in Uncategorized am Mai 10, 2010
Mittelwert und Varianz
(%i1) x:[1,2,3,4,5];
h:[2,3,7,3,2];
(%o1) [1,2,3,4,5]
(%o2) [2,3,7,3,2]
(%i3) n:length(x);
(%o3) 5
Der Mittelwert
(%i4) m:sum(x[i]*h[i],i,1,n)/sum(h[i],i,1,n);
(%o4) 3
Die linearen Abweichungen: positive und negative Werte
heben sich auf!
(%i5) x-m;
(%o5) [-2,-1,0,1,2]
(%i6) sum(x[i]-m,i,1,n);
(%o6) 0
Wir berechnen die quadratischen Abweichungen
(%i7) (x-m)**2;
(%o7) [4,1,0,1,4]
(%i8) v:sum((x[i]-m)**2*h[i],i,1,n)/sum(h[i],i,1,n),numer;
(%o8) 1.294117647058824
Der Durchschnitt über diese Tabelle heißt VARIANZ
Robert Dodier zu Maxima 5.21
Veröffentlicht von johannweilharter in Programme am Mai 3, 2010
Please distribute this message as you see fit.
Announcing Maxima 5.21
Maxima is a GPL’d branch of Macsyma, the venerable symbolic computation system. Maxima 5.21 is a bug fix and feature enhancement release. The current version is 5.21.1.
Maxima has functions to work with polynomials, matrices, finite sets, integrals, derivatives and differential equations, linear algebra, plotting, floating point and arbitrary-precision arithmetic, etc.
Maxima can run on MS Windows and various flavors of Unix, including MacOS X.
There is a precompiled executable installer for Windows, RPM’s for Linux, and source code tar.gz.
Maxima is implemented in Common Lisp; several Lisps can compile and run Maxima, including CMUCL, SBCL, Clisp, GCL, and ECL.
The Maxima project welcomes new participants. You can contribute in several ways: reporting bugs, fixing bugs, writing new add-on packages, revising core functions, user interfaces, documentation, ….
Why not see what’s happening on the mailing list and consider how you might contribute to the project.
Thanks to everyone who contributed to the 5.21 release.
Regards,
Robert Dodier
Maxima developer and 5.21 release manager
Project page:
http://sourceforge.net/projects/maxima
Documentation:
http://maxima.sourceforge.net/documentation.html
Bug reports. Please create a Sourceforge login before filing a bug report.
http://sourceforge.net/tracker/?group_id=4933&atid=104933
Mailing list. Please sign up before posting a message.
http://maxima.sourceforge.net/maximalist.html
Download page:
http://sourceforge.net/project/showfiles.php?group_id=4933
Ports page:
http://apps.sourceforge.net/mediawiki/maxima/index.php?title=Maxima_ports
Project home page:
Change log:
http://maxima.cvs.sourceforge.net/*checkout*/maxima/maxima/ChangeLog-5.21
_______________________________________________
Maxima mailing list
Trigonometrie: PIARGS
Veröffentlicht von johannweilharter in Bedienung, Trigonometrie am Mai 2, 2010
Maxima als Rechenhilfsmittel – Grundrechnungsarten
Veröffentlicht von johannweilharter in Uncategorized am März 20, 2010