The numbers a , b , c , d are 1 , 2 , 2 , 3 in some order. What is the greatest possible value of a b c d ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
max ( a b c d ) if d = 1 , and max ( b c ) . So max ( b c ) = 3 2 = 9 . max ( a b c d ) = 2 3 2 1 = 2 9 = 5 1 2 max ( a b c d ) = 5 1 2
Problem Loading...
Note Loading...
Set Loading...
Note that if a , b or c is 1 , then all indices above 1 wouldn't contribute anything. Therefore, to maximise, we will make d = 1 .
Now we have to maximise a b c from 2 , 2 , 3 . Note that there are only 3 ways of evaluating this: 3 2 2 = 8 1 , 2 3 2 = 5 1 2 , 2 2 3 = 2 5 6 . Therefore, 5 1 2 is the maximum value, achieved at a = c = 2 , b = 3 and d = 1 .