On Maxima use in TeXmacs

by Marek Rychlik

U of A

1 Using formulas

This is a normal formula:

∮E dx = R.

2 Octave session

octave>

a=[1;2;3;4]

octave>

a+a

(
2
4
6
8
)

octave>

a

octave>

3 Gnuplot

This is a TeXmacs interface for GNUplot.

GNUplot]

plot(sin(x))

GNUplot]

4 My first Maxima session

This is a plain text. And an inline formulat: 1 + x + x2 + … + xn - 1=frac (1 - xn, 1 - x).

(%i1)

integrate(f(x),x);

(%o1) f(x) d x

(%i2)

diff(1/(1+x*exp(-x)),x,2);

(%o2) frac (2 (e - x - x e - x)2, (x e - x + 1)3) - frac (x e - x - 2 e - x, (x e - x + 1)2)

(%i3)