transfns.red 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module transfns;
  2. algebraic;
  3. algebraic procedure trigexpand wws;
  4. wws where { sin(~x+~y) => sin(x)*cos(y)+cos(x)*sin(y),
  5. cos(~x+~y) => cos(x)*cos(y)-sin(x)*sin(y),
  6. sin((~n)*~x) => sin(x)*cos((n-1)*x)+cos(x)*sin((n-1)*x)
  7. when fixp n and n>1,
  8. cos((~n)*~x) => cos(x)*cos((n-1)*x)-sin(x)*sin((n-1)*x)
  9. when fixp n and n>1 };
  10. algebraic procedure hypexpand wws;
  11. wws where {sinh(~x+~y) => sinh(x)*cosh(y)+cosh(x)*sinh(y),
  12. cosh(~x+~y) => cosh(x)*cosh(y)+sinh(x)*sinh(y),
  13. sinh((~n)*~x) => sinh(x)*cosh((n-1)*x)+cosh(x)*sinh((n-1)*x)
  14. when fixp n and n>1,
  15. cosh((~n)*~x) => cosh(x)*cosh((n-1)*x)+sinh(x)*sinh((n-1)*x)
  16. when fixp n and n>1 };
  17. operator !#ei!&; !#ei!&(0):=1;
  18. trig!#ei!& := {!#ei!&(~x)**(~n) => !#ei!&(n*x),
  19. !#ei!&(~x)*!#ei!&(~y) => !#ei!&(x+y)};
  20. let trig!#ei!&;
  21. algebraic procedure trigreduce wws;
  22. <<wws:=(wws where {cos(~x) => (!#ei!&(x)+!#ei!&(-x))/2,
  23. sin(~x) => -i*(!#ei!&(x)-!#ei!&(-x))/2});
  24. wws:=(wws where {!#ei!&(~x) => cos x +i*sin x})>>;
  25. algebraic procedure hypreduce wws;
  26. <<wws:=(wws where {cosh(~x) => (!#ei!&(x)+!#ei!&(-x))/2,
  27. sinh(~x) => (!#ei!&(x)-!#ei!&(-x))/2});
  28. wws:=(wws where {!#ei!&(~x) => cosh(x)+sinh(x)})>>;
  29. endmodule;
  30. end;