Exercise asks to verify that the sum of three quantities x, y, z, whose product is a constant k, is minimum when these three quantities are equal.
This is my amateurish attempt:
- $x + y + z = S$;
- $x*y*z=k$;
- $z = \frac{k}{xy}$;
- x + y + $\frac{k}{xy}$ = S;
- $\frac{\partial S}{\partial x} = 1 - \frac{k}{x^2y} = \frac{x^2y-k}{x^2y}$ and symmetricly $\frac{\partial S}{\partial y} = \frac{y^2x-k}{y^2x}$;
- $x^2y-k = 0 \rightarrow x^2y=k \rightarrow x^2y=xyz \rightarrow \frac{x^2y}{xy}=z \rightarrow x=z$ and symmetricly $y=z$, so $y=x=z$;
- This part is doubtful to me. Proving that S is minimal when $x=y=z \rightarrow$ $\frac{\partial ^2 S}{\partial x^2} = \frac{2k}{yx^3} \rightarrow \frac{2(xyz)}{yx^3} \rightarrow \frac{2z}{x^2} \rightarrow \frac{2x}{x^2} \rightarrow \frac{2}{x}$ and symmetricly $\frac{2}{y}$;
Conclusion - if second derivative is positive, that means $S$ must be a minimum. Please be free to comment if this solution is flawed or missing something.
I have been battling with the same exercise for a couples of days. Can't say I have arrived at a satisfactory solution, but I will explain you what I got, which was different from yours.
Steps 1 to 5 are the same.
This if what I got. I asume either there's something wrong or that it only 'makes sense' to speak of the function for positive real numbers.