Maple help (min/max value problem)

  • Thread starter Thread starter Firben
  • Start date Start date
  • Tags Tags
    Maple Value
Click For Summary
To find maximum and minimum values in Maple, define the function using f:=x→ln(x)/x. Plot the function over a specified range with plot(f(x), x=1..10). Differentiate the function using df:=diff(f(x),x) and find critical points by solving df=0. Evaluate the function at these critical points to determine maximum or minimum values. This approach can also be applied to analyze asymptotes and inflection points.
Firben
Messages
141
Reaction score
0
Hello

How can i find maximum and minimum values with help of Maple ? and asymptotes or inflextion points ? I am new to Maple.

Ex lnx/x (x>0)

How ?
 
Physics news on Phys.org
There are a few ways of finding the maximum and minimum values of a function in Maple. This is one of the ways I know how to do it.

defining the function

>f:=x→ln(x)/x;

Plotting the function

>plot(f(x), x=1..10);

differentiating the function

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

finding the maximum or minimum relates to where df = 0

>xmax := evalf(solve(df=0,x));

Determine the maximum

>evalf(f(xmax));

Hope this helps you. Thanks
 

Similar threads

Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K