$a$, $b$ and $c$ are positive integers with different numbers.
$a\cdot b\cdot c = 60$
What is the maximum value of $a+b+c$?
I'm trying to find the best method to solve this question. What are the methods we might use? Also, trial and error seems a bit useless for this question.
A way to solve this is to factorize $60$ giving $2\cdot 2\cdot 3\cdot 5$.
Now it should be fairly obvious that if we want to maximize the sum we want to group the biggest factors together. The best way to do this is just distributing the smallest factors (after $1$) into all but one of the variables, and clumping all the biggest ones into just one:
$$a = 1$$ $$b = 2$$ $$c = 2\cdot 3 \cdot 5 = 30$$
Giving maximum sum $33$.
In general an algorithm for splitting up a number $n$ into $k$ different variables with the greatest sum is to repeatedly assign the smallest divisor $d$ of $n$ not assigned before to a variable, and continuing with $n/d$ and $k-1$ variables.