Mathematics with Maple

S.Duzhin

ANSWERS TO EXERCISES OF LESSON 5

EXERCISE 1.

> int ((x-1)^3,x);

[Maple Math]

> diff(%,x);

[Maple Math]

> int(e^x/(e^x+1),x);

[Maple Math]

> diff(%,x);

[Maple Math]

> int(x*ln(x),x);

[Maple Math]

> diff(%,x);

[Maple Math]

> int(tan(x),x);

[Maple Math]

> diff(%,x);

[Maple Math]

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

[Maple Math]

> diff(%,x);

[Maple Math]

> int(x/(x^2+1)^(1/2),x);

[Maple Math]

> diff(%,x);

[Maple Math]

> f:=x^(-4)/(x^6-1)^(1/2);

[Maple Math]

> int(f,x);

[Maple Math]

> diff(%,x);

[Maple Math]

> simplify(%-f);

[Maple Math]

> int((6*x^3-19*x^2+23*x-28)/(x^4-4*x^3+3*x^2-16*x+16),x);

[Maple Math]
[Maple Math]

> int( (1+x^2)^(-2/3),x);

[Maple Math]

> int((1+x^2+x^4)^(3/2),x);

[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]
[Maple Math]

> int(sin(x)/x,x);

[Maple Math]

EXERCISE 2

> int (y/(x-y)^2,x);

[Maple Math]

> int (-x/(x-y)^2,y);

[Maple Math]

> simplify(int (y/(x-y)^2,x)-int (-x/(x-y)^2,y));

[Maple Math]

> simplify(diff (-y/(x-y),y));

EXERCISE 3

x^3+y^3/3+z^3/3-xyz

EXERCISE 4

> plot({8*x-x^2,2*x},x=-1..7);

> solve(8*x-x^2=2*x);

[Maple Math]

> int(8*x-x^2-2*x, x=0..6);

EXERCISE 5

> plot({sin(x)^2},x=-1..4);

> int (sin(x)^2, x=0..Pi);

[Maple Math]

EXERCISE 6

> plot(4/x^2,x=0.9..4);

> int (4/x^2,x=1..3);

[Maple Math]

EXERCISE 7

> plot({x^2/2, 4*sqrt(x)},x=0..5);

> solve(x^2/2=4*sqrt(x));

[Maple Math]

> int(4*sqrt(x)-x^2/2, x=0..4);

[Maple Math]

EXERCISE 8

> 2*int(sqrt(1-x^2), x=-1..1);

[Maple Math]

EXERCISE 9

Here, Maple is useful to vizualise the geometrical figures.

You see that every horizontal section by a plane z=t

is a square bounded by the lines |x|=sqrt(1-t^2) and |y|=sqrt(1-t^2). Its sides are 2*sqrt(1-t^2) and hence the area is 4*(1-t^2). Now you have to integrate this function from t=-1 to t=1. (You can do it with or without Maple, of course).

Answer: 16/3.