I need to evaluate the following expression to determine the failure rate of an ensemble of classifiers. Basically it is the total probability of failure of more than 12 classifiers with each having error rate as e. In my case e = 0.35. $$\sum_{i=13}^{i=25} {{25}\choose{i}} e^{i}(1-e)^{25-i} $$
I could only simplify it to following expression but not of much use. $$1 - \sum_{i=0}^{i=12} {{25}\choose{i}} e^{i}(1-e)^{25-i} $$
The value comes out as ~0.06 using computer code for e = 0.35. Is there any way to evaluate the expression without resorting to programming. A close guess would be also appropriate. This is the link to a similar question, though I couldn't adapt it to solve mine.