Given a binomial distribution with $n$ expeiments, where probability of success is $p$. $\text{prob}(x=k) = \binom{n}{k} p^k (1-p)^{n-k}$
I'm trying to show that for odd values of $n\geq 3$, $p > .5$, we always have:
$$ \text{prob}(x > n/2) > p $$
where $\text{prob}(x > n/2) = \sum_{k=\lfloor n/2 \rfloor+ 1}^n \binom{n}{k} p^k (1-p)^{n-k}$
What I tried: I tried to expand $(p + q)^n = 1$ where $q=1-p$, and argue the sum second half of the terms is greater than $p$. But other than the trivial case of $p=.5$, seems like my argument is not really useful.
I appreciate any help to prove or disprove this claim.

I will slightly adapt notation for convenience. Denote $X_i \in \{-1,1\}$ i.i.d. Bernoulli random variables with $P(X_i=1) = p$ and $P(X_i=-1) = 1-p$, where $0.5<p<1$ and $S_n = \sum_{i=1}^nX_i$. Then we are proving $P(S_{2m+1}\geq 1)>p$ for all $m>0$.
To start with, notice that $S_{2m+1}$ only assumes odd integer values and $S_{2m+1}=S_{2m-1}+X_{2m}+X_{2m+1}$. Therefore, $S_{2m+1}\geq1$ precisely if either $S_{2m-1}>1$, or $S_{2m-1}=-1\land X_{2m}=X_{2m+1}=1$, or $S_{2m-1}=1\land X_{2m}+X_{2m+1}\geq0$. With this insight, we deduce the following recursive expressions \begin{align} P(S_{2m+1}\geq 1) &=P(S_{2m-1} >1) + P(S_{2m-1} = -1)p^2 + P(S_{2m-1} = 1)(1-(1-p)^2) \\ &=P(S_{2m-1} \geq 1) + P(S_{2m-1} = -1)p^2 - P(S_{2m-1} = 1)(1-p)^2, \end{align} where we used $P(S_{2m-1} >1)+P(S_{2m-1} =1)=P(S_{2m-1} \geq1)$. Inserting $P(S_{2m-1} = 1)(1-p) = P(S_{2m-1} = -1)p$ (which can be verified via evaluating the binomial distribution), we obtain $$ P(S_{2m+1}\geq 1) = P(S_{2m-1}\geq 1) + P(S_{2m-1} = 1) (2p-1)(1-p) > P(S_{2m-1} \geq 1). $$ Since $P(S_1 \geq 1) = p$, the claim follows.