1. there is a convex polygon of size n (may not be regular). what is the maximum number of regions created inside it by all its diagonals. for example if n = 3 then region = 1 and n = 4 then region = 4.
2. there are n circles. what is the maximum number of regions created by their intersection. e.g. if n = 2, region = 3, n = 3 then region = 7.
can anyone describe some way to find these?
2 counting problems
Moderator: Board moderators
-
- A great helper
- Posts: 481
- Joined: Sun Jun 19, 2005 1:18 am
- Location: European Union (Slovak Republic)
Re: 2 counting problems
See Sloane's A002061. (The formula is f(n + 1) = 2n + f(n).)taskin wrote:2. there are n circles. what is the maximum number of regions created by their intersection. e.g. if n = 2, region = 3, n = 3 then region = 7.
-
- A great helper
- Posts: 481
- Joined: Sun Jun 19, 2005 1:18 am
- Location: European Union (Slovak Republic)
Re: 2 counting problems
It's similar to the problem 10213. Here you can find some hints:taskin wrote:1. there is a convex polygon of size n (may not be regular). what is the maximum number of regions created inside it by all its diagonals. for example if n = 3 then region = 1 and n = 4 then region = 4.
- - http://online-judge.uva.es/board/viewtopic.php?t=3196
- http://online-judge.uva.es/board/viewtopic.php?t=4244