Answer:
a) The recursion formula is
.
b)
.
Explanation:
a) Let us explore the recurrence. A plane with only one line is divided in two regions, so
. If we add another line under the restrictions of the problem,
.
Notice that each line intersects the other n-1 lines, because there are no parallel lines. Assume we have n-1 lines and
regions in the plane. If we add a new one we will have the previous
plus n new regions. Because, for each line crossed by the new one there are a new region. Therefore,
.
b) The method here is to develop the recurrence and find some pattern. Hence, using the formula for
,
and
we obtain
![R_n = R_(n-1)+n=R_(n-2) + (n-1) + n = R_(n-3)+(n-2) + (n-1) + n.](https://img.qammunity.org/2020/formulas/mathematics/high-school/k0mfafzmmfikine9mswnxgs32r7hrtyq7s.png)
Notice that for each step back in the recurrence we add a new term in th sum. If we repeat the procedure n-1 times we will have
![R_n = R_(n-3)+(n-2) + (n-1) + n = R_1 + 2+3+\cdots+(n-2) + (n-1) + n.](https://img.qammunity.org/2020/formulas/mathematics/high-school/430ndy7wq9lo8fkjr4yuuc0wp8owvrdfik.png)
Using that
:
![R_n = R_1 + 2+3+\cdots+(n-2) + (n-1) + n = 2 +2+3+\cdots+(n-2) + (n-1) + n.](https://img.qammunity.org/2020/formulas/mathematics/high-school/cqyo83lc52u2cvlulqltr7cfr77euwe9vl.png)
Here the smart step is to split the first 2 in 1+1, in order to obtain the sum of the first n natural numbers, and the expression for this last sum it is well known. Therefore,
![R_n = 1 +(1+2+\cdots+ (n-1) + n) = 1+(n(n+1))/(2).](https://img.qammunity.org/2020/formulas/mathematics/high-school/u76c2f4li6lf9fwhdudie7qdmo7efuk84i.png)