7. Combinations in Geometry
7.1 Intersection of circles of different radii
Number of ways in which
2 circles can be selected from n circles = nC2=2n(n−1)
As any 2 circles can form a maximum of 2 intersection points,
Maximum Intersection points =2n(n−1)×2=n(n−1)
7.2 Intersection of non-concurrent lines
When 3 or more lines intersect each other at the same common point, they are called concurrent lines.
If there are n non-concurrent lines, any 2 such lines will form 1 intersection point. Number of intersection points is the number of ways in which 2 lines can be selected, i.e. nC2.
7.3 Lines drawn through non-collinear points
Non-collinear points are those where not more that 2 of them can lie on a straight line. In other words, three or more points do not lie on one line.
Through any 2 points, 1 line can be drawn. Therefore, to find number of lines formed by a pair of points, we need to find the number of pairs that can be chosen from n non-collinear points, i.e. nC2.
7.3.1 Lines drawn through collinear & non-collinear points
Note that the collinear cases need to be removed. So, number of straight lines that can be drawn where there are n points of which r are collinear is nC2− rC2+1. Note that 1 is added back as this is to consider the 1 line that can be drawn through the collinear points.
Example 56
A to J are 10 points on a plane. A, B, C and D are collinear. E, F and G are another set of collinear points. If no other set of 3 or more points are collinear, then how many different lines can be drawn through these points?
Solution
For a line to be formed, two distinct points are required. So, the total number of lines which can be formed with the 10 points are 10C2=45 lines.
But since A, B, C and D are collinear, we can construct only one line with it. So, the 4C2 lines formed with it has to be eliminated and only 1 line should be added. Likewise, 3C2 lines has to be eliminated and only 1 line should be added for E, F and G, as they are also collinear.
Therefore, total number of lines = 10C2− 4C2+1− 3C2+1= 45−6+1−3+1=38
Answer: 38
Example 57
What is the maximum number points of intersection that can be formed by 6 non-overlapping lines and 5 circles of different radii on a plane?
Solution
2 non-overlapping lines can intersect at a maximum of 1 point. 2 circles of different radii can intersect at a maximum of 2 points. 1 circle and 1 line can intersect at a maximum of 2 points.
| Selecting |
No. of Ways |
Max Intersection Points |
Total Points |
| 2 lines |
6C2 |
1 |
15×1=15 |
| 2 circles |
5C2 |
2 |
10×2=20 |
| 1 line & 1 circle |
6C1× 5C1 |
2 |
30×2=60 |
| Total |
|
|
95 |
Answer:
95
7.4 Triangles drawn through non-collinear points
As the points are non-collinear, with every
3 points, 1 triangle can be drawn. Therefore, number of triangles that can be drawn is the number of ways in which 3 points can be selected from n non-collinear points, which is nC3.
7.4.1 Triangles drawn through collinear & non-collinear points
If 3 points lie on a straight line, we cannot draw a triangle using them. Let out of a total of n points, r points be lying on a straight line, and none of the other points being collinear.
Total number of triangles, assuming all n points are collinear = nC3
However, the above calculation includes triangles formed using the r collinear points, which is rC3. This needs to be subtracted.
Therefore, number of triangles that can be drawn from n given points, where r points lie on the straight line and none of the other points are collinear = nC3−rC3
Example 58
There are 15 points on a plane. Of this, 6 of them belong to one set of collinear points and 4 of them are another set of collinear points. The rest of the points are non-collinear. What is the maximum number of triangles that can be formed using these points as the vertices?
Solution
If all 9 points were non-collinear, then number of triangles that can be drawn = 15C3=455
Triangles that cannot be formed are those within the respective sets of collinear points.
Triangles that cannot be formed = 6C3+ 4C3=24
Number of triangles that can be formed =455−24=431
Answer: 431
7.5 Diagonals of a Polygon
This can be explained in
2 ways.
Logical Approach: From a vertex of a polygon, diagonals can be drawn to all the other vertices other than itself and its 2 adjacent vertices. Therefore, in an n-sided polygon, from a point we can draw n−3 diagonals. There are n such vertices we should be able to draw n(n−3) diagonals. However, diagonals are double counted here (for instance a diagonal from A to C which is also from C to A is counted twice). We can remove this by dividing by 2.
Number of diagonals of an n-sided polygon =2n(n−3)
Combinations Approach: Between any 2 points in a polygon, lines can be drawn. Number of ways in which we can select 2 points is nC2=2n(n−1)
However, lines connecting adjacent vertices are sides of the polygon and not diagonals. There are n such sides which need to be removed.
Number of diagonals of an n-sided polygon = nC2−n=2n(n−1)−n= 2n(n−3)
7.6 Parallelograms formed by parallel lines
Where m parallel lines intersect another set of n parallel lines, parallelograms can be formed. We can form a parallelogram with any 2 of the m parallel lines and any 2 of the n parallel lines.
mC2 and nC2 is the number of ways to select 2 lines from m and n parallel lines respectively.
Number of parallelograms that can be formed = mC2× nC2
7.7 Rectangles and Squares
From a larger rectangle with m rows and n columns,
Number of rectangles that can be formed =(1+2+...+m) (1+2+...+n)= 2m(m+1)×2n(n+1)
Number of squares that can be formed =mn+(m−1)(n−1)+(m−2)(n−2)+...
If we have a square instead of a rectangle, then the number of rows and columns will be the same. We can simply replace m with n in the above formulae.
From a larger square with n rows and n columns,
Number of rectangles that can be formed =(2n(n+1))2
Number of squares that can be formed =n2+(n−1)2+...+1= 6n(n+1)(2n+1)
Example 59
How many squares are there in a chessboard which has 8 rows and 8 columns?
Solution
With equal number of rows and columns, we have a large square.
Number of squares that can be formed from a large square =6n(n+1)(2n+1)
=68(8+1)(16+1)=12×17=204
Answer: 204