
You are given an elliptical-shaped land and you are asked to choose n arbitrary points on its boundary. Then you connect each point with every other point using straight lines, forming n(n - 1)/2 connections.
What is the maximum number of pieces of land you will get by choosing 'n' points on the boundary carefully?
Here are some sample answers:
n=1 Pieces=1
n=2 Pieces=2
n=3 Pieces=4
n=4 Pieces=8
The diagram shows the division of land at n=6,
if the answer is 2^(n-1), i didn't find it too difficult
ReplyDeleteit IS too difficult. i used a computer to solve it... :)
ReplyDelete(n^4 - 6n^3 + 23 n^2 -18n)/24 + 1
ReplyDelete5-->16
6-->31
7-->57
8-->99
9-->163
I m gettin the same answer
ReplyDelete2^(n-1)...same...
ReplyDeletewow! someone got the right answer!
ReplyDeleteand the good thing is that C0+C2+C4 equals 2^(n-1) only for n<=5
ReplyDeletewho marked this question 'too easy'?
ReplyDeleteTushar, If I know C++, I have a right to use it.
ReplyDeleteIsme shak vali kya baat hai?
it is a 4th level AP
ReplyDeleteanswer is 1+(n-1)C0+(n-1)C1+(n-1)C2+
(n-1)C3+(n-1)C4
CHECH IT OUT