AIME 2017 I · 第 1 题
AIME 2017 I — Problem 1
题目详情
Problem 1
Fifteen distinct points are designated on : the 3 vertices , , and ; other points on side ; other points on side ; and other points on side . Find the number of triangles with positive area whose vertices are among these points.
解析
Solution 1
Every triangle is uniquely determined by 3 points. There are ways to choose 3 points, but that counts the degenerate triangles formed by choosing three points on a line. There are invalid cases on segment , invalid cases on segment , and invalid cases on segment for a total of invalid cases. The answer is thus .
Solution 2
We simply choose points from to begin with, since a triangle consists of points and there are points total. That gives us . Now, we need to remove the degenerate triangles from this total. The degenerate triangles are just the triangles that are collinear. We can count the number of degenerate triangles on each side of , then subtract it from . For , we have degenerate triangles (don't forget and ). Then, for , we have degenerate triangles, and for , we have degenerate triangles. So, our final answer is
-jb2015007 and cnwyshi (minor edits like grammar)
Solution 3 (Casework Ba\$h)
We will use casework based on the number of common vertices to solve this problem.
Case 1: No common vertices
There are two subcases for this solution, being three distinct sides, and two vertices on a side. This is because, for a triangle to have area 0, all three points must be on one side, so this scenario is possible.
First, to calculate the amount of triangles where all three vertices are on 3 distinct sides of a triangle, one just uses multiplication, for .
The other case is a bit trickier, as there are three possible sides where the two common vertices could be; AC, AB and BC.
If the two vertices are on segment AC, where there are 5 points to choose from, the last point must be on a different segment. These can be combined in any way, so there are ways to choose this case, or .
If the two vertices are on segment AB, there are 3 points to choose two from, and 9 other points. This yields possibilities.
Finally, if the two vertices are on BC, there are 4 points to choose two from, and 8 others. This yields possibilities.
Adding all of the zero vertice cases together results in non-common-vertice solutions.
Case 2: One Common Vertice
There are three cases to work with here; one where the vertice is A, one where it is B, and one where it is C.
If the common vertice is A, and all other vertices are on distinct line segments (AB, BC, or CA), there is guaranteed to be a line segment where a vertice does not occur. This means that there are three subcases for this type, relative to the large case of a vertice on A: a vertice not being on AB (meaning vertices on BC and AC), a vertice not being on BC (meaning vertices on AC and AB) and a vertice not on AC (meaning vertices on AB and BC).
For these subcases, only multiplying the number of points on each line suffices, so for this case for A specifically, we have ways.
This is true for all one-vertice distinct line segment cases (because of symmetry), so this case can be replicated three times, for cases of 1-vertice distinct line segment.
However, it is also possible that two points are on the same line segment, which must be directly opposite to the vertice (because no 3 points can be on the same line). This means that there must be 2 dots on that line segment opposite the vertice. The line segments opposite vertice A, B, and C are BC, AC and AB respectively, which have 4, 5, and 3 dots respectively. This problem asks for us to choose 2 from four, five, and 3 and add them up, which gets cases.
In total, for one vertice cases, we have cases. This brings the aggregate number of cases to cases.
Case 3: Two Common Vertices
The only way a triangle could not have an area of greater than 0 is if all three of its vertices are on the same line. Two are already on the same line, so the last point cannot be on the same line as the other two. This is also the two vertice case, so the final point cannot be a vertice. Out of the 12 non-vertice points, 3, 4, or 5 of them will be unavailable, whether if B, A, or C is chosen, respectively. This gives cases for two-vertice solutions.
Adding this to the aggregate gives cases.
Case 4: Three Common Vertices
By trivial, this is the original triangle, which is still a case. This gives 1 three-vertice solution.
This brings the total number to cases, which is the final solution. .
Video Solution
https://youtu.be/BiiKzctXDJg ~Shreyas S