I am trying to understand the cumulative binomial distribution.
If someone can help with this two questions I'll be grateful
What is the exact probability F of observing K or more successes when a success probability P is expected?
Can one write an analytical expression for F as a function of P, K, and NCan one Write a computer routine (MATLAB) that performs the computation of F?
Thanks!

The probability of having exactly $x$ successes is
$$ P(X = x) = {N \choose x}p^x(1 - p)^{N-x}. $$
Therefore, the probability of having $k$ or more successes is
$$ P(X \ge k) = \sum_{x=k}^NP(X = x) = \sum_{x=k}^N {N \choose x}p^k(1 - p)^{N-x}. $$
Unless you select very specific values of $N$ and $p$ I do not think there's a closed expression for this. In
MATLABthis is done with a simpleforloop over different values of $x$. Alternatively you can use the built-in functionbinocdf