For a given positive integer $n$, we consider the set $M$ of all intervals of the form $[l, r]$, where the integers $l$ and $r$ satisfy the condition $0 \leq l < r \leq n$. What largest number of elements of $M$ can be chosen so that each chosen interval completely contains at most one other selected interval? Proposed by Anton Trygub
Problem
Source: Kyiv City MO 2024 Round 2, Problem 11.3
Tags: combinatorics
10.02.2024 06:31
Noone on AoPS can solve this... sad...
02.03.2024 11:11
Could you provide any hint, please?
02.03.2024 11:23
MS_Kekas wrote: For a given positive integer $n$, we consider the set $M$ of all intervals of the form $[l, r]$, where the integers $l$ and $r$ satisfy the condition $0 \leq l < r \leq n$. What largest number of elements of $M$ can be chosen so that each chosen interval completely contains at most one other selected interval? Proposed by Anton Trygub We can choose the $n$ intervals of length $1$. If there are more than $n$ intervals there must be two intervals with the same leftmost point. One of the must contain the other.
02.03.2024 18:52
pi_quadrat_sechstel wrote: MS_Kekas wrote: For a given positive integer $n$, we consider the set $M$ of all intervals of the form $[l, r]$, where the integers $l$ and $r$ satisfy the condition $0 \leq l < r \leq n$. What largest number of elements of $M$ can be chosen so that each chosen interval completely contains at most one other selected interval? Proposed by Anton Trygub We can choose the $n$ intervals of length $1$. If there are more than $n$ intervals there must be two intervals with the same leftmost point. One of the must contain the other. Your solution assumes every interval can contain NO other intervals. But it can contain up to one other interval.
02.03.2024 19:53
For $0 \leq i \leq n-1$, there can be at most two intervals which begin at $i$ (if there were three, the largest interval would contain the two smaller ones). Thus, the upperbound is $2n$, attained by selecting $[i, i+1]$ twice for each $i$.
03.03.2024 01:38
ihatemath123 wrote: For $0 \leq i \leq n-1$, there can be at most two intervals which begin at $i$ (if there were three, the largest interval would contain the two smaller ones). Thus, the upperbound is $2n$, attained by selecting $[i, i+1]$ twice for each $i$. You can't select same interval twice, M is a set
04.03.2024 09:45