Fastest structured way to get max(abc) if a+b+c=30

47 Views Asked by At

What is the fastest and structured way to get maximum of abc if a+b+c=n, say n=30? a,b,c are non-negative and can be non-integer.

1

There are 1 best solutions below

0
On BEST ANSWER

Use that $$\frac{a+b+c}{3}\geq \sqrt[3]{abc}$$ so $$10\geq \sqrt[3]{abc}$$