A family of $n$ lines is drawn in the plane such that
each pair of lines cross and
no $3$ dinstinct lines have a point in common
Let $r(n)$ denote the number of regions into which the plane is partitioned by these lines. Evidently, $r(1) = 2$, $r(2) = 4$, $r(3) = 7$ and $r(4) = 11$.
To determine r(n) for all positive integers, it is enough to note that $$\begin{cases}r(1) = 2\\ r(n) = n+r(n-1)\text{ if }n>1\end{cases}$$.
I kind of get the concept of the problem, but I don't get how they came up with this recursive formula. Could someone explain this to me? Thanks!