Recently, I came across a question that required to find the maximum number of regions a circle can be divided into with 4 lines, considering regions fromed inside the circle only. The question was an easy one; a fair bit of trial-and-error popped out the answer as . But what if there were, let's say, lines? Obviously, trial-and-error here would drain the soul out of me! So, I started investigating the mechanism that created the maximum number of regions for lines, and derived a formula which would give us the answer directly.
First of all, I found that when I was trying for the case, what I was essentialy trying to do is to make sure that every new line I drew cut all the previous lines, thereby forming the maximum regions. To put it in another way, I sought to draw the line such that it cut all the previous lines.
After this realization, I tried to find out the number of regions that were being added after each new line was drawn. For example, when the first line is drawn, regions are formed.
When the second line is drawn, more regions are added to the figure. The regions shaded red are the newly added regions.
When the third line is drawn cutting the previous lines, more regions are added.
When the fourth line is drawn cutting the previous lines, more regions are formed.
Thus, we have now found out a pattern.
Generalizing, the addition of the line results into the formation of new regions. This is because when you draw the line cuting the previous lines, you add a total of regions.
This pattern can now be condensed into an Arithmetic Progression whose term represents the number of regions that are being added as each new line is drawn.
1st | 2nd | 3rd | 4th | 5th | nth |
2 | 2 | 3 | 4 | 5 | n |
Note that all terms except the first one are a part of this AP with common difference , so we add it separately. The total total number of terms in this AP are . The first term is . Apply the formula for the sum of an AP.
Maximum regions formed:
=
=
=
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
I think your table had a slight error. 1st line adds 1 region. (There is one region inside a circle with no lines, the first line splits this in two, so one is added)
Also, your 3rd picture makes no sense.
Nice formula, though.