08-01-29.mw

> 2+2;
 

4 (1)
 

> plot(sin(x),x=-2..Pi);
 

Plot_2d
 

>
 

> int(sin(2*x)*cos(x),x);
 

`+`(`-`(`*`(`/`(1, 6), `*`(cos(`+`(`*`(3, `*`(x))))))), `-`(`*`(`/`(1, 2), `*`(cos(x))))) (2)
 

>
 

> diff(exp(cos(3*x)),x);
 

`+`(`-`(`*`(3, `*`(sin(`+`(`*`(3, `*`(x)))), `*`(exp(cos(`+`(`*`(3, `*`(x)))))))))) (3)
 

> factor( x^3-1);
 

`*`(`+`(x, `-`(1)), `*`(`+`(`*`(`^`(x, 2)), x, 1))) (4)
 

> ifactor(1234567890);
 

`*`(``(2), `*`(`^`(``(3), 2), `*`(``(5), `*`(``(3803), `*`(``(3607)))))) (5)
 

>
 

>
 

> sqrt(9);
 

3 (6)
 

> sqrt(10);
 

`*`(`^`(10, `/`(1, 2))) (7)
 

> evalf(%);
 

3.162277660 (8)
 

> evalf(Pi,200);
 

3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067982148086513282306647093844609550582231725359408128481117450284102701938521105559644622948954930382...
3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067982148086513282306647093844609550582231725359408128481117450284102701938521105559644622948954930382...
3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067982148086513282306647093844609550582231725359408128481117450284102701938521105559644622948954930382...
(9)
 

> Digits:=27;
 

27 (10)
 

> evalf(Pi);
 

3.14159265358979323846264338 (11)
 

> 2^31;
 

2147483648 (12)
 

> 2/3;
 

`/`(2, 3) (13)
 

> 2.0/3;
 

.666666666666666666666666667 (14)
 

> int(cos(exp(x)),x);
 

Ci(exp(x)) (15)
 

> int(cos(exp(x)),x=0..5);
 

`+`(`-`(Ci(1)), Ci(exp(5))) (16)
 

> evalf(%);
 

-.342004179160678843954321562 (17)
 

> int(cos(e^x),x);
 

`/`(`*`(Ci(`^`(e, x))), `*`(ln(e))) (18)
 

> e:= exp(1);
 

exp(1) (19)
 

> int(cos(e^x),x);
 

Ci(`^`(exp(1), x)) (20)
 

> joe = 7;
 

joe = 7 (21)
 

> joe:=int(exp(cos(x)),x);
 

int(exp(cos(x)), x) (22)
 

 

> diff(joe,x);
 

exp(cos(x)) (23)
 

> plot( x^2 + y^3, x=-1..1, y=-1..1);
 

 

Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
Plot_2d
 

> ?plot
 

> plot3d( x^2 + y^3, x=-1..1, y=-1..1, axes=boxed, scaling=constrained);
 

Plot
 

> plot(sin(1/x),x=0..Pi);
 

Plot_2d
 

> plot(sin(1/x),x=0..0.01);
 

Plot_2d
 

>