I have stuck solving this problem of financial mathematics, in this equation: $$\frac{(1+x)^{8}-1}{x}=11$$
I'm stuck in this eight grade equation: $$x^{8}+8x^{7}+28x^{6}+56x^{5}+70x^{4}+56x^{3}+28x^{2}+9x-11=0$$
But I cannot continue past this. This quickly lead me to find a general way of solving equations of any degree, but I couldn't find anything serious on the internet.
Do you know any simple methods to solve equations of any degree?

In financial mathematics, you're looking at a problem of compound interest rates (over $\mathbf{n}$ compoundment periods), where $100x$ is the percentage interest rate or yield and $\mathbf{x}$ the relative accrual rate per period. When $n$ is the number of compoundment periods per year, $\mathbf{nx}$ is the nominal annual interest rate and $\mathbf{f(x)}$ is a unitless quantity comparing the growth over $\mathbf{n}$ periods with the growth over just one period, and is applicable for example on a fixed-rate mortgage when $n=12$. In this context, $\mathbf{x \cdot f(x)}$ is the equivalent yearly rate, also known as annual percentage rate (APR), annual equivalent rate (AER), and other various combinations of $$ \text{annual/-} \quad \text{effective/equivalent/-} \quad \text{interest/percentage/-} \quad \text{rate/yield} $$ (i.e. about 42 different wordings if we require at least one of the words 'annual', 'effective' or 'equivalent' -- to be clear what we're talking about --- but allow their order to be interchanged if using two).
Usually, the problem you are given does not have the $x$ in the denominator, making the problem easily solvable with logarithms and a ratio of future and present values. Most financial calculators have a way to solve this directly. There are surely good web resources as well. Once could program this in Javascript for use offline; someone probably already has. Without such a resource, or if programming it yourself, here's what you'd need (and don't need) to know about $f(x)$.
First some of the many alternate algebraic forms (for $x\in\mathbb{R}$ and $n\in\mathbb{Z}$ both positive): $$ \eqalign{ f(x) &=\frac{(1+x)^n-1}{x} =\sum_{k=1}^n \binom{n}{k} x^{k-1} } $$ and factorizations (also perhaps of interest to math majors): $$ \eqalign{ f(x) &=\frac{(1+x)^n-1}{(1+x)-1} =\prod_{k=1}^{n-1} \left(x+1- e^{\frac{2\pi ik}{n}} \right) =\prod_{1<d|n} \Phi_d \left(x+1\right) \cr &=\left(x+2\right)^{ \left\lfloor\frac{ n }2\right\rfloor -\left\lfloor\frac{n-1}2\right\rfloor} \prod_{k=1}^{ \left\lfloor\frac{n-1}2\right\rfloor} \left(x^2+\left(2\sin\tfrac{k\pi}{n}\right)^2(x+1)\right) \cr } $$ The first line gives the same form you gave as the starting point for this problem, i.e. the relative growth from $n$ compounding periods compared with the growth from one period. The second formula gives an expression for $f(x)$ as a monic polynomial of degree $n-1$, with the multipliers of the various powers of $x$ known as binomial coefficients.
The second line gives some alternate representations which are quite meaningful in the complex plane and in elementary number theory. These equations say that the roots of the polynomial $f(x)$ lie on a unit circle centered at $-1$ and are equally spaced to form a regular $n$-gon, with the exception of the removed root at $x=0$ in the denominator on the LHS. Each root $e^{\frac{2\pi ik}{n}}-1$ makes an angle of $\frac{2\pi ik}{n}$ with the positive real axis as it extends radially from $-1$. The formula on the RHS says that these roots can be grouped by the denominator of $\frac{k}{n}$ in lowest terms.
The third line performs a different grouping, into quadratic factors corresponding to pairs of complex conjugate roots, except for a linear factor $x+2$ for the root at $-2$ in case $n$ is even; this last optional bit is performed with the expression $\left\lfloor\frac{ n }2\right\rfloor -\left\lfloor\frac{n-1}2\right\rfloor =(n-1)- 2\left\lfloor\frac{n-1}2\right\rfloor$, which gives the remainder of $n-1$ modulo $2$, i.e. it is $0$ or $1$ depending on whether $n$ is odd or even. All coefficients here are again real, and all factors are irreducible over real fields. An interesting consequence of this, looking at $f(0)$, is that $$ \prod_{k=1}^{\left\lfloor\frac{n-1}2\right\rfloor} \sin^2\tfrac{k\pi}{n} =\frac{n}{2^{n-1}}. $$
Next, $f$ is increasing for $x>0$ and $n>1$, as can be seen from its derivative: $$ \eqalign{ f\,'(x) &=\frac{(x+1)^{n-1}\big((n-1)x-1\big)+1}{x^2} =\sum_{k=2}^n \binom{n}{k} (k-1)x^{k-2} } $$
Extra notes:
Finally, in your problem, $n=8$, so $f(x)=y=11>8$ has solution $x \approx 0.08928634$, or $8.93$%.
Here is an example solution using Newton's method and sage (online), which is correct to about ten places after the third iteration (and to about a hundred after the seventh!):