Suppose we have a random variable X with binomial distribution B(n, p). I'm interested in the probability P(X ≥ E[X]). In particular, is there some inequality for how this probability changes as n and p grow? Is there some lower and upper bound for this probability? I was not able to find any resource on this topic.
For context, I am using some probabilistic computational model and I'm trying to see how it behaves as n (the size of the input) grows.
Since $E(X)=np$ for binomial, $P(X\gt np)=\sum\limits_{k=m}^n \binom{n}{k}p^k(1-p)^{n-k}$, where $m=\lfloor np\rfloor +1$.