I am asked to verify if this function is decreasing or increasing:
f(x)=sqrt(2+5x)
I am using Maple 15 right now in my class and writing the following commands can’t solve the problem.
f := x-> sqrt(2+5*x):
solve(diff(f(x), x) > 0, x);
After Run; it is shown to me that :
Warning, solutions may have been lost
In fact, I expect to have some intervals, but it isn’t done properly. What can I do? Thanks for any help!
The domain of
sqrt(2+5*x)is all pointsxsuch that2+5*xis not less than zero.For this example, you can ask Maple whether it can tell that the derivative of
sqrt(2+5*x)is greater than zero for allxin the domain. If the answer istruethen it is increasing everywhere in its domain.