There are several problems here.
let i : investor
I'm not sure what the colon is supposed to mean here. What are you trying to communicate here, in plain English?
let e : equal amount
You should be more specific than "equal amount". By "equal amount", do you mean "the amount each investor receives if the payout is split equally"? If so, write that out explicitly:
Let $e$ be the amount each investor receives if the payout is split equally.
let p : payout
Again, you should be more specific than "payout". Do you mean "the amount of money paid to each investor"?
Set of 5 investors : $s : \{i1,i2,i3,i4,i5\}$
It looks like you're giving the letter $s$ a second meaning here. You defined it as meaning "split" earlier, and now you're defining it as being the set of investors. If you have two different meanings, you need to use two different letters.
p(e) : 2M / 5 = $400'000
You haven't defined what the notation $p(e)$ means. Perhaps it would have been better to write that part out in prose instead of using notation:
If the payout is split equally, the amount received by each investor is $\$2,000,000 / 5 = \$400,000$.
As each investor receives an equal payment [...]
Hold on. We haven't been told that each investor receives an equal payment, so a proof that relies on this assumption is incorrect. Can you find a different proof which doesn't rely on this assumption?
[...] then at least 1 investor receives 400'000, in other words : $\forall(s)[e(i)] => p(400'000)$
Your notation doesn't make sense if I try to translate it back into prose. This reads as:
Suppose that for all $s$, the equal amount of the investor. Then payout of $400,000.
Write this out in plain English instead of notation, and then maybe we can find a way to convert it into clear notation.