aboutsummaryrefslogtreecommitdiff
path: root/src/input/lexp.input.pamphlet
blob: f8af5761399754a1bcc615511fa85619c11e3959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input LEXP.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=
)cl all

 a: Symbol := 'a
 b: Symbol := 'b
 coef     := Fraction(Integer)
 group    := LieExponentials(Symbol, coef, 3)
 lpoly    := LiePolynomial(Symbol, coef)
 poly     := XPBWPolynomial(Symbol, coef)
 ea := exp(a::lpoly)$group
 eb := exp(b::lpoly)$group
 g: group := ea*eb
 g :: poly
 log(g)$group
 g1: group := inv(g)
 g*g1
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}