$\binom{n}{r}=\binom{n-1}{r}+\binom{n-1}{r-1}$ is a famous recursive equation for computing $\binom{n}{r}$, which means number of ways for selecting $r$ objects from $n$ objects.
I have read in high school the logical meaning of this formula.
I remember my teacher saying that in order to calculate number of ways of selecting $r$ objects from $n$ objects, we can either discard object at $r$ position using $\binom{n-1}{r-1}$, or we can include the object at $r$ position using $\binom{n-1}{r}$.
But I don't understand this logic now.
Can someone please explain me this with some example or any editorial?