10 Minute (WX) Maxima Tutorial - WXM 1 / 5
10 Minute (WX) Maxima Tutorial - WXM 1 / 5
10 Minute (WX) Maxima Tutorial - WXM 1 / 5
wxm 1 / 5
10 minute (wx)Maxima
tutorial
Welcome to wxMaxima! In this introductory
tutorial you will
learn the basics of wxMaxima and Maxima. Maxima
is a CAS
(Computer Algebra System) similar to systems
like Mathematica,
Maple and others. Maxima, however, is a
commandline application,
which makes it a bit harder to use than its
younger cousins.
Here is where wxMaxima comes in - it's a GUI
(Graphical User
Interface) for Maxima, made to make using
Maxima simpler and
more enjoyable.
➔ 1 + 1;
➔ 5!;
% · 10;
%o1 · 100;
1 / 3;
1.0 / 3.0;
➔ sqrt(2 · %pi);
float(%);
➔ radius: 10 $
height: 100 $
area: %pi · radius^2;
volume: area · height;
➔ float(%);
➔ f(x) := x^2 + a$
f(5);
f(5), a = −5;
integrate( f(var), var );
➔ A: matrix([1,−1],
[1,sin(c)]);
B: invert(A);
A.B;
ratsimp(A.B);
➔ f(x) := x^2 $
diff(f(x), x);
g(y) := sin(y)$
g(f(x));
diff( g(f(x)) , x);