Analyzing the Setup
Welcome, future engineer. Today, we are not just solving a problem; we are exploring the architecture of space. We have a triangle, ABC, and scattered along its sides are points—like beads on a string.
We have 3 points on side AB, 5 on side BC, and 6 on side CA. Our mission is to find out how many distinct triangles we can construct using these points as vertices.
This is a classic problem that tests your ability to distinguish between the 'Universe of Possibilities' and the 'Reality of Constraints.'
The Universe of Possibilities
First, let us define our total set of points. If we ignore the geometry for a moment and just look at the raw data, we have a collection of points.
Let N be the total number of points. We simply sum them up: N=3+5+6=14. We have 14 points in total.
Now, imagine you are a creator. You want to build a triangle. To build a triangle, you need exactly 3 points.
If we were to pick any 3 points from our set of 14 without any restrictions, how many ways could we do that? This is a fundamental combinatorics question. We use the combination formula, nCr=r!(n−r)!n!.
Here, n=14 and r=3. So, we calculate 14C3:
Let us simplify this. Since 3×2×1=6 and 12/6=2, we are left with 14×13×2. That gives us 364.
This number, 364, represents every possible triplet of points we can choose. But here is the catch: not every triplet makes a triangle.
The Collinear Trap
In the world of geometry, three points form a triangle if and only if they are non-collinear. If you pick three points that lie on the same straight line, you do not get a triangle; you get a line segment. This is the 'Collinear Trap.'
Look at our triangle ABC. The points on side AB are all collinear. The points on side BC are all collinear. The points on side CA are all collinear.
If we accidentally pick 3 points from side AB, we have failed to create a triangle. If we pick 3 points from side BC, we have failed. If we pick 3 points from side CA, we have failed.
We must identify these 'invalid' selections and remove them from our total of 364.
Filtering the Noise
Let us calculate the number of invalid selections for each side.
For side AB, we have 3 points. The number of ways to choose 3 points from these 3 is 3C3=1. This is one 'flat' triangle that we must discard.
For side BC, we have 5 points. The number of ways to choose 3 points from these 5 is 5C3. Using our formula:
5C3=3×2×15×4×3=2×15×4=10
So, there are 10 invalid combinations on side BC.
For side CA, we have 6 points. The number of ways to choose 3 points from these 6 is 6C3:
There are 20 invalid combinations on side CA.
The Final Synthesis
Now, we bring it all together. We started with a grand total of 364 possible selections. We identified the 'noise'—the invalid, collinear selections—which sum up to 1+10+20=31.
To find the number of valid triangles, we simply subtract the noise from the total:
Valid Triangles=14C3−(3C3+5C3+6C3)
Valid Triangles=364−(1+10+20)
Valid Triangles=364−31=333
And there it is. 333 valid triangles. It is a beautiful, symmetric result.
Remember, in JEE Advanced, the math is rarely just about calculation; it is about understanding the constraints of the system. You have successfully navigated the trap of collinearity and arrived at the truth. Keep this mindset—always look for the constraints, and you will never be lost.