MapleImpInt.mws

Improper Integrals

examples

>    with(plots):

Warning, the name changecoords has been redefined

Section 8.8#16

>    Int(5/x^3,x=1..infinity);

Int(5/x^3,x = 1 .. infinity)

>    value(%);

5/2

>    plot(5/x^3,x=1..5,filled=true);

[Maple Plot]

>    plot(5/x^3,x=1..100,filled=true);

[Maple Plot]

Section 8.8#20

>    Int(x*exp(-x/2),x=0..infinity);

Int(x*exp(-1/2*x),x = 0 .. infinity)

>    value(%);

4

>    plot(x*exp(-x/2),x=0..10,filled=true);

[Maple Plot]

>    plot(x*exp(-x/2),x=0..100,filled=true);

[Maple Plot]

Section 8.8#26

>    Int(ln(x)/x,x=1..infinity);

Int(ln(x)/x,x = 1 .. infinity)

>    value(%);

infinity

>    plot(ln(x)/x,x=1..100,filled=true);

[Maple Plot]

Section 8.8#30

>    Int(exp(x)/(1+exp(x)),x=0..infinity);

Int(exp(x)/(1+exp(x)),x = 0 .. infinity)

>    value(%);

infinity

>    plot(exp(x)/(1+exp(x)),x=0..20,filled=true);

[Maple Plot]

Section 8.8#34

>    Int(8/x,x=0..4);

Int(8/x,x = 0 .. 4)

>    value(%);

infinity

>    plot(8/x,x=0..4,y=0..100,filled=true);

[Maple Plot]

Section 8.8#36

>    Int(4/sqrt(6-x),x=0..6);

Int(4/(6-x)^(1/2),x = 0 .. 6)

>    value(%);

8*2^(1/2)*3^(1/2)

>    plot(4/sqrt(6-x),x=0..6,y=0..30,filled=true);

[Maple Plot]

Section 8.8#38

>    Int(ln(x^2),x=0..exp(1));

Int(ln(x^2),x = 0 .. exp(1))

>    value(%);

0

>    plot(ln(x^2),x=0..exp(1),filled=true);

[Maple Plot]

Section 8.8#48

>    Int(1/(x*ln(x)),x=1..infinity);

Int(1/(x*ln(x)),x = 1 .. infinity)

>    value(%);

infinity

>    plot(1/(x*ln(x)),x=1..6,y=0..20,filled=true);

[Maple Plot]

>    Int(1/(x^2+1),x=-infinity..infinity);

Int(1/(x^2+1),x = -infinity .. infinity)

>    value(%);

Pi

>    plot(1/(x^2+1),x=-10..10,filled=true);

[Maple Plot]

>