Positive Square Exercises

40 Views Asked by At

I'm trying to do these problems, but I'm not sure how to start. Can someone help me figure out how I'm supposed to approach these? Thank you

Let a, b, c be positive constants. For all positive numbers x, y with product c, find the minimum value of ax + by.

If a, b, c are real numbers not all equal, prove that: a^2 + b^2 + c^2 > ab + ac + bc

Given any positive constant c, find the minimum value of x^4 + 2y^4 for positive numbers x and y having product xy = c.

1

There are 1 best solutions below

1
On

You are given $xy=c$ and want to minimize $ax+by$. Solve the constraint for one of the variables and plug it into your objective, so here $y=\frac cx$ and the function to minimize is $ax+b\frac cx$. This is a function of one variable, so take the derivative and set it to zero.

For the second one subtract the right side from both sides making the right side zero. You should be able to express the new left side as a sum of squares. That says it is at least zero and strictly greater when one of them is not zero.

The third is similar to the first.