you select points around circle and draw lines to each point in order to divide the circle for having maximum number of divided area. If you keep doing this process , what is the number of divided area at fifth process. Optional Can you find the equation of the structure ?
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.
Let n be the number of points on the circle and R be the number of separated regions. Although R = 2 n − 1 holds true for positive integers n from 1 ≤ n ≤ 5 , it is not true for n ≥ 6 . The number of points n and the number of regions R are actually related by the equation
R = 1 + ( 2 n ) + ( 4 n )
1 for the starting region of the circle, ( 2 n ) for the number of possible chords that can be drawn (each new chord adds a new region), and ( 4 n ) for the number of possible quadrilaterals that can be drawn (each new quadrilateral has two intersecting diagonals that adds a new region).
In this problem, the fifth process would have n = 6 points on the circle, for R = 1 + ( 2 6 ) + ( 4 6 ) = 1 + 1 5 + 1 5 = 3 1 regions.
Note : The equation R = 1 + ( 2 n ) + ( 4 n ) is also equivalent to R = 2 4 n 4 − 6 n 3 + 2 3 n 2 − 1 8 n + 2 4 .