So if I have a finite set $ S \subset \mathbb{R} $ that can be partitioned in any form into two subsets $ S_1, S_2 $ such that $ S = S_1 \cup S_2 $ and $ S_1 \cap S_2 = \emptyset $.
Can I form $ S_1, S_2 $ such that $ Var(S_1) > Var(S) $ and $ Var(S_2) > Var(S) $ where $ Var(X) = E( (X - E(X))^2 ) $?
There are obvious cases if we only care about the variance of one set's variance, but I can't prove it (or find a case true case) for boths sets having greater variance. I every wrote a program to run through 1000000 random cases and did not find any true cases.
Revised question per discussion below accepted answer:
Per aiden's request, I believe a better formulation of his question is as follows:
If I have a set $S$ of observations of a real-valued random variable, with variance $\sigma^2_S$, is there a partition of the observations into two disjoint subsets, $S_1$ and $S_2$, where each subset has a larger variance than the original pooled set: $\sigma^2_{S_1} \geq \sigma^2_{S_2} > \sigma^2_S$?
I am understanding your question to ask if such a partition exists, and not does a set exhibit this behavior for all partitions. We know that: $$ \begin{align} Var(aX + bY) &= a^2 Var(X) + b^2 Var(Y) + 2abCov(X, Y)\\ &= a^2 Var(X) + b^2 Var(Y) + 2ab\rho_{X, Y}\sigma_X\sigma_Y \end{align} $$ Now $\rho$ can be -1. So if $X$ is negatively correlated with $Y$, we can create cases where $Var(X \cup Y) \leq \min(Var(X), Var(Y))$
For example, try the following in R:
You get:
Update
If you do not allow multiple entries of the same value, try this: