Difference between revisions of "1976 IMO Problems/Problem 4"
m |
Sneekifnyt1 (talk | contribs) (→Problem) |
||
Line 31: | Line 31: | ||
Now, as observed in the last solution, any triplet of <math>2</math>'s can be replaced by a couple of <math>3</math>'s, with <math>g(S)</math> constant, and an increase in <math>f(S)</math>. Thus, after repeating this operation, we will be left with at most two <math>2</math>'s. Since <math>g(S) = 1976</math>, and <math>1976 \equiv 2\;(\mathrm{mod }\;3)</math>, we therefore get that <math>S</math> must have exactly one <math>2</math> (since we already showed it consists only of <math>2</math>'s and <math>3</math>'s). Thus, we get <math>\boxed{f(S) = 2\cdot 3^{658}}</math>. | Now, as observed in the last solution, any triplet of <math>2</math>'s can be replaced by a couple of <math>3</math>'s, with <math>g(S)</math> constant, and an increase in <math>f(S)</math>. Thus, after repeating this operation, we will be left with at most two <math>2</math>'s. Since <math>g(S) = 1976</math>, and <math>1976 \equiv 2\;(\mathrm{mod }\;3)</math>, we therefore get that <math>S</math> must have exactly one <math>2</math> (since we already showed it consists only of <math>2</math>'s and <math>3</math>'s). Thus, we get <math>\boxed{f(S) = 2\cdot 3^{658}}</math>. | ||
+ | |||
+ | === Solution 4 === | ||
+ | |||
+ | We determine the greatest number, who is the product of some positive integers, and the sum of these numbers is <math>1976.</math>. | ||
+ | |||
+ | For this problem, we used induction where if we assumed that <math>i, j</math> are greater than <math>1</math>. Then | ||
+ | <cmath> | ||
+ | 2^i \cdot 3^j > 3 | ||
+ | </cmath> | ||
+ | where <math>k = i \cdot 2 + j \cdot 3</math>. Knowing this implies that the optimal solution comprises of twos and threes, we proceeded to show that given a configuration of | ||
+ | <cmath> | ||
+ | 2^i \cdot 3^k, | ||
+ | </cmath> | ||
+ | <cmath> | ||
+ | 2^{i+n} \cdot 3^{\,j-\tfrac{2}{3}n} | ||
+ | </cmath> | ||
+ | is less than the original expression, implying that maximal multiplication by <math>3</math> is maximizing under the given relationship with powers of two. | ||
+ | |||
+ | More rigorously, we can show that maximizing with <math>3</math> is optimal by comparing the expression | ||
+ | <cmath> | ||
+ | 2^i \cdot 3^j | ||
+ | </cmath> | ||
+ | with | ||
+ | <cmath> | ||
+ | 2^{i+n} \cdot 3^{\,j-\tfrac{2}{3}n}. | ||
+ | </cmath> | ||
+ | Taking the ratio gives | ||
+ | <cmath> | ||
+ | \frac{2^{i+n} \cdot 3^{\,j-\tfrac{2}{3}n}}{2^i \cdot 3^j} | ||
+ | = \frac{2^n}{3^{\tfrac{2}{3}n}}. | ||
+ | </cmath> | ||
+ | Now consider the <math>n</math>-th root of this factor: | ||
+ | <cmath> | ||
+ | \left(\frac{2^n}{3^{\tfrac{2}{3}n}}\right)^{\!\!1/n} | ||
+ | = \frac{2}{3^{2/3}} < 1. | ||
+ | </cmath> | ||
+ | Thus multiplying by more <math>3</math>’s (rather than shifting weight into <math>2</math>’s) always gives a larger product, confirming that <math>3</math> is maximizing under the given relationship. | ||
+ | |||
+ | However, when we reach an edge, <math>2 \cdot 2</math> over <math>3 \cdot 1</math> is a superior solution. Given <math>1976</math> we can have | ||
+ | <cmath> | ||
+ | 3^{658} \cdot 2. | ||
+ | </cmath> | ||
+ | |||
+ | |||
=== Video Solution by Steakmath (no algebra; basic) === | === Video Solution by Steakmath (no algebra; basic) === |
Revision as of 22:33, 26 August 2025
Contents
Problem
Determine the greatest number, who is the product of some positive integers, and the sum of these numbers is
Solution 1
Since , 3's are more efficient than 2's. We try to prove that 3's are more efficient than anything:
Let there be a positive integer . If
is more efficient than
, then
. We try to prove that all integers greater than 3 are less efficient than 3:
When increases by 1, then the RHS is multiplied by 3. The other side is multiplied by
, and we must prove that this is less than 3 for all
greater than 3.
Thus we need to prove that . Simplifying, we get
, which is true. Working backwards, we see that all
greater than 3 are less efficient than 3, so we never use anything greater than 3. Therefore we use as many 3s in groups of 2 as possible, and since the remainder when 1976 is divided by 6 is 2, we can use 658 3s and one 2.
, so the greatest product is
.
Solution 2
(Non-rigorous)
We demonstrate heuristically that 3's are the most efficient.
As we know that the chosen numbers must be equal, by the AM-GM inequality, we wish to maximize
Simple logarithmic differentiation shows that
maximizes the given function. As
is approximately 2.71828, we use 2's and 3's only. 3's are optimal, but we must use one 2.
Solution 3
Note: This solution uses the same strategy as Solution 1 (that having the largest possible number of three's is good), but approaches the proof in a different manner.
Let , and
, where
is a multiset. We fix
, and aim to maximize
. Since
for
, we notice that
must only contain the integers
and
. We can replace any occurrences of
in
by replacing it with a couple of
's, without changing
or
, so we may assume that
only contains the integers
and
. We may further assume that
contains at most one
, since any two
's can be replaced by a
without changing
, but with an increase in
. If
contains exactly one
, then it must also contain at least one
(since
). We can then replace this pair of a
and a
with a
, thus keeping
constant, and increasing
. Now we may assume that
contains only
's and
's.
Now, as observed in the last solution, any triplet of 's can be replaced by a couple of
's, with
constant, and an increase in
. Thus, after repeating this operation, we will be left with at most two
's. Since
, and
, we therefore get that
must have exactly one
(since we already showed it consists only of
's and
's). Thus, we get
.
Solution 4
We determine the greatest number, who is the product of some positive integers, and the sum of these numbers is .
For this problem, we used induction where if we assumed that are greater than
. Then
where
. Knowing this implies that the optimal solution comprises of twos and threes, we proceeded to show that given a configuration of
is less than the original expression, implying that maximal multiplication by
is maximizing under the given relationship with powers of two.
More rigorously, we can show that maximizing with is optimal by comparing the expression
with
Taking the ratio gives
Now consider the
-th root of this factor:
Thus multiplying by more
’s (rather than shifting weight into
’s) always gives a larger product, confirming that
is maximizing under the given relationship.
However, when we reach an edge, over
is a superior solution. Given
we can have
Video Solution by Steakmath (no algebra; basic)
See also
1976 IMO (Problems) • Resources | ||
Preceded by Problem 3 |
1 • 2 • 3 • 4 • 5 • 6 | Followed by Problem 5 |
All IMO Problems and Solutions |