Spreadsheet in Maple
2-6 Use the spreadsheet in Maple to experiment with the 3x+1 problem
> f:=x-> if x mod 2=0 then x/2 else 3*x+1 fi;
> f(3);
> f(24);
>
2-7 How is the number pattern related to the successive derivatives of tan(x) formed?
> diff(tan(x),x);
2-8 How is the number pattern related to the successive derivatives of cot(x) formed?
> diff(cot(x),x);
>
2-9 Express tan(nx) as a rational function of tan(x) for n = 0,1, 2,3,4,5,6
>
|
||
|
||
|
||
|
||
|
2-10 Study the number pattern associated with the indefinite integral of the function
> int(x^n*exp(x),x);
>
>