2020 AMC 10A Problems/Problem 17
Contents
Problem
Define How many integers are there such that ?
Solution Visual Aid
Visualization that makes it easier to see the solution:
size(600); // Draw the main number line (x-axis) draw((-5, 0) -- (5, 0), Arrow); // Line from -10 to 10 with an arrow at the end draw((5, 0) -- (-5, 0), Arrow); // Line from -10 to 10 with an arrow at the end // Add ticks and labels at each integer point from -10 to 10 for (int i = -4; i <= 4; ++i) { if (i != 0) draw((i, -0.2) -- (i, 0.2)); // Tick mark // label(string(i), (i, -0.5), S); // Label each tick below the line } label(string(1^2), (-4, -0.5), S); // Label each tick below the line label(string(2^2), (-3, -0.5), S); // Label each tick below the line label(string(3^2), (-2, -0.5), S); // Label each tick below the line label(string(4^2), (-1, -0.5), S); // Label each tick below the line label(string(...), (0, -0.5), S); // Label each tick below the line label(string(97^2), (1, -0.5), S); // Label each tick below the line label(string(98^2), (2, -0.5), S); // Label each tick below the line label(string(99^2), (3, -0.5), S); // Label each tick below the line label(string(100^2), (4, -0.5), S); // Label each tick below the line (Error making remote request. Unknown error_msg)
Solution 1 (Casework)
We perform casework on
In this case, there are such integers
There are factors in and we need an odd number of them to be negative. We construct the table below: Note that there are valid intervals of We count the integers in these intervals: In this case, there are such integers
Together, the answer is
~PCChess (Solution)
~MRENTHUSIASM (Reformatting)
Solution 2 (Casework)
Notice that is nonpositive when is between and and , and (inclusive), because there are an odd number of negatives, which means that the number of values equals This reduces to ~Zeric
~jesselan (Minor Edits)
Solution 3 (End Behavior)
We know that is a -degree function with a positive leading coefficient. That is, .
Since the degree of is even, its end behaviors match. And since the leading coefficient is positive, we know that both ends approach as goes in either direction, from which So the first time is going to be negative is when it intersects the -axis at an -intercept and it's going to dip below. This happens at , which is the smallest intercept.
However, when it hits the next intercept, it's going to go back up again into positive territory, we know this happens at . And when it hits , it's going to dip back into negative territory. Clearly, this is going to continue to snake around the intercepts until .
To get the amount of integers below and/or on the -axis, we simply need to count the integers. For example, the amount of integers in between the interval we got earlier, we subtract and add one. integers, so there are four integers in this interval that produce a negative result.
Doing this with all of the other intervals, we have from Solution 2's result.
~quacker88
Solution 4 (Fast)
We know when an odd number of its factors are positive and negative. For example, to make the first factor positive, . then there will be a even number of positive factors. We would do to find all integers that work. In short we can generalize too: But remember this only works when because only then will there be a odd amount of positive and negative factors. So we can set , for Now we only have to solve: ~Wiselion
Video Solution by Pi Academy
https://youtu.be/hqdnNqds2mw?si=dHhmbLrh3pWWIG9T
~ Pi Academy
Video Solutions
https://youtu.be/3dfbWzOfJAI?t=4026
~ pi_is_3.14
~Education, The Study of Everything
~IceMatrix
https://www.youtube.com/watch?v=YDMMhSguq0w&list=PLeFyQ1uCoINM4D5Lgi5Y3KkfvQuYuIbj
-Walt S.
~savannahsolver
https://youtu.be/R220vbM_my8?t=463
~ amritvignesh0719062.0
See Also
2020 AMC 10A (Problems • Answer Key • Resources) | ||
Preceded by Problem 16 |
Followed by Problem 18 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
All AMC 10 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.