平面分割:10 条直线最多分成多少区域
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.
解析
要使区域数最大,除“两两不平行”外还应让任意三条直线不共点(一般位置)。
此时第 条直线会与前 条直线产生 个交点,把自己分成 段,从而新增 个区域。
递推:,,因此
代入 得