Section 1. Execution Groups: Input/Output
2.* Simplify the square root of 19,220 by entering and executing
sqrt(19220);
Then obtain the complete integer factorization of 19220 by entering and executing
ifactor(19220);
Read ifactor as "integer factors of".
> | sqrt(19220); |
> | ifactor(19220); |
3.* Obtain an integral of the expression
.
Enter it into the int procedure as follows
int( exp(3*x)*cos(2*x)*sin(4*x), x);
> | int( exp(3*x)*cos(2*x)*sin(4*x), x); |