Suppose we have n distinct lines on a plane. What is the maximum and minimum number of intersections?
Suppose we have n distinct points on a plane. What is the maximum and minimum number of line that they can form?
What is the maximum number of region that n lines can divide a plane into?
Given n collinear points , what is the maximum and minimum distance between the points?
Arrange seven points on a plane such that , for any 3 points , we can find 2 points with distance 1.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Minimum=1, all points are collinear. For maximum, assume all points on a circle, ie. no 3 of them are collinear, this will give again (2n)
This can be proved by recursion. See complete proof here
Minimum=0+, maximum=∞. Either I am not understanding it properly or its vague.
Log in to reply
For 1 , 2 , how do u know that it is N 2 ?? And , can you please explain what's that……??
Log in to reply
How many ways are there to select 2 objects from N given objects? That's (2N). Thus, in 1., I selected 2 lines out of n to find number of intersections. Similarly, in 2., I selected 2 points out of n points, to draw a line.
In general, (yx) is the number of ways to select y objects out of x given objects. For more details, see this. I hope it helps.
Though if you don't know about Permutations as well, I'll recommend you to read a wiki on permuations from here first.
(2N)=2N(N−1)
If you need some more help, feel free to either comment here or at Moderator's Messageboard here
Log in to reply
Thank you.
Log in to reply
3 objects out of N objects, use 3.
When you are supposed to selectSay, we are given 5 objects, (A,B,C,D,E)
{(A,B),(A,C),(A,D),(A,E),(B,C),(B,D),(B,E),(C,D),(C,E),(D,E)}
{(A,B,C,D),(A,B,C,E),(A,B,D,E),(A,C,D,E),(B,C,D,E)}
{(A,B,C,D,E)}
Solution needed.