Difference between revisions of "2018 AIME I Problems/Problem 9"
Mathandski (talk | contribs) (The code is definitely not python) |
(→Solution 1) |
||
Line 14: | Line 14: | ||
Case 2. | Case 2. | ||
− | We can look for solutions by listing possible <math>a</math> values and filling in the blanks. Start with <math>a=4</math>, as that is the minimum. We find <math>\{4, 12, 20, ?\}</math>, and likewise up to <math>a=15</math>. But we can't have <math>a=8</math> or <math>a=12</math> because <math>a=b</math> or <math>a=c</math>, respectively! Now, it would seem like there are <math>10</math> values for <math>a</math> and <math>17</math> unique values for each <math>?</math>, giving a total of <math>170</math>, but that is once again not true because there are some repeated values! | + | We can look for solutions by listing possible <math>a</math> values and filling in the blanks. Start with <math>a=4</math>, as that is the minimum. We find <math>\{4, 12, 20, ?\}</math>, and likewise up to <math>a=15</math>. But we can't have <math>a=8</math> or <math>a=12</math> because <math>a=b</math> or <math>a=c</math>, respectively! Now, it would seem like there are <math>10</math> values for <math>a</math> and <math>17</math> unique values for each <math>?</math>, giving a total of <math>170</math>, but that is once again not true because there are some repeated values! |
+ | There are two cases of overcounting: | ||
+ | case 1) (5,11,13,19) & (5.11.19.13) | ||
+ | The same is for (6,10,14,18) and (7,9,15,17) | ||
+ | case 2) those that have the same b and c values | ||
+ | this case includes: | ||
+ | (1,15,9,7) and (7,9,15,1) | ||
+ | (2,14,10,6) and (6,10,14,2) | ||
+ | (3,13,11,5) and (5,11,13,3) | ||
+ | So we need to subtract 6 overcounts. | ||
+ | So, that's <math>164</math> for Case 2. | ||
Total gives <math>\boxed{210}</math>. | Total gives <math>\boxed{210}</math>. | ||
-expiLnCalc | -expiLnCalc | ||
+ | added by Ada~ | ||
==Solution 2== | ==Solution 2== |
Revision as of 08:58, 9 March 2021
Problem
Find the number of four-element subsets of with the property that two distinct elements of a subset have a sum of
, and two distinct elements of a subset have a sum of
. For example,
and
are two such subsets.
Solutions
Solution 1
This problem is tricky because it is the capital of a few "bashy" calculations. Nevertheless, the process is straightforward. Call the set .
Note that there are only two cases: 1 where and
or 2 where
and
. Also note that there is no overlap between the two situations! This is because if they overlapped, adding the two equations of both cases and canceling out gives you
, which cannot be true.
Case 1.
This is probably the simplest: just make a list of possible combinations for and
. We get
for the first and
for the second. That appears to give us
solutions, right? NO. Because elements can't repeat, take out the supposed sets
That's ten cases gone. So
for Case 1.
Case 2.
We can look for solutions by listing possible values and filling in the blanks. Start with
, as that is the minimum. We find
, and likewise up to
. But we can't have
or
because
or
, respectively! Now, it would seem like there are
values for
and
unique values for each
, giving a total of
, but that is once again not true because there are some repeated values!
There are two cases of overcounting:
case 1) (5,11,13,19) & (5.11.19.13)
The same is for (6,10,14,18) and (7,9,15,17)
case 2) those that have the same b and c values
this case includes:
(1,15,9,7) and (7,9,15,1)
(2,14,10,6) and (6,10,14,2)
(3,13,11,5) and (5,11,13,3)
So we need to subtract 6 overcounts.
So, that's
for Case 2.
Total gives .
-expiLnCalc added by Ada~
Solution 2
Let's say our four elements in our subset are . We have two cases. Note that the order of the elements / the element letters themselves don't matter since they are all on equal grounds at the start.
and
.
List out possibilities for
but don't list
because those are the same elements and that is restricted.
Then list out the possibilities for but don't list
because they are the same elements.
This will give you elements, which is
. However, as stated above, we have overlap. Just count starting from
all overlap once, which is
, thus
cases in this case. Note that
wasn't included because again, if
,
and
cannot be
.
and
.
Here, is included in both equations. We can easily see that
will never equal each other.
Furthermore, there are 17 choices for (
included elements) for each
. Listing out the possible
s, we go from
. Do not include
or
because if they are included, then
will be the same as
, which is restricted.
There are options there, and thus
. But, if
and
, notice that
. That means that if
is also
, then we have a double-counted set. Starting with
, we have
(where
is
. That means there are
double-counted cases. Thus
cases in this case.
Adding these up, we get
~IronicNinja
~ by AlcBoy1729
~Formatted by ojaswupadhyay and phoenixfire
Solution C++ (Coding)
This is not a way of solving the problem during the contest, you can use it as a way to check your answers after the contest.
This code works:
int num = 0; for(int i = 1; i <= 20; i++){ for(int j = i+1; j <= 20; j++){ for(int k = j+1; k <= 20; k++){ for(int m = k+1; m <= 20; m++){ if(i+j==16 || i + k == 16 || i + m == 16 || j + k == 16 || j + m == 16 || k + m == 16){ if(i+j==24 || i+k==24 || i+m==24 || j+k==24 || j+m == 24 || k+m==24){ num++; } } } } } } cout << num << endl;
See Also
2018 AIME I (Problems • Answer Key • Resources) | ||
Preceded by Problem 8 |
Followed by Problem 10 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.