平面分割
Plane Partition
题目详情
用 10 条两两不平行的直线来分割平面。问:最多能把平面分成多少个互不相交的区域?(例如 1 条直线能分成 2 个区域。)
英文原题
Determine the maximum number of disjoint regions into which the plane can be divided by non-parallel lines. For instance, a single line divides the plane into regions.
解析
要使区域数最大,除“两两不平行”外还应让任意三条直线不共点(一般位置)。
此时第 条直线会与前 条直线产生 个交点,把自己分成 段,从而新增 个区域。
递推:,,因此
代入 得
英文解析
In order to maximize the number of areas, any three straight lines should not be common (general position) in addition to "two two not parallel".
At this point, the line will create intersections with the previous lines, dividing itself into segments, thus adding areas.
Recursion: , , therefore
Substitute to get