12345678910111213141516171819202122232425262728293031323334353637383940 |
- % test file for residue package
- residue(x/(x^2-2),x,sqrt(2));
- poleorder(x/(x^2-2),x,sqrt(2));
- residue(sin(x)/(x^2-2),x,sqrt(2));
- poleorder(sin(x)/(x^2-2),x,sqrt(2));
- residue(1/(x-1)^m/(x-2)^2,x,2);
- poleorder(1/(x-1)/(x-2)^2,x,2);
- residue(sin(x)/x^2,x,0);
- poleorder(sin(x)/x^2,x,0);
- residue((1+x^2)/(1-x^2),x,1);
- poleorder((1+x^2)/(1-x^2),x,1);
- residue((1+x^2)/(1-x^2),x,-1);
- poleorder((1+x^2)/(1-x^2),x,-1);
- residue(tan(x),x,pi/2);
- poleorder(tan(x),x,pi/2);
- residue((x^n-y^n)/(x-y),x,y);
- poleorder((x^n-y^n)/(x-y),x,y);
- residue((x^n-y^n)/(x-y)^2,x,y);
- poleorder((x^n-y^n)/(x-y)^2,x,y);
- residue(tan(x)/sec(x-pi/2)+1/cos(x),x,pi/2);
- poleorder(tan(x)/sec(x-pi/2)+1/cos(x),x,pi/2);
- for k:=1:2 sum residue((a+b*x+c*x^2)/(d+e*x+f*x^2),x,
- part(part(solve(d+e*x+f*x^2,x),k),2));
- residue(sin(x)/x^6,x,0);
- residue((1-cos(x))/x^5,x,0);
- residue(exp(1/x),x,0);
- % not implemented
- residue((A*x+B*x^2+c)/(D*x+E),x,-E/D);
- residue(tan(x),x,pi/2);
- residue(sec(x),x,pi/2);
- residue(factorial(x),x,0);
- % ***** not yet implemented
- residue(x^3/sin(1/x)^2,x,infinity);
- poleorder(x^3/sin(1/x)^2,x,infinity);
- residue(x^3*sin(1/x)^2,x,infinity);
- poleorder(x^3*sin(1/x)^2,x,infinity);
- end;
|