Details for 178_IsDecr.mw

Download file: 178_IsDecr.mw (View Live Worksheet on MapleNet)
Uploaded by Doug Meade(Maple Rating 4 721) (View other files uploaded by Doug Meade)

The HTML version of this file is shown below. To use the contents of this file in a posting, click here to get the source code


> restart;

> IsDecr := proc( F, a, b )

> local b2, R;

> R:=is( diff(F,x), negative ) assuming x>a, x

> if R=FAIL then
b2 := `if`(b=infinity,a+100,b);
R:=convert( map( is, [seq(eval(F,x=k), k=a..b2)], negative ), `and` );

> end if;

> return R

> end proc:

> f := arctan(x)/(1+x^2);

Maple Equation

> debug( IsDecr );

Maple Equation

> IsDecr( f, 1, infinity );

--> enter IsDecr, args = `/`(`*`(arctan(x)), `*`(`+`(1, `*`(`^`(x, 2))))), 1, infinity

Maple Equation

<-- exit IsDecr (now at top level) = false

Maple Equation

> df := simplify( diff( f, x ) );

Maple Equation

> solve( df=0, x );

Maple Equation

> allvalues( % );

Maple Equation

> plot( [f,df], x=0..5 );

Maple Plot

> ?Student[Calculus1]

> Student[Calculus1]:-CriticalPoints(f);

Maple Equation

> Student[Calculus1]:-CriticalPoints(f, x);

Maple Equation

> Student[Calculus1]:-CriticalPoints(f, x=0..1, numeric);

Maple Equation

> eval( df, x=0.765378 );

Maple Equation

> eval( df, x=0.653271 );

Maple Equation

> fsolve( df=0, x=0..10 );

Maple Equation

>

Maple Equation

This post was generated using the MaplePrimes File Manager

View 178_IsDecr.mw on MapleNet or Download 178_IsDecr.mw
View file details


HTML Source Code

Copy this code into any posting to insert this file into a posting on MaplePrimes

IMPORTANT INFORMATION

When pasting this code into a post on MaplePrimes, make sure that you choose the Worksheet HTML input format

Download Link Code

Copy this code into any posting to share this file with other users

}