I need to find x of this equation:
1.0221044505936159^x + 1.0446975079232772^x + 1.0677899723724409^x + 1.091392883061106^x + 1.1155175231229544^x + 1.140175425099138^x + 1.1653783764512973^x + 1.1911384251964328^x + 1.2174678856663448^x + 1.24437934439437^x + 1.2718856661322526^x + 1.3287357857717006^x + 1.3581067603002603^x + 1.3881269640841731^x + 1.4188107479794378^x + 1.3^x == 21
Most probably, it's not possible to solve it analytically but numerically...
I tried Mathematica, but the respond was like:
The equations appear to involve the variables to be solved for in an essentially non-algebraic way.
Any idea if there is a numerical solver online that could solve it? How about Matlab?
Using the information provided by @user1111261 in the comments, the question can more precisely be described as finding a solution to:
$$\sum_{i=1}^{16} (1.3^{i/12})^x = 21$$
Using some algebra, the summation can equivalently be written as
$$\sum_{i=1}^{16} (1.3^{i/12})^x = \sum_{i=1}^{16} 1.3^{ix/12} = \sum_{i=1}^{16} (1.3^{x/12})^i = \sum_{i=1}^{16} r^i, \quad (r = 1.3^{x/12})$$
This is a simple geometric series, so we can eliminate the summation and write it neatly as
$$\sum_{i=1}^{16} r^i = \frac{r^{17} - r}{r - 1}, \quad (r = 1.3^{x/12})$$
Since this has to equal $21$, we get
$$\frac{r^{17} - r}{r - 1} = 21 \ \Leftrightarrow \ r^{17} - r = 21r - 21 \ \Leftrightarrow \ r^{17} - 22r + 21 = 0, \quad (r = 1.3^{x/12})$$
This equation has three real roots: one at $r_1 = 1$, one negative root at $r_0 \approx -1.25$ and one positive root at $r_2 \approx 1.03$. I do not think you can find a nicer expression for this root $r_2$, but we need that root. We then get
$$1.3^{x/12} = r_2 \ \Leftrightarrow \ \frac{x}{12} \log 1.3 = \log r_2 \ \Leftrightarrow \ x = \frac{12 \log r_2}{\log 1.3}$$
So with one line in Mathematica,
We get the result