Artifact f430f733849095df7ff3e147e68750902013d2d84bb881ac9bcc877fe00f1134:
- File src/example05.red — part of check-in [5ce5316a33] at 2021-03-01 07:23:02 on branch trunk — Scripts by Dieter (Olli) Egger (November 30th 2019) (user: jeff@gridfinity.com, size: 273) [annotate] [blame] [check-ins using] [more...]
(a+b)^2; (a+b)^3; (a+b)^4; (a+b)^5; (a+b)^6; c:=(a+b)^6; d:=(a+b)^3; c/d; a:=sin (x); b:=cos (x); c:=a^2+b^2; d:=a/b; f:=tan (x)-d; % Trigo Rules; trig1:={sin(~x)^2=>(1-cos(x)^2)}; let trig1; trig2:={tan (~x)=>(sin (x)/cos (x))}; let trig2; % now with rules; c; d; f; end;