Find a recurrence relation for the number of regions created by n mutually intersecting circles on a piece of paper (no three circles have a common intersection point).
I need help understanding the answer to this
My work:
So after looking a while on firefox to help me figure this out. I've eventually found that the number of regions for the problem is
$n^2-n+2$ which I think is because of Euler's formula (r = e - v + 2). Am I incorrect? I'm not sure why it's $n^2$ can someone please explain?
I know the above is right for the number of regions because when I test with $n=2, n=3, n=4$ I get $ r = 4, r=8, r=14$ which when I double check by drawing the circles manually and seeing how many regions there are, I get the answers above.
so then I've found online that the recurrence relation to be $a_n=a_{n-1}+2(n-1)$ which is equivalent to $a_n=n^2-n+2$
But I don't know why this is.
Does $a_{n-1}$ represent the previous regions of $n-1$ circles? and does $2(n-1)$ represent the new regions added with each new circle?
Is the proper answer just $a_n=n^2-n+2$?
I'd really like to learn why $a_n=a_{n-1}+2(n-1)$ works and is (probably) the answer? In order to improve my understanding.