1,170 views
0 votes
0 votes
  1. Find the recurrence relation satisfied by $R_{n},$ where $R_{n}$ is the number of regions that a plane is divided into by $n$ lines, if no two of the lines are parallel and no three of the lines go through the same point.
  2. Find $R_{n}$ using iteration.

1 Answer

0 votes
0 votes
One line divide a plane in 2 region and two unparalleled lines divide a plane in 4 regions.

So,

a) $R_{n}=R_{n-1}+n$

Suppose, there are $R_{n-1}$ parallel lines, which divides the plane in $R_{n-1}$ regions.

and 1 unparallel line , cut each parallel line in 1 point, which add n more region in the plane.
edited by

Related questions

381
views
2 answers
1 votes
admin asked May 2, 2020
381 views
How many bit sequences of length seven contain an even number of $0s?$
203
views
0 answers
0 votes
admin asked May 2, 2020
203 views
Find a recurrence relation for the number of bit sequences of length $n$ with an even number of $0s.$
265
views
0 answers
0 votes
admin asked May 2, 2020
265 views
Find the recurrence relation satisfied by $S_{n},$ where $S_{n}$ is the number of regions into which three-dimensional space is divided by $n$ planes if every ... four of the planes go through the same point.Find $S_{n}$ using iteration.
264
views
0 answers
0 votes
admin asked May 2, 2020
264 views
a) Find the recurrence relation satisfied by $R_{n},$ where $R_{n}$ is the number of regions into which the surface of a sphere is divided by $n$ great ... of the great circles go through the same point.b) Find $R_{n}$ using iteration.