Einige Beispielberechnungen mit Yacas:

1. Integration von (Sin(n*x)*Cos(m*x)) in den Grenzen
   -Pi bis +Pi :

In> Simplify(Integrate(x,-Pi,Pi)Sin(x)*Sin(2*x))
 Out> 0 
In> Simplify(Integrate(x,-Pi,Pi)Sin(2*x)*Sin(2*x)) 
 Out> Pi 
In>  Simplify(Integrate(x,-Pi,Pi)Sin(5*x)*Sin(5*x)) 
 Out> Pi 
In>  Simplify(Integrate(x,-Pi,Pi)Cos(x)*Cos(2*x)) 
 Out> 0 
In> Simplify(Integrate(x,-Pi,Pi)Cos(2*x)*Cos(2*x)) 
 Out> Pi 
In>  Simplify(Integrate(x,-Pi,Pi)Cos(5*x)*Cos(5*x)) 
 Out> Pi 
In>  Simplify(Integrate(x,-Pi,Pi)Sin(x)*Cos(2*x)) 
 Out> 0 
In> Simplify(Integrate(x,-Pi,Pi)Sin(2*x)*Cos(2*x)) 
 Out> 0 
In> Simplify(Integrate(x,-Pi,Pi)Sin(5*x)*Cos(5*x)) 
 Out> 0 

2. Die ersten 5 Koeffizienten der Fourierreihe von x^2
   auf dem Intervall [-Pi | Pi]. :

In> Fourier(_n,_f)<--1/Pi*Integrate(x,-Pi,Pi)f*Cos(n*x)
 Out> True 
In>  TableForm(Simplify(Table(Fourier(n,x^2),n,0,5,1))) 
 (2*Pi^2)/3
-4
1
-4/9
1/4
-4/25
Out> True 

3. Testen, dass f:=x*Exp(-x/2) eine Lösung der Gleichung
   H(f)=E*f ist, wobei E eine Konstante und
   H=D(x)D(x)f + f/x ist :

In>  H(f):=Deriv(x)Deriv(x)f+f/x 
In>  f:=x*Exp(-x/2) 
In> res:=H(f) 
In> PrettyForm(Simplify(res)) 

       /  / x \ \
x * Exp| -| - | |
       \  \ 2 / /
-----------------
        4        

In> PrettyForm(Simplify(res/f)) 

1
-
4



4. Zeigen, dass die ersten Summanden der Taylorentwicklungen
   von Sin(x) und Cos(x-Pi/2) gleich sind :

In> ans1:=Taylor(x,0,8)Sin(x) 
In> PrettyForm(ans1) 

     3    5      7 
    x    x      x  
x - -- + --- - ----
    6    120   5040

In> ans2:=Taylor(x,0,8)Cos(x-Pi/2) 
In> PrettyForm(ans2) 

     3    5      7 
    x    x      x  
x - -- + --- - ----
    6    120   5040

In> ans1-ans2 
 Out> 0 

5. Bestimmung eine Polynoms, dessen Graph durch die Punkte
   (x,y) = { (-2,4), (1,1), (3,9) } geht und Nachweis, dass
   es sich dabei um die Funktion x^2 handelt :

In> ans:=LagrangeInterpolant({-2,1,3},{4,1,9},x) 
In> PrettyForm(ans) 

4 * ( x - 1 ) * ( x - 3 )   ( x - -2 ) * ( x - 3 )   
------------------------- - ---------------------- + 
           15                         6              

9 * ( x - -2 ) * ( x - 1 )
--------------------------
            10            

In> PrettyForm(Simplify(ans)) 

 2
x