blob: a33550753a7407aa1b4d1ff61f6dcd561b20f6a2 (
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 sinCosEx.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1991.
@
<<*>>=
<<license>>
sinCosExpand := rule
sin(-x) == - sin(x)
cos(-x) == cos(x)
sin(x + y) == sin(x) * cos(y) + sin(y) * cos(x)
cos(x + y) == cos(x) * cos(y) - sin(x) * sin(y)
sin((n | integer? n and n > 1) * x) ==_
sin(x) * cos((n-1)*x) + sin((n-1)*x) * cos(x)
cos((n | integer? n and n > 1) * x) ==_
cos(x) * cos((n-1)*x) - sin(x) * sin((n-1)*x)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|