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!