Suppose a triangle, , has 4 marked points on line segment , 3 points on , and 6 points on side . These points are placed randomly along each line segment. Suppose all possible lines connecting these 13 points are drawn. A line cannot be drawn between 2 points on the same side of the triangle. How many points of intersection are there that lie within the triangle?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Firstly we must approach the case when two points are chosen on one side and two points are chosen from another, leaving one side with no selected points. This can be determined through the use of combinations and summing the various possibilities. Below is a list of the different scenarios.
2 points are chosen on side P R and connected to 2 points on side P Q .
2 points are chosen on side P R and connected to 2 points on side Q R .
2 points are chosen on side P Q andf connected to 2 points on side Q R
These scenarios are calculated and then summed below.
( 2 6 ) ( 2 4 ) + ( 2 6 ) ( 2 3 ) + ( 2 4 ) ( 2 3 ) = 1 5 3
Now we must approach the second case when two points are chosen from one side, one point from a second side and the fourth point from the last side. Below are the 3 possible scenarios for this case.
2 points are chosen on side P R and connected to 1 point on P Q and 1 point on Q R .
1 point is chosen on side P R and connected to 2 points on P Q and 1 point on Q R .
1 points is chosen on side P R and connected to 1 point on P Q and 2 points on Q R .
The number of intersections from these scenarios are calculated and summed below.
( 2 6 ) ( 1 4 ) ( 1 3 ) + ( 1 6 ) ( 2 4 ) ( 1 3 ) + ( 1 6 ) ( 1 4 ) ( 2 3 ) = 3 6 0
Adding the number of intersections from the two cases yields the total number of intersections.
1 5 3 + 3 6 0 = 5 1 3
∴ There are 513 different points of intersection within the triangle P Q R when all possible lines are drawn.