Find the maximum product of the elements of the partition of 2 5 .
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.
Thank youo very mucho! brillianto answero!
Fixing the number of partitions 2 ≤ p ≤ 1 2 , each partition x i > 1 , i = 1 , … p . We have ∑ x i = 2 5 . If partitions dod not have to be integers, one can show that all partitions x i should be equal for the product ∏ x i to be maximum. The positive integer version would be to have p − r ( 2 5 , p ) of the partitions to be ⌊ p 2 5 ⌋ and r ( 2 5 , p ) of the partitions to be ⌊ p 2 5 ⌋ + 1 . r ( x , y ) is the remainder of dividing x by y . The maximum product, for a fixed p is then
⌊ p 2 5 ⌋ p − r ( 2 5 , p ) × ( ⌊ p 2 5 ⌋ + 1 ) r ( 2 5 , p )
then we can make a table, for different 2 ≤ p ≤ 1 2 to find out that for p = 8 , 9 the maximum 3 7 × 2 2 = 8 7 4 8 is achived.
Problem Loading...
Note Loading...
Set Loading...
If there is a 5 in the partition, we could replace it with 2 + 3 , which would be a better partition since 2 × 3 = 6 which is greater than 5. Similarly, if there is a 6 in the partition, we could replace it with 2 + 4 , where 2 × 4 = 8 . In fact, this is true for any number n ≥ 4 : n ≥ 4 ⟹ 2 ( n − 2 ) ≥ n We also want to avoid 1s, since they contribute nothing to the product. This means there is a partition with a maximal product containing only 2s and 3s.
So, let's start with a partition containing only 2s and 3s, and try to improve it. If we replace 2 + 2 + 2 with 3 + 3 (which give the same sum and so don't affect the rest of the partition), we replace a product of 2 × 2 × 2 = 8 with 3 × 3 = 9 , increasing the overall product. Hence, we want to replace as many 2s with 3s as possible. The best partition is then 2 5 = 3 + 3 + 3 + 3 + 3 + 3 + 3 + 2 + 2 = 7 ( 3 ) + 2 ( 2 ) with a product of 3 7 2 2 = 8 7 4 8