first post on this website. I have a very basic question on computing a somewhat large computation. The equation to be solved is as follows: $$P(X<262) = \sum_{x=0}^{261} {5236 \choose x}p^{x}(1-p)^{5236-x}$$
I need to solve the RHS (p = 0.03) I haven't done this in a while so I'm a little rusty and not sure if I can simplify this using clever algebra or there are some tools online to solve this kind of routine stuff.
Also I am not sure if the poisson approximation is applicable or even useful. (n = 5236, so np = 157) I do not know R as of now.
Further clarification: If it is not apparent from the question, X is distributed Binomial(n,p) n = 5236, p =0.03 and I am trying to compute the probability that the '# of Heads' in 5236 'tosses' is less than 262.
Thank you for reading this wall of text!! Input much appreciated!!