Analyzing the Setup
Imagine you are standing in a vast, empty plane with ten points scattered before you. Your goal is to connect these points to form triangles.
However, there is a critical geometric constraint: six of these points are trapped on a single straight line.
In geometry, three points can only form a triangle if they are non-collinear. If three points lie on the same line, they form a line segment, which is a degenerate triangle with an area of zero.
The Naive Approach
The Total Count
Let us start by ignoring the constraint. If we have 10 points and we want to choose 3 to form a triangle, we calculate the number of combinations of 10 items taken 3 at a time, denoted as (310).
The formula for combinations is given by:
Applying this to our set of 10 points:
(310)=3×2×110×9×8=6720=120
There are 120 ways to pick 3 points from 10. However, not every one of these 120 combinations forms a valid triangle.
The Trap
The Collinear Constraint
This is where the JEE examiner tests your attention to detail. We have 6 points on a single line.
Any combination of 3 points chosen from these 6 will fail to form a triangle. We must calculate how many of our 120 combinations are "invalid" by calculating (36):
(36)=3×2×16×5×4=6120=20
There are exactly 20 combinations that result in straight lines rather than triangles.
The Resolution
Subtracting the Invalid
The path to the solution is now clear. We take our total combinations and subtract the invalid ones using the principle of complementary counting.
We have found that there are exactly 100 valid triangles.
Final Reflection
We have arrived at the final result of 100. This problem teaches us that in geometry and combinatorics, the most important step is identifying the constraints.
Never blindly apply a formula; always ask yourself if the calculation includes cases that are physically impossible. By doing so, you will navigate the traps of the JEE Advanced with confidence and precision.