practice problems pending

Q1. Straight lines are drawn by joining (m) points on a straight line to (n) points on another line. No two lines drawn are parallel and no three lines are concurrent. How many total intersecting points are there?
S1.

Let's rephrase the problem as how many new intersection points are created?
Let's create a quadrilateral by joining 2 vertices from each line.
In this quadrilateral, 2 new intersection points are created.
One by diagonals.
And one by extending the 2 sides which we just created.

Total ways to create a quadrilateral like this:
Choose 2 vertices from one line and 2 from another.
So,
answer = 2 * mC2 * nC2

Q2. Show that the number of rectangles on any chess board of size (n x n) is [n * (n+1)/2]^2
S2.
So it is (n+1)C2 * (n+1)C2.
Since you have to choose 2 horizontal lines and 2 vertical lines from (n+1) horizontal and (n+1) vertical lines.


Comments

Popular posts from this blog

IOQM 2024 Paper solutions (Done 1-21, 29)

Simon's factoring trick(complete the rectangle)

IOQM 2023 solutions