I am working on a probability problem which requires me to find a lower bound of a sum. The sum is $$\sum_{i=n}^{100}{100\choose i}\left(\frac{80}{100}\right)^i\left(\frac{20}{100}\right)^{100-i}\geq 0.9$$
How do I find $n$ here in order to satisfy the inequality? Wolfram Alpha cannot calculate it, but can we perhaps give an estimate?
Use Newton's Binomial Theorem! It says that:
$$(x+y)^k=\sum_{i=0}^k\binom{k}{i}x^iy^{k-i}$$
If $n$ were $0$, using $x=\frac{80}{100}$, $y=\frac{20}{100}$ and $k=100$ we'd have $(x+y)^k=1^{100}=1$, which already satisfies your desired inequality, $\geq 0.9$.
With the observation above, your sum may be rewritten as:
$$1-\sum_{i=0}^{n-1}\binom{100}{i}{\left(\frac{80}{100}\right)}^i{\left(\frac{20}{100}\right)}^{100-i}$$
so an equivalent problem is trying to find $n$ for which:
$$\sum_{i=0}^{n-1}\binom{100}{i}{\left(\frac{80}{100}\right)}^i{\left(\frac{20}{100}\right)}^{100-i}\leq 0.1$$
Perhaps this is easier to deal with for computers? An easy algorithm off the top of my head is to keep adding successive terms until the sum is higher than $0.1$, then stop and use the previous value of $n$.