What is the maximum number of regions into which 1 chord can divide a circle? 2 chords? 3 chords? 20 chords? Find an explicit equation relating the number of regions to the number of chords, n.
the formula for an explicit equation: f(n)=f(1)+d(n-1) the table created from this information shows a quadratic relationship so how would i create an explicit equation? I know there is a method called the brute force method but i do not know how to use it
Once you know it is quadratic, you have $f(n)=an^2+bn+c$. Compute $f(1), f(2), f(3)$. Now you can write $f(3)=a\cdot 3^2+b\cdot 3+c$ and two similar equations. Solve them simultaneously for $a,b,c$