How to determine the value of a variable in a equation with powers I'm completely rusty on this How would be the way of determing the value of x in something like this 100 =(50)/((1 + x)^a) + (50)/((1 + x)^b) + (50)/((1 + x)^c) a, b, c are known but are fractions themselves so I put just these letters for the sake of simiplicity. I'm trying to do something like 100=50(−a log(1+x) and so on but to be fair I'm absolutely lost Thanks
Raiden Barr
Answered question
2022-10-20
How to determine the value of a variable in a equation with powers I'm completely rusty on this How would be the way of determing the value of x in something like this
a, b, c are known but are fractions themselves so I put just these letters for the sake of simiplicity. I'm trying to do something like and so on but to be fair I'm absolutely lost Thanks
Answer & Explanation
Taxinov
Beginner2022-10-21Added 18 answers
By setting , you are simply looking for a root of
Brianna Schmidt
Beginner2022-10-22Added 6 answers
Let us start with the function
As said before, a first change of variable allows to rewrite it as
which could already be handled easily; but we can make it nicer looking at the exponents ,, and notice that these exponents are in ratio ; so, for conveniency and to avoid fractional powers, let us define
so the equation write now
A good candidate for solving this polynomial is Newton method which, starting from a reasonable guess will update it according to
For your case, this gives the iterative scheme
We shall admit that we look for a positive solution of x, then of z; since the sum of three positive terms has to be equal to 2, we can easily bracket the solution using and which means that the solution we look for is such that
which is a quite narrow range. Since these numbers are rather close to 1, let us be lazy and start iterating at ; the following iterates are so obtained : 0.9230769231, 0.9095860491, 0.9092211895, 0.9092209302 which is the solution for ten significant figures. Now, back to x; the effective change of variable we made is
So, the simplest way is going to logarithms; from the value of z , we have the value of and then by exponentiation the value of x. For his case, we get
One last point to mention : equation f(z)=0 has two real roots while equation f(x)=0 has only one root. This is relevant from the change of variables and the negative root of f(z)=0 must be discarded. If there have been no such relations between coefficients a,b,c, the simplest would have been to solve
using Newton method starting from an appropriate guess deduced from the inequalities used here.