To find max and min, we need the first derivative.
f(x) = xsqrt(x2+4) = x(x2+4)1/2
f ' (x) = x*1/2(x2+4)-1/2 * 2x + (x2+4)1/2 * 1 = x2/sqrt(x2+4) + sqrt(x^2+4)
= x2/sqrt(x2+4) + (x2+4)/sqrt(x2+4) = (2x2+4)/sqrt(x2+4)
Then we set f ' (x) = 0 (or where f ' (x) is undefined and f(x) is defined) and solve for x to find the critical points:
(2x2+4)/sqrt(x2+4) = 0
This will never = 0 (or be undefined) so there are no critical points. Then all we have to do is plug our interval endpoints into the original function and see where the max and min are.
f(-6) = (-6)sqrt((-6)2+4) = (-6)sqrt(36+4) = -6sqrt40 = -12sqrt10 = MINIMUM
f(7) = (7)sqrt((7)2+4) = (7)sqrt(49+4) = 7sqrt53 = MAXIMUM
Now for concavity and inflection points, we need to find f '' (x).
f ' (x) = (2x2+4)/sqrt(x2+4)
f '' (x) = [sqrt(x2+4)*(4x)-(2x2+4)*1/2(x2+4)-1/2(2x)]/(x2+4) = [(x2+4)(4x)-(2x2+4)x]/(x2+4)3/2
= (4x3+16x-2x3-4x)/(x2+4)3/2 = (2x3+12x)/(x2+4)3/2
Now set f '' (x) = 0 (or if f '' (x) is undefined where f(x) is defined) to find the inflection points:
(2x3+12x)/(x2+4)3/2 = 0
The only way this can equal 0 is if the numerator = 0. f '' (x) can't be undefined as the denominator can't = 0.
2x3+12x=0
2x(x2+6)=0
2x=0
x = 0
So we have an inflection point at x = 0.
Now, for concavity, we check the sign of f '' (x) around the inflection point x = 0.
So to the left of x = 0, let's try x = -1
f '' (-1): numerator = 2(-1)3+12(-1) = -2-12 = -14 = negative; denominator = ((-1)2+4)3/2 = (1+4)3/2 = positive
f '' (-1) = negative/positive = negative
Since f '' (x) is negative to the left of our inflection point, that means it is concave down from (-6,0)
To the right of x = 0, let's try x = 1
f '' (1): numerator = 2(1)3+12(1) = 2+12 = 14 = positive; denominator = ((1)2+4)3/2 = (1+4)3/2 = positive
f '' (1) = positive/positive = positive
Since f '' (x) is positive to the right of our inflection point, that means it is concave up from (0,7)