What is the simplest way to find n in the equation
$$\sum_{i=8}^n {n \choose i} 0.3^i 0.7^{n-i} < 0.02$$
I can solve this programmatically n=16, or in a simpler for but I'm stuck here.
$$\sum_{i=0}^n 0.3^i 0.7^{n-i} - \sum_{i=0}^8 0.3^i 0.7^{n-i}\\=(0.3+0.7)^n - (0.3+0.7)^7$$ was my initial idea but it does not seem correct.
There are no binomial coefficients and the binomial theorem does not apply.
$\displaystyle \sum_{i=8}^n0.3^i0.7^{n-i}=\frac{0.3^80.7^{n-8}[1-(\frac{0.3}{0.7})^{n-7}]}{1-\frac{0.3}{0.7}}$