HMMT 二月 2000 · POW 赛 · 第 19 题
HMMT February 2000 — POW Round — Problem 19
题目详情
英文原题
- Supp ose we have n lines in a plane in general p osition, which means that none areparallel to each other and that no three of these lines in terse t at a single p oin t. Findthe number of regions that these lines divide the plane in to...
(a) in a re ursiv e form.
(b) in a nonre ursiv e form ula.
解析
条一般位置直线将平面分割成的区域数。
(a) 递推形式: ,。
(b) 闭形式: 。
。
英文解析
lines in general position (no two parallel, no three concurrent). Find the number of regions formed.
(a) Recursive form: Adding the -th line, it intersects the previous lines at distinct points, dividing the new line into segments. Each segment splits an existing region, adding new regions.
(b) Closed form: Solving the recurrence:
.