Regenerate all examples via update_examples.
[maxima.git] / demo / manual.demo
blob78e433f032e8f41bc1f82ae76e72f9229526f6f5
1  /* 
2    This file is to be run by the EXAMPLE command, and may not 
3    otherwise work.
4    The following are either acceptable lines to Maxima, or they are
5    two successive '&' characters 
6    and then followed by the name of the section of examples, and then followed by
7    a sequence of Maxima forms, e.g.
8    
9    '&'& topic               (without the quotes)
10    
11       /* This is a comment */
12       <Maxima form 1>;
13       <Maxima form 2>;
14       ...
17 && additive
18    
19    declare(f,additive);
20    f(2*a+3*b);
22 && algsys
24    f1:2*x*(1-l1)-2*(x-1)*l2$
25    f2:l2-l1$
26    f3:l1*(1-x**2-y)$
27    f4:l2*(y-(x-1)**2)$
28    algsys([f1,f2,f3,f4],[x,y,l1,l2]);
29    f1:x**2-y**2$
30    f2:x**2-x+2*y**2-y-1$
31    algsys([f1,f2],[x,y]);
33 && allroots
35    (2*x+1)^3=13.5*(x^5+1);
36    allroots(%);
37    
38 && antisymmetric
40    declare(h,antisymmetric);
41    h(x,z,y);
43 && append
45    append([y+x,0,-3.2],[2.5e20,x]);
46    
47 && arrayinfo
49    b[1,x]:1$
50    array(f,2,3);
51    arrayinfo(b);
52    arrayinfo(f);
54 && arrays
55   
56    a[n]:=n*a[n-1];
57    a[0]:1$
58    a[5];
59    a[n]:=n$
60    a[6];
61    a[4];
63 && at 
65    atvalue(f(x,y),[x=0,y=1],a^2);
66    atvalue('diff(f(x,y),x),x=0,y+1);
67    printprops(all,atvalue);
68    diff(4*f(x,y)^2-u(x,y)^2,x);
69    at(%,[x=0,y=1]);
71 && atvalue
72       
73    kill(f,x,a,u,g);
74    atvalue(f(x,y),[x=0,y=1],a^2)$
75    atvalue('diff(f(x,y),x),x=0,y+1);
76    printprops(all,atvalue);
77    diff(4*f(x,y)^2-u(x,y)^2,x);
78    at(%,[x=0,y=1]);
80 && augcoefmatrix  
81    
82    [2*x-(a-1)*y=5*b,a*x+b*y+c=0]$
83    augcoefmatrix(%,[x,y]);
85 && bezout
87    bezout(a*y+x^2+1,y^2+x*y+b,x);
88    expand(determinant(%));
89    %-expand(resultant(a*y+x^2+1,y^2+x*y+b,x));
90    
91 && block
93    kill(f);
94    hessian(f):=block([dfxx,dfxy,dfxz,dfyy,dfyz,dfzz],
95          dfxx:diff(f,x,2),dfxy:diff(f,x,1,y,1),
96          dfxz:diff(f,x,1,z,1),dfyy:diff(f,y,2),
97          dfyz:diff(f,y,1,z,1),dfzz:diff(f,z,2),
98          determinant(matrix([dfxx,dfxy,dfxz],[dfxy,dfyy,dfyz],
99                  [dfxz,dfyz,dfzz])))$
100    kill(x,y,z);
101    hessian(x^3-3*a*x*y*z+y^3);
102    subst(1,z,quotient(%,-54*a^2));
103    f(x):=block([y,use_fast_arrays:false], local(a), y:4, a[y]:x, display(a[y]))$
104    y:2$
105    a[y+2]:0$
106    f(9);
107    ff(x):=block([y,a,use_fast_arrays:true], y:4, a[y]:x, display(a[y]))$
108    ff(10);
109    a[y+2];
111 && bothcoeff  
112    
113    islinear(exp,var):=block([c],
114                c:bothcoef(rat(exp,var),var),
115                is(freeof(var,c) and c[1]#0))$
116    islinear((r^2-(x-r)^2)/x,x);
117    
118 && catch
119    
120    g(l):=catch(map(lambda([x],if x<0 then throw(x) else f(x)),l))$
121    g([1,2,3,7]);
122    g([1,2,-3,7]);
124 && cf
125   
126    cf([1,2,-3]+[1,-2,1]);
127    cfdisrep(%);
128    cflength:4$
129    cf(sqrt(3));
130    cfexpand(%);
131    ev(%[1,2]/%[2,2],numer);
133 && cfdisrep  
134       
135    cf([1,2,-3]+[1,-2,1]);
136    cfdisrep(%);
138 && cfexpand
139   
140    cflength:4$
141    cf(sqrt(3));
142    cfexpand(%);
143    ev(%[1,2]/%[2,2],numer);
145 && changevar  
146    
147    'integrate(%e^(sqrt(a)*sqrt(y)),y,0,4);
148    changevar(%,y-z^2/a,z,y);
150    sum(a[k]*x^(N-1-k), k, 0, N - 1);
151    changevar(%, m = N - 1 - k, m, k);
152 && charpoly  
154    a:matrix([3,1],[2,4]);
155    expand(charpoly(a,lambda));
156    (programmode:true,solve(%));
157    matrix([x1],[x2]);
158    ev(a.%-lambda*%,%th(2)[1]);
159    %[1,1]=0;
160    x1^2+x2^2=1;
161    solve([%th(2),%],[x1,x2]);
163 && coeff
164    
165    coeff(2*a*tan(x)+tan(x)+b=5*tan(x)+3,tan(x));
166    coeff(y+x*%e^x+1,x,0);
168 && combine
169    
170    combine(a/x+b/x+a/y+b/y);
171    
172 && commutative 
173    
174    declare(h,commutative);
175    h(x,z,y);
177 && complex  
178    
179    (sqrt(-4)+sqrt(2.25))^2;
180    expand(%);
181    expand(sqrt(2*%i));
182    
183 && content  
184    
185    content(2*x*y+4*x^2*y^2,y);
187 && defmatch  
188    
189    nonzeroandfreeof(x,e):=is(e#0 and freeof(x,e));
190    matchdeclare(a,nonzeroandfreeof(x),b,freeof(x));
191    defmatch(linear,a*x+b,x);
192    linear(3*z+(y+1)*z+y**2,z);
193    matchdeclare([a,f],true);
194    constinterval(l,h):=constantp(h-l)$
195    matchdeclare(b,constinterval(a))$
196    matchdeclare(x,atom)$
197    block(remove(integrate,outative),
198          defmatch(checklimits,'integrate(f,x,a,b)),
199          declare(integrate,outative))$
200    'integrate(sin(t),t,x+%pi,x+2*%pi)$
201    checklimits(%);
202    'integrate(sin(t),t,0,x)$
203    checklimits(%);
204    remvalue(a,b,f,x)$
205    
206 && deftaylor
207   
208    deftaylor(f(x),x^2+sum(x^i/(2^i*i!^2),i,4,inf));
209    taylor(%e^sqrt(f(x)),x,0,4);
211 && delete  
212    
213    delete(sin(x),x+sin(x)+y);
215 && depends
216   
217    kill(a,x,f,y,t);
218    depends(a,x);
219    diff(a.a,x);
220    depends(f,[x,y],[x,y],t);
221    diff(f,t);
223 && derivdegree  
224    
225    'diff(y,x,2)+'diff(y,z,3)*2+'diff(y,x)*x^2;
226    derivdegree(%,y,x);
228 && desolve  
229    
230    eqn1:'diff(f(x),x)='diff(g(x),x)+sin(x);
231    eqn2:'diff(g(x),x,2)='diff(f(x),x)-cos(x);
232    atvalue('diff(g(x),x),x=0,a);
233    atvalue(f(x),x=0,1);
234    desolve([eqn1,eqn2],[f(x),g(x)]);
235    /* verification */
236    [eqn1,eqn2],%,diff;
238 && diff
239   
240    kill(f,g,h,x,y);
241    diff(sin(x)+x^3+2*x^2,x);
242    diff(sin(x)*cos(x),x);
243    diff(sin(x)*cos(x),x,2);
244    derivabbrev:true$
245    diff(exp(f(x)),x,2);
246    'integrate(f(x,y),y,g(x),h(x));
247    diff(%,x);
249 && display  
250    
251    display(b[1,2]);
253 && divide  
255    divide(x+y,x-y,x);
256    divide(x+y,x-y);
257    
258 && do
259   
260    for a:-3 thru 26 step 7 do ldisplay(a)$
261    s:0$
262    for i:1 while i<=10 do s:s+i;
263    s;
264    series:1$
265    term:exp(sin(x))$
266    for p:1 unless p>7 do
267              (term:diff(term,x)/p,
268              series:series+subst(x=0,term)*x^p)$
269    series;
270    poly:0$
271    for i:1 thru 5 do
272            for j:i step -1 thru 1 do
273               poly:poly+i*x^j$
274    poly;
275    guess:-3.0$
276    for i thru 10 do (guess:subst(guess,x,0.5*(x+10/x)),
277             if abs(guess^2-10)<0.00005 then return(guess));
278    for count:2 next 3*count thru 20
279             do ldisplay(count)$
280    x:1000;
281    thru 10 while x#0 do x:0.5*(x+5/x)$
282    x;
283    remvalue(x);
284    newton(f,guess):=block([numer,y],local(f,df,x,guess),
285          numer:true,
286            define(df(x),diff(f(x),x)),
287         do (y:df(guess), if y=0 then error(
288              "derivative at",guess,"is zero"),
289             guess:guess-f(guess)/y,
290             if abs(f(guess))<5.0e-6 then return(guess)))$
291    sqr(x):=x^2-5.0$
292    newton(sqr,1000);
293    for f in [log, rho, atan] do ldisp(f(1.0))$
294    ev(concat(e,linenum-1),numer);
295    
296 && dotscrules  
298    declare(l,scalar,[m1,m2,m3],nonscalar);
299    expand((1-l*m1).(1-l*m2).(1-l*m3));
300    %,dotscrules;
301    rat(%,l);
303 && dpart
305    dpart(x+y/z^2,1,2,1);
306    expand((b+a)^4);
307    (b+a)^2*(y+x)^2;
308    expand(%);
309    %th(3)/%;
310    factor(%);
311    dpart(%th(2),2,4);
312    part(%th(3),2,4);
313    
314 && echelon  
315    
316    matrix([2,1-a,-5*b],[a,b,c]);
317    echelon(%);
319 && eliminate  
320    
321    exp1:2*x^2+y*x+z;
322    exp2:3*x+5*y-z-1;
323    exp3:z^2+x-y^2+5;
324    eliminate([exp3,exp2,exp1],[y,z]);
326 && entermatrix  
327    
328    entermatrix(2,1);
329    
330 && equations  
331    
332    x+1=y^2;
333    x-1=2*y+1$
334    %th(2)+%;
335    %th(3)/y;
336    1/%;
338 && ev
340    kill(y,x,w);
341    sin(x)+cos(y)+(w+1)^2+'diff(sin(w),w);
342    ev(%,sin,expand,diff,x=2,y=1);
343    ev(x+y,x:a+y,y:2);
344    'diff(y^2+x*y+x^2,x,2,y,1);
345     
346    ev(%,diff);
347    2*x-3*y=3$
348    -3*x+2*y=-4$
349    solve([%th(2),%]);
350    ev(%th(3),%);
351    x+1/x>gamma(1/2);
352    ev(%,numer,x=1/2);
353    ev(%,pred);
354    
355 && evaluation  
357    diff(x*f(x),x);
358    f(x):=sin(x)$
359    ev(%th(2),diff);
360    x;
361    x:3$
362    x;
363    'x;
364    f(x):=x^2;
365    'f(2);
366    ev(%,f);
367    '(f(2));
368    ''%;
369    sum(i!,i,1,4);
370    'sum(i!,i,1,4);
371    remvalue(x);
372    'integrate(f(x),x,a,b);
373    for i thru 5 do s:s+i^2;
374    s;
375    ev(%,s:0);
376    ev(%th(2));
377    'sum(g(i),i,0,n);
378    z*%e^z;
379    ev(%,z:x^2);
380    subst(x^2,z,%th(3));
381    a:%;
382    a+1;
383    kill(a,y);
384    a;
385    /* declare(integrate,noun)$ */
386    integrate(y^2,y);
387    ''integrate(y^2,y);
388    f(y):=diff(y*log(y),y,2);
389    f(y):=''(diff(y*log(y),y,2));
390    ''(concat(c,linenum-1));
391    (x+y)^3$
392    diff(%,x);
393    y:x^2+1$
394    ''(concat(c,linenum-2));
396 && evenfun
398    declare(g,evenfun);
399    g(-x);
401 && exp
402   
403    ev(%e^x*sin(x)^2,exponentialize);
404    kill(x);
405    integrate(%,x);
406    ev(%,demoivre);
407    ans:ev(%,ratexpand);
408    ev(%,x:1,numer)-ev(%,x:0,numer);
409    integrate(%e^x*sin(x)^2,x);
410    trigreduce(%);
411    %-ans;
412    ev(sin(x),%emode);
414 && expand  
415    
416    (1/(x+y)^4-3/(y+z)^3)^2;
417    expand(%,2,0);
418    expand(a.(b+c.(d+e)+f));
419    expand((x+1)^3);
420    (x+1)^7;
421    expand(%);
422    expand(%th(2),7,7);
423    ev(a*(b+c)+a*(b+c)^2,expop:1);
425 && factcomb
427    (n+1)^2*n!^2;
428    factcomb(%);
430 && factor
431   
432    factor(2^63-1);
433    factor(z^2*(x+2*y)-4*x-8*y);
434    x^2*y^2+2*x*y^2+y^2-x^2-2*x-1;
435    block([dontfactor:[x]],factor(%/36/(y^2+2*y+1)));
436    factor(%e^(3*x)+1);
437    factor(x^4+1,a^2-2);
438    factor(x^3+x^2*y^2-x*z^2-y^2*z^2);
439    (x+2)/(x+3)/(x+b)/(x+c)^2;
440    ratsimp(%);
441    partfrac(%,x);
442    map('factor,%);
443    ratsimp((x^5-1)/(x-1));
444    subst(a,x,%);
445    factor(%th(2),%);
446    factor(x^12+1);
447    factor(x^99+1);
448    
449 && factorsum  
450    
451    ev((x+1)*((u+v)^2+a*(w+z)^2),expand);
452    factorsum(%);
454 && featurep 
456    declare(j,even)$
457    featurep(j,integer);
459 && freeof
460   
461    freeof(y,sin(x+2*y));
462    freeof(cos(y),"*",sin(y)+cos(x));
464 && fullmap  
465    
466    fullmap(g,a+b*c);
467    map(g,a+b*c);
469 && fullmapl
470   
471    fullmapl("+",[3,[4,5]],[[a,1],[0,-1.5]]);
473 && funcsolve
474    
475    funcsolve((n+1)*f(n)-(n+3)*f(n+1)/(n+1)=(n-1)/(n+2),f(n));
477 && functions
478    
479    kill(x,y,f,g,h);
480    f(x):=x^2+y;
481    f(2);
482    ev(f(2),y:7);
483    f(x):=sin(x)^2+1;
484    f(x+1);
485    g(y,z):=f(z)+3*y;
486    ev(g(2*y+z,-0.5),y:7);
487    h(n):=sum(i*x^i,i,0,n);
488    functions;
489    t[n](x):=ratexpand(2*x*t[n-1](x)-t[n-2](x));
490    t[0](x):=1$
491    t[1](x):=x$
492    t[4](y);
493    g[n](x):=sum(ev(x),i,n,n+2);
494    h(n,x):=sum(ev(x),i,n,n+2);
495    g[2](i^2);
496    h(2,i^2);
497    p[n](x):=ratsimp(1/(2^n*n!)*diff((x^2-1)^n,x,n));
498    q(n,x):=ratsimp(1/(2^n*n!)*diff((x^2-1)^n,x,n));
499    p[2];
500    p[2](y+1);
501    q(2,y);
502    p[2](5);
503    f[i,j](x,y):=x^i+y^j;
504    g(fun,a,b):=print(fun," applied to ",a," and ",b," is ",fun(a,b))$
505    g(f[2,1],sin(%pi),2*c);
507 && genmatrix
508   
509    h[i,j]:=1/(i+j-1)$
510    genmatrix(h,3,3);
512 && get
513   
514    put(%e,transcendental,type);
515    put(%pi,transcendental,type)$
516    put(%i,algebraic,type)$
517    typeof(x):=block([q], if numberp(x)
518                then return(algebraic),
519                if not atom(x)
520                then return(maplist(typeof,x)),
521                q:get(x,type), if q=false then
522                error("not numeric") else q)$
523    errcatch(typeof(2*%e+x*%pi));
524    typeof(2*%e+%pi);
526 && gfactor  
527    
528    gfactor(x^4-1);
530 && gradef
531   
532    depends(y,x);
533    kill(f,g,j);
534    gradef(f(x,y),x^2,g(x,y));
535    diff(f(x,y),x);
536    gradef(j(n,z),'diff(j(n,z),n),
537         j(n-1,z)-n/z*j(n,z))$
538    ratsimp(diff(j(2,x),x,2));
539    
540 && horner  
541    
542    poly:1.0e-20*x^2-5.5*x+5.2e20;
543    errcatch(ev(%,x=1.0e20));
544    horner(poly,x),keepfloat;
545    ev(%,x=1.0e20);
546    
547 && if
548   
549    fib[n]:=if n=1 or n=2 then 1 else fib[n-1]+fib[n-2];
550    fib[1]+fib[2];
551    fib[3];
552    fib[5];
553    eta(mu,nu):=if mu=nu then mu else if mu>nu then mu-nu else mu+nu;
554    eta(5,6);
555    eta(eta(7,7),eta(1,2));
556    if not 5>=2 and 6<=5 or 4+1>3 then a else b;
557    
558 && ilt  
559    
560    'integrate(sinh(a*x)*f(t-x),x,0,t)+b*f(t)=t^2;
561    laplace(%,t,s);
562    linsolve([%],['laplace(f(t),t,s)]);
563    ilt(ev(%[1]),s,t);
565 && inpart  
566    
567    x+y+w*z;
568    inpart(%,3,2);
569    'limit(f(x)^g(x+1),x,0,minus);
570    inpart(%,1,2);
572 && integrate
573    
574    test(f):=block([u],u:integrate(f,x),ratsimp(f-diff(u,x)));
575    test(sin(x));
576    test(1/(1+x));
577    test(1/(1+x^2));
578    integrate(sin(x)^3,x);
579    kill(q)$
580    integrate(%e^x/(%e^x+2),x);
581    integrate(1/(x*log(x)),x);
582    integrate(sin(2*x+3),x);
583    integrate(%e^x*erf(x),x);
584    integrate(x/(x^3+1),x);
585    diff(%,x);
586    ratsimp(%);
587    integrate(x^(5/4)/(x+1)^(5/2),x,0,inf);
588    gradef(q(x),sin(x^2));
589    diff(log(q(r(x))),x);
590    integrate(%,x);
592 && is  
593    
594    is(x^2>=2*x-1);
595    assume(a>1);
596    is(log(log(a+1)+1)>0 and a^2+1>2*a);
597    
598 && isolate  
599    
600    (a+b)^4*(1+x*(2*x+(c+d)^2));
601    isolate(%,x);
602    ratexpand(%)$
603    ev(%);
604    (a+b)*(x+a+b)^2*%e^(x^2+a*x+b);
605    isolate(%,x),exptisolate:true;
606   
607 && lambda
608   
609    lambda([x,y,z],x^2+y^2+z^2);
610    %(1,2,a);
611    "+"(1,2,a);
612    
613 && laplace
614   
615    laplace(%e^(2*t+a)*sin(t)*t,t,s);
617 && lassociative 
618    
619    declare(g,lassociative);
620    g(g(a,b),g(c,d));
621    g(g(a,b),g(c,d))-g(a,g(b,g(c,d)));
623 && let  
624    
625    matchdeclare([a,a1,a2],true);
626    oneless(x,y):=is(x=y-1)$
627    let(a1*a2!,a1!,oneless,a2,a1);
628    let(a1!/a1,(a1-1)!),letrat;
629    letsimp(n*m!*(n-1)!/m),letrat;
630    let(sin(a)^2,1-cos(a)^2);
631    sin(x)^4;
632    letsimp(%);
633    
634 && limit  
635    
636    limit(x*log(x),x,0,plus);
637    limit((1+x)^(1/x),x,0);
638    limit(%e^x/x,x,inf);
639    limit(sin(1/x),x,0);
640    
641 && linear 
643    declare(f,linear);
644    f(2*a+3*b);
645    f(2*x+y,x);
646    
647 && linsolve  
648    
649    x+z=y$
650    2*a*x-y=2*a^2$
651    y-2*z=2$
652    linsolve([%th(3),%th(2),%],[x,y,z]),globalsolve;
654 && listofvars  
655    
656    listofvars(f(x[1]+y)/g^(2+a));
658 && lists  
659    
660    [x^2,y/3,-2];
661    %[1]*x;
662    [a,%th(2),%];
663    
664 && logcontract  
665    
666    2*(a*log(x) + 2*a*log(y));
667    logcontract(%);
668    logcontract(log(sqrt(x+1)+sqrt(x)) + log(sqrt(x+1)-sqrt(x)));
670 && map  
671    
672    map(f,x+a*y+b*z);
673    map(lambda([u],partfrac(u,x)),x+1/(x^3+4*x^2+5*x+2));
674    map(ratsimp, x/(x^2+x)+(y^2+y)/y);
675    map("=",[a,b],[-0.5,3]);
677 && matchdeclare  
678    
679    matchdeclare(a,true)$
680    tellsimp(sin(a)^2,1-cos(a)^2)$
681    sin(y)^2;
682    kill(rules);
683    nonzeroandfreeof(x,e):=is(e#0 and freeof(x,e));
684    matchdeclare(a,nonzeroandfreeof(x),b,freeof(x));
685    defmatch(linear,a*x+b,x);
686    linear(3*z+(y+1)*z+y**2,z);
687    matchdeclare([a,f],true);
688    constinterval(l,h):=constantp(h-l)$
689    matchdeclare(b,constinterval(a))$
690    matchdeclare(x,atom)$
691    block(remove(integrate,outative),
692          defmatch(checklimits,'integrate(f,x,a,b)),
693          declare(integrate,outative))$
694    'integrate(sin(t),t,x+%pi,x+2*%pi)$
695    checklimits(%);
696    'integrate(sin(t),t,0,x)$
697    checklimits(%);
698    
699 && matrices  
701    m:matrix([a,0],[b,1]);
702    m^2;
703    m.m;
704    m[1,1]*m;
705    %-%th(2)+1;
706    m^^-1;
707    [x,y].m;
708    matrix([a,b,c],[d,e,f],[g,h,i]);
709    %^^2;
710    
711 && minfactorial  
713    n!/(n+1)!;
714    minfactorial(%);
715    
716 && multiplicative 
718    declare(f,multiplicative);
719    f(2*a*b);
720    
721 && multthru  
723    x/(x-y)^2-1/(x-y)-f(x)/(x-y)^3;
724    multthru((x-y)^3,%);
725    ratexpand(%);
726    ((a+b)^10*s^2+2*a*b*s+(a*b)^2)/(a*b*s^2);
727    multthru(%);
728    multthru(a.(b+c.(d+e)+f));
729    
730 && nary 
732    declare(j,nary);
733    j(j(a,b),j(c,d));
734    
735 && nounify  
736    'limit(f(x)^g(x+1),x,0,minus);
737    is(inpart(%,0)=nounify(limit));
738    
739 && nroots  
741    x^10-2*x^4+1/2;
742    nroots(%,-6,9.1);
743    
744 && numfactor  
746    gamma(7/2);
747    numfactor(%);
748    
749 && nusum  
751    nusum(n*n!,n,0,n);
752    nusum(n^4*4^n/binomial(2*n,n),n,0,n);
753    unsum(%,n);
754    unsum(prod(i^2,i,1,n),n);
755    nusum(%,n,1,n);
756    
757 && oddfun 
759    declare(f,oddfun);
760    f(-x);
761    
762 && ode2  
764    x^2*'diff(y,x) + 3*x*y = sin(x)/x;
765    soln1:ode2(%,y,x);
766    ic1(soln1,x=%pi,y=0);
767    'diff(y,x,2) + y*'diff(y,x)^3 = 0;
768    soln2:ode2(%,y,x);
769    ratsimp(ic2(soln2,x=0,y=0,'diff(y,x)=2));
770    bc2(soln2,x=0,y=1,x=1,y=3);
771    
772 && optimize  
774    diff(exp(x^2+y)/(x+y),x,2);
775    optimize(%);
776    
777 && ordergreat  
778    
779    a^2+b*x;
780    ordergreat(a);
781    a^2+b*x;
782    %-%th(3);
783    unorder();
784    
785 && orderless  
787    y^2+b*x;
788    orderless(y);
789    y^2+b*x;
790    %-%th(3);
791    unorder();
792    
793 && outative 
795    declare(f,outative);
796    f(2*a);
797    
798 && part  
800    x+y/z^2;
801    part(%,1,2,2);
802    remvalue(x);
803    'integrate(f(x),x,a,b)+x;
804    part(%,1,1);
805    x^2+2*x=y^2;
806    %+1;
807    lhs(%);
808    part(%th(2),2);
809    part(%,1);
810    27*y^3+54*x*y^2+36*x^2*y+y+8*x^3+x+1;
811    part(%,2,[1,3]);
812    sqrt(piece/54);
813    
814 && partfrac  
816    2/(x+2)-2/(x+1)+1/(x+1)^2;
817    ratsimp(%);
818    partfrac(%,x);
819    
820 && partition  
822    partition(2*a*x*f(x),x);
823    partition(a+b,x);
824    
825 && pickapart  
827    integrate(1/(x^3+2),x)$
828    pickapart(%,1);
829    
830 && poissimp  
832    pfeformat:true$
833    poissimp(sin(x)^2);
834    (2*a^2-b)*cos(x+2*y)-(a*b+5)*sin(u-4*x);
835    poisexpt(%,2)$
836    printpois(%);
837    poisint(%th(2),y)$
838    poissimp(%);
839    poissimp(sin(x)^5+cos(x)^5);
840    pfeformat:false$
841    
842 && polarform  
844    rectform(sin(2*%i+x));
845    polarform(%);
846    rectform(log(3+4*%i));
847    polarform(%);
848    rectform((2+3.5*%i)^0.25),numer;
849    polarform(%);
850    
851 && poly_discriminant  
853    factor(poly_discriminant((x-a)*(x-b)*(x-c),x));
854    
855 && posfun 
857    declare(f,posfun);
858    is(f(x)>0);
859    
860 && powerseries  
862    powerseries(log(sin(x)/x),x,0);
863    
864 && printprops 
866    gradef(r,x,x/r)$
867    gradef(r,y,y/r)$
868    printprops(r,atomgrad);
869    propvars(atomgrad);
870    
871 && product  
873    product(x+i*(i+1)/2,i,1,4);
875 && properties 
877    properties(cons);
878    assume(var1>0);
879    properties(var1);
880    var2:2$
881    properties(var2);
882    
883 && propvars 
885    gradef(r,x,x/r)$
886    gradef(r,y,y/r)$
887    printprops(r,atomgrad);
888    propvars(atomgrad);
889    
890 && qunit  
892    qunit(17);
893    expand(%*(sqrt(17)-4));
894    
895 && radcan  
897    (log(x^2+x)-log(x))^a/log(x+1)^(a/2);
898    radcan(%);
899    log(a^(2*x)+2*a^x+1)/log(a^x+1);
900    radcan(%);
901    (%e^x-1)/(%e^(x/2)+1);
902    radcan(%);
903    
904 && rank  
906    matrix([2,1-a,-5*b],[a,b,c]);
907    rank(%);
908    
909 && rassociative 
911    declare(g,rassociative);
912    g(g(a,b),g(c,d));
913    g(g(a,b),g(c,d))-g(a,g(b,g(c,d)));
914    
915 && rat  
917    rat(x^2);
918    diff(f(%),x);
919    ((x-2*y)^4/(x^2-4*y^2)^2+1)*(y+a)*(2*y+x)/(4*y^2+x^2);
920    rat(%,y,a,x);
921    (x+3)^20;
922    rat(%);
923    diff(%,x);
924    factor(%);
925    
926 && ratcoeff  
928    a*x+b*x+5$
929    ratcoef(%,a+b);
930    
931 && ratdiff  
933    (4*x^3+10*x-11)/(x^5+5);
934    polymod(%),modulus:3;
935    ratdiff(%th(2),x);
936    
937 && ratexpand  
939    ratexpand((2*x-3*y)^3);
940    (x-1)/(x+1)^2+1/(x-1);
941    expand(%);
942    ratexpand(%th(2));
943    
944 && ratsimp  
946    sin(x/(x^2+x))=%e^((log(x)+1)^2-log(x)^2);
947    ratsimp(%);
948    b*(a/b-x)+b*x+a;
949    ratsimp(%);
950    ((x-1)^(3/2)-(x+1)*sqrt(x-1))/sqrt(x-1)/sqrt(x+1);
951    ratsimp(%);
952    x^(a+1/a),ratsimpexpons;
953    
954 && ratsubst  
956    ratsubst(a,x*y^2,x^4*y^8+x^4*y^3);
957    1 + cos(x) + cos(x)^2 + cos(x)^3 + cos(x)^4;
958    ratsubst(1-sin(x)^2,cos(x)^2,%);
959    ratsubst(1-cos(x)^2,sin(x)^2,sin(x)^4);
960    
961 && ratweight  
963    ratweight(a,1,b,1);
964    rat(a+b+1);
965    %^2;
966    ev(%th(2)^2,ratwtlvl:1);
967    
968 && realpart  
970    (%i*v+u)/(f+%i*e)+%e^(%i*alpha);
971    realpart(%);
972    
973 && realroots  
975    realroots(x^5-x-1,5.0e-6);
976    %[1],float;
977    x^5-x-1,%;
978    
979 && residue  
981    residue(s/(s^2+a^2),s,a*%i);
982    residue(sin(a*x)/x^4,x,0);
983    
984 && resultant  
986    resultant(a*y+x^2+1,y^2+x*y+b,x);
987    
988 && reveal  
990    integrate(1/(x^3+2),x)$
991    reveal(%,2);
992    reveal(%th(2),3);
993    
994 && reverse  
995    
996    union({a,b,1,1/2,x^2},{-x^2,a,y,1/2});
997    bernpoly(x,5);
998    maplist(numfactor,%);
999    apply(min,%);
1000    
1001 && risch
1002   
1003    risch(x^2*erf(x),x);
1004    diff(%,x),ratsimp;
1005    
1006 && rootscontract 
1008    rootsconmode:false$
1009    rootscontract(x^(1/2)*y^(3/2));
1010    rootscontract(x^(1/2)*y^(1/4));
1011    rootsconmode:true$
1012    rootscontract(x^(1/2)*y^(1/4));
1013    rootscontract(x^(1/2)*y^(1/3));
1014    rootsconmode:all$
1015    rootscontract(x^(1/2)*y^(1/4));
1016    rootscontract(x^(1/2)*y^(1/3));
1017    rootsconmode:false$
1018    rootscontract(sqrt(sqrt(x+1)+sqrt(x))*sqrt(sqrt(x+1)-sqrt(x))); 
1019    rootsconmode:true$
1020    rootscontract(sqrt(sqrt(5)+5)-5^(1/4)*sqrt(sqrt(5)+1));
1021    
1022 && scanmap  
1024    (a^2+2*a+1)*y+x^2;
1025    scanmap(factor,%);
1026    scanmap(factor,expand(%th(2)));
1027    u*v^(a*x+b)+c;
1028    scanmap('f,%);
1029    
1030 && scsimp  
1032    exp:k^2*n^2+k^2*m^2*n^2-k^2*l^2*n^2-k^2*l^2*m^2*n^2;
1033    eq1:k^2+l^2=1;
1034    eq2:n^2-m^2=1;
1035    scsimp(exp,eq1,eq2);
1036    exq:(k1*k4-k1*k2-k2*k3)/k3^2;
1037    eq3:k1*k4-k2*k3=0;
1038    eq4:k1*k2+k3*k4=0;
1039    scsimp(exq,eq3,eq4);
1040    
1041 && solve  
1043    solve(asin(cos(3*x))*(f(x)-1),x);
1044    solve(5^f(x)=125,f(x)),solveradcan;
1045    [4*x^2-y^2=12,x*y-x=2];
1046    solve(%,[x,y]);
1047    solve(x^3+a*x+1,x);
1048    solve(x^3-1);
1049    solve(x^6-1);
1050    ev(x^6-1,%[1]);
1051    expand(%);
1052    x^2-1;
1053    solve(%,x);
1054    %th(2),%[1];
1055    
1056 && specint  
1058    assume(p>0,a>0)$
1059    /* a laplace transform */
1060    t^(1/2)*%e^(-a*t/4)*%e^(-p*t);
1061    specint(%,t);
1062    /* a bessel function */
1063    t^(1/2)*%j[1](2*a^(1/2)*t^(1/2))*%e^(-p*t);
1064    specint(%,t);
1065    forget(p>0,a>0)$
1066    
1067 && sqfr  
1069    sqfr(4*x^4+4*x^3-3*x^2-4*x-1);
1070    
1071 && substinpart  
1073    x.'diff(f(x),x,2);
1074    substinpart(d^2,%,2);
1075    substinpart(f1,f[1](x+1),0);
1076    
1077 && substitute  
1079    subst(a,x+y,x+(x+y)^2+y);
1080    subst(-%i,%i,a+b*%i);
1081    subst(x,y,x+y);
1082    subst(x=0,diff(sin(x),x));
1083    errcatch(ev(diff(sin(x),x),x=0));
1084    integrate(x^i,x),i=-1;
1085    errcatch(subst(-1,i,integrate(x^i,x)));
1086    matrix([a,b],[c,d]);
1087    subst("[",matrix,%);
1089 && substpart  
1091    1/(x^2+2);
1092    substpart(3/2,%,2,1,2);
1093    27*y^3+54*x*y^2+36*x^2*y+y+8*x^3+x+1;
1094    substpart(factor(piece),%,[1,2,3,5]);
1095    1/x+y/x-1/z;
1096    substpart(xthru(piece),%,[2,3]);
1097    substpart("+",%,1,0);
1098    ratsimp((k^2*x^2-1)*(cos(x)+eps)/(3*k+n[1])/(5*k-n[2]));
1099    factor(%);
1100    substpart(ratsimp(piece),%,1,[1,2]);
1101    -substpart(-piece,%,1,1);
1102    a+b/(x*(y+(a+b)*x)+1);
1103    substpart(multthru(piece),%,1,2,1);
1105 && sum
1107    sum(i^2+2^i,i,0,n),simpsum;
1108    sum(3^(-i),i,1,inf),simpsum;
1109    sum(i^2,i,1,4)*sum(1/i^2,i,1,inf),simpsum;
1110    sum(i^2,i,1,5);
1112 && symmetric 
1114    declare(h,symmetric);
1115    h(x,z,y);
1117 && syntax  
1119    matchfix("@{","@}");
1120    infix("|");
1121    @{x|x>0@};
1122    @{x|x<2@};
1123    infix(".u.")$
1124    infix(".i.")$
1125    %th(4).u.%th(3);
1126    %th(5).u.%th(4);
1127    @{1,2,3@}$
1128    @{3,4,5@}$
1129    %th(2).u.%th(2).u.%;
1130    infix(".u.",100,100)$
1131    infix(".i.",120,120)$
1132    %th(5).u.%th(5).u.%;
1133    remove(".u.",operator)$
1134    errcatch(%th(7).u.%th(3));
1135    remove(["@{","@}",".i.",".u."],operator)$
1137 && taylor
1139    taylor(sqrt(1+a*x+sin(x)),x,0,3);
1140    %^2;
1141    taylor(sqrt(1+x),x,0,5);
1142    %^2;
1143    product((x^i+1)^2.5,i,1,inf)/(x^2+1);
1144    taylor(%,x,0,3),keepfloat;
1145    taylor(1/log(1+x),x,0,3);
1146    taylor(cos(x)-sec(x),x,0,5);
1147    taylor((cos(x)-sec(x))^3,x,0,5);
1148    taylor((cos(x)-sec(x))^-3,x,0,5);
1149    taylor(sqrt(1-k^2*sin(x)^2),x,0,6);
1150    taylor((1+x)^n,x,0,4);
1151    taylor(sin(x+y),x,0,3,y,0,3);
1152    taylor(sin(x+y),[x,y],0,3);
1153    taylor(1/sin(x+y),x,0,3,y,0,3);
1154    taylor(1/sin(x+y),[x,y],0,3);
1156 && taytorat  
1158    taylor(1+x,[x,0,3]);
1159    1/%;
1160    taylor(1+x+y+z,[x,0,3],[y,1,2],[z,2,1]);
1161    1/%;
1162    taylor(1+x+y+z,[x,0,3],[y,0,3],[z,0,3]);
1163    1/%;
1165 && tellrat  
1167    10*(1+%i)/(3^(1/3)+%i);
1168    ratdisrep(rat(%)),algebraic;
1169    tellrat(a^2+a+1);
1170    a/(sqrt(2)+sqrt(3))+1/(a*sqrt(2)-1);
1171    ratdisrep(rat(%)),algebraic;
1172    tellrat(y^2=x^2);
1174 && tellsimp  
1176    matchdeclare(x,freeof(%i))$
1177    %iargs:false$
1178    tellsimp(sin(%i*x),%i*sinh(x));
1179    trigexpand(sin(x+%i*y));
1180    %iargs:true$
1181    errcatch(0^0);
1182    tellsimp(0^0,1),simp:false;
1183    0^0;
1184    remrule("^",%th(2)[1]);
1185    tellsimp(sin(x)^2,1-cos(x)^2)$
1186    (sin(x)+1)^2;
1187    expand(%);
1188    sin(x)^2;
1189    kill(rules);
1190    matchdeclare(a,true)$
1191    tellsimp(sin(a)^2,1-cos(a)^2)$
1192    sin(y)^2;
1193    kill(rules);
1195 && triangularize  
1197    matrix([2,1-a,-5*b],[a,b,c]);
1198    triangularize(%);
1200 && trig  
1202    sin(%pi/12)+tan(%pi/6);
1203    ev(%,numer);
1204    sin(1);
1205    sin(1),numer;
1206    beta(1/2,2/5);
1207    ev(%,numer);
1208    diff(atanh(sqrt(x)),x);
1209    fpprec:25$
1210    sin(0.5b0);
1211    cos(x)^2-sin(x)^2;
1212    ev(%,x:%pi/3);
1213    diff(%th(2),x);
1214    integrate(%th(3),x);
1215    expand(%);
1216    trigexpand(%);
1217    trigreduce(%);
1218    sech(x)^2*sinh(x)*tanh(x)/coth(x)^2 + cosh(x)^2*sech(x)^2*tanh(x)/coth(x)^2
1219         + sech(x)^2*tanh(x)/coth(x)^2;
1220    trigsimp(%);
1221    ev(sin(x),exponentialize);
1222    taylor(sin(x)/x,x,0,4);
1223    ev(cos(x)^2-sin(x)^2,sin(x)^2=1-cos(x)^2);
1225 && trigexpand  
1227    x+sin(3*x)/sin(x),trigexpand,expand;
1228    trigexpand(sin(10*x+y));
1230 && trigreduce  
1231    
1232    -sin(x)^2+3*cos(x)^2+x;
1233    expand(trigreduce(%));
1234    declare(j,integer,e,even,o,odd);
1235    sin(x+(e+1/2)*%pi);
1236    sin(x+(o+1/2)*%pi);
1238 && unorder  
1240    a^2+b*x;
1241    ordergreat(a);
1242    a^2+b*x;
1243    %-%th(3);
1244    unorder();
1246 && xthru  
1248    ((x+2)^20-2*y)/(x+y)^20+(x+y)^-19-x/(x+y)^20;
1249    xthru(%);
1251 && zeroequiv  
1252    
1253    zeroequiv(sin(2*x)-2*sin(x)*cos(x),x);
1254    zeroequiv(%e^x+x,x);
1255    zeroequiv(log(a*b)-log(a)-log(b),a);