Solving an equation involving surds

  • Thread starter chwala
  • Start date
In summary: Already your easier problem ##x^{1/3}+x^{1/9}=512## had no rational solution, so certainly no integer solution.So the trick doesn't always work. Closed formulas for ##u^n+ a_1u^{n-1} + \ldots + a_{n-1}u +a_n=0## can only be given up to ##n=4##. Hence there is a natural limit anyway. Your first two examples used the special shape of the original equation in order to get rid of the radicals which had a common divisor. This is not always possible.
  • #36
Such small examples with high powers are easy. ##n\longmapsto n^6## quickly exceeds ##66##, so ##u## can only be ##1## or ##2##. If we seek especially integer solutions, the fastest algorithm is certainly to check all possibilities.

Edit:

If we have an integer polynomial ##p(x)=x^n+a_1x^{n-1}+\ldots +a_{n-1}x+a_n## and a number ##z## is a zero, that means ##p(z)=0##, then we can write ##p(x)=(x-z)\cdot q(x)## with a polynomial ##q(x)## of degree ##n-1##. This means especially that ##z## divides the constant term ##a_n\, : \,z|a_n\,.##

So in your example of ##p(u)=u^6+u-66## we can only have divisors of ##66## as possible integer solutions. So regardless that ##4## and ##5## are already too big, they do not divide ##66## either.
 
Last edited:
  • Like
Likes chwala
Physics news on Phys.org
  • #37
My interest in on how we can come up with a solution from this step
##u^6+u=66##
##(u^2)^3+u=66## or ##(u^3)^2+u=66##
if let say ##u^2=m##, then it follows that,
## m^3+m^{1/2}-66=0##
Note
i already know that ##u=2##
i am just interested in how we can find the solution systematically...

##(u^3)^2+u=66##
##m^2+ m^{1/3}=66##
##m^2+m^{1/3}-66=0##
or
##u^6=66-u##
 
Last edited:
  • #38
Well, try the divisors of 66.

If there is an integer solution it is nice to find, but if there is not... try to find an exact solution to e.g. ##u^6+u=65##.
 
  • #39
so are we implying that we have no formula in the world to solve polynomials of degree more than 4. In particular ##u^6+u=66?##
 
  • #40
chwala said:
so are we implying that we have no formula in the world to solve polynomials of degree more than 4. In particular ##u^6+u=66?##
As fresh_42 said. There is no general formula to find the roots of any polynomial of degree greater than 4. Furthermore, this fact has been proven .

That does not mean that we can never find the roots, or even 1 root, of some particular degree 6 polynomial .
 
  • Like
Likes chwala
  • #41
SammyS said:
As fresh_42 said. There is no general formula to find the roots of any polynomial of degree greater than 4. Furthermore, this fact has been proven .

That does not mean that we can never find the roots, or even 1 root, of some particular degree 6 polynomial .

thanks... so finding these roots is by trial and error method and by use of graphs? and its long since i refreshed on numerical methods, are there no numerical methods that may give an approximate solution if not exact?
 
  • #42
chwala said:
thanks... so finding these roots is by trial and error method and by use of graphs? and its long since i refreshed on numerical methods, are there no numerical methods that may give an approximate solution if not exact?
There is, and probably more than one. An easy one is by Newton's method:
https://en.wikipedia.org/wiki/Newton's_method

Btw., this algorithm can be used to calculate (square) roots manually.
 
  • #43
fresh_42 said:
There is, and probably more than one. An easy one is by Newton's method:
https://en.wikipedia.org/wiki/Newton's_method

Btw., this algorithm can be used to calculate (square) roots manually.

yeah, i remember studying that ,plus other methods like runge kutta method ... Anyway, are you able to try solve my problem using the approximate method(s), you've just mentioned?
 
  • #44
SammyS said:
As fresh_42 said. There is no general formula to find the roots of any polynomial of degree greater than 4. Furthermore, this fact has been proven .
There are formulas that rely on infinite fractions or similar things. There is no general formula that would produce an algebraic solution (using only roots and things like that).
 
  • Skeptical
Likes chwala
  • #45
chwala said:
yeah, i remember studying that ,plus other methods like runge kutta method ... Anyway, are you able to try solve my problem using the approximate method(s), you've just mentioned?
Sure, but why? Choose ##x_0=1## and create the sequence in the article for ##f(x)=x^6+x-66##. What didn't you understand?
 
  • Skeptical
Likes chwala
  • #46
fresh_42 said:
Sure, but why? Choose ##x_0=1## and create the sequence in the article for ##f(x)=x^6+x-66##. What didn't you understand?

ok mate i hear you...The Newton- Raphson method cannot be used on this problem...
my perspective is let
##f(x)= x^6+x-66##
put say ##x=o##
##f(0)=-66##
##f(1)=-64##
##f(-1)=-66## and ##f^{''}(x)=30x^4## there is no convergence as the iterations are going to increase(diverge)... mythoughts
 
Last edited:
  • #47
Did you actually calculate it or why did you dismiss it?

##f'(x)=6x^5+1##
f(0)=-66, f'(0)=1, so our next point is 66.
f(66)=82653950016, f'(66)=7513995457, the ratio is 11, so our next point is 66-11=55.
The following points are approximately 45.8, 38.2, 26.5, ... you get 2.0027 after 22 steps and 2.0000090 after 23 steps.

0 is very poor choice for the starting point but it still converges to one of the solutions.
 
  • Like
Likes chwala
  • #48
fresh_42 said:
Sure, but why? Choose ##x_0=1## and create the sequence in the article for ##f(x)=x^6+x-66##. What didn't you understand?
mfb said:
Did you actually calculate it or why did you dismiss it?

##f'(x)=6x^5+1##
f(0)=-66, f'(0)=1, so our next point is 66.
f(66)=82653950016, f'(66)=7513995457, the ratio is 11, so our next point is 66-11=55.
The following points are approximately 45.8, 38.2, 26.5, ... you get 2.0027 after 22 steps and 2.0000090 after 23 steps.

0 is very poor choice for the starting point but it still converges to one of the solutions.

i will take time during the december holidays and refresh on this...they're not difficult. I just need to create time and do some reading. Bingo
 
  • #49
fresh_42 said:
You have ##x^{1/2}+x^{1/3}=12## which is not the same as ##x^{1/6}=12x^{1/3}-1##.

Again, what do you get from ##x^{1/2}+x^{1/3}=12## if ##u=x^{1/6}##?
just trying to go through my previous working...what of using the approach of,
##x^{1/2} + x^{1/3} = 12##
then,
##x^{1/6}+ 1 = 12x^{-1/3}##
on squaring both sides, we get;
##x^{1/3} + 2x^{1/6} + 1= \frac{144}{x^{2/3}}##
##x + 2x^{5/6} + x^{2/3}= 144##
##x^{6/6}+ 2x^{5/6} + x^{4/6}= 144##
letting ##x^{1/6}=p##
it follows that,
##p^6+2p^5+p^4=144##
on solving numerically, we get
##p=2## bingo...
 
Last edited:
  • #50
chwala said:
if ##u = x^{1/6}##
then, we shall have, ##u^3+u^2=12##
##u^2(u+1)=12##
The factorization on the left side doesn't do you any good. Factorization is useful if you have a product of factors on one side, and zero on the other.
 
  • #51
chwala said:
just trying to go through my previous working...what of using the approach of,
##x^{1/2} + x^{1/3} = 12##
then,
##x^{1/6}+ 1 = 12x^{-1/3}##
on squaring both sides, we get;
##x^{1/3} + 2x^{1/6} + 1= \frac{144}{x^{2/3}}##
##x + 2x^{5/6} + x^{2/3}= 144##
##x^{6/6}+ 2x^{5/6} + x^{4/6}= 144##
letting ##x^{1/6}=p##
it follows that,
##p^6+2p^5+p^4=144##
on solving numerically, we get
##p=2## bingo...
This is too complicated and I'm not sure whether it is right.

You set ##p=x^{1/6}## anywhere in the calculation. I see no reason why you don't do it from the start.
##x^{1/2}=p^3\, , \,x^{1/3}=p^2##
 
  • #52
fresh_42 said:
This is too complicated and I'm not sure whether it is right.

You set ##p=x^{1/6}## anywhere in the calculation. I see no reason why you don't do it from the start.
##x^{1/2}=p^3\, , \,x^{1/3}=p^2##
It should be correct, even by using factor theorem by letting ##f(p) = 0##, should realize the value of ##p ## and consequently find ##x## as required.
 
  • #53
fresh_42 said:
This is too complicated and I'm not sure whether it is right.

You set ##p=x^{1/6}## anywhere in the calculation. I see no reason why you don't do it from the start.
##x^{1/2}=p^3\, , \,x^{1/3}=p^2##
I am just trying to use a different approach, that's the beauty of Math...of course your approach is straightforward...
 
  • #54
If you are going to use a numerical method to find solutions, there's no reason to turn it into a polynomial in the first place, other than maybe avoiding awkwardness where the method tries to take you to a negative number.
 
  • Like
Likes chwala
  • #55
I think there is a wrong step somewhere, I'll check this tomorrow...

i just checked. Working is 100% correct.
 
  • #56
chwala said:
I am just trying to use a different approach, that's the beauty of Math...of course your approach is straightforward...
You made ##p^6+2p^5+p^4=144## out of the equation. But this is ##p^3+p^2=12## squared. You can as well get ##p^3+p^2=12## directly from the first line. To guess ##p=2## is even easier from the unsquared equation. Now, with ##p=2## you can calculate ##f(p):=(p^3+p^2-12)\, : \,(p-2)## and get the other solutions from ##f(p)=0.##
 
  • Like
Likes chwala
  • #57
fresh_42 said:
You made ##p^6+2p^5+p^4=144## out of the equation. But this is ##p^3+p^2=12## squared. You can as well get ##p^3+p^2=12## directly from the first line. To guess ##p=2## is even easier from the unsquared equation. Now, with ##p=2## you can calculate ##f(p):=(p^3+p^2-12)\, : \,(p-2)## and get the other solutions from ##f(p)=0.##
That's true Fresh, the question is, 'if a student was to use this approach', would he be penalised for his approach? also your approach may be similar to mine, just a different substitution if you get what i mean..you used ##u ##= ##x^{1/6} ## which realizes a polynomial of degree ##3##...
 
  • #58
chwala said:
That's true Fresh, the question is, 'if a student was to use this approach', would he be penalised for his approach?
Depends on the penalty. An equation ##x^3=a## has three solutions, ##x^6=a^2## has six! If you take all these six solutions and check which ones do actually satisfy the given equation and come up with the remaining three, then it is a deviation, but still correct.

Always remember that ##f(x)=c \Longrightarrow \ldots \Longrightarrow c \in \{c_1,\ldots,c_n\}## is only the necessary part. It does not say that ##f(c_k)=0##. Sufficiency has to be considered. And squaring is a one-way process. E.g. ##x+2=3## results in ##x=1## and ##1+2=3## is so obvious, that we do not have to check it. However, ##(x+2)^2=x^2+4x+4=3^2=9## yields ##x\in \{-5,1\}## but ##-5+2\neq 3.##
 
  • Like
Likes chwala
  • #59
I find this thread confusing. First, in post #1:
chwala said:
Homework Statement:: Find ##x##,
if ##x^{0.5}+x^{1/3}=12##
Relevant Equations:: surds
##x^{1/6}=12x^{1/3}-1##
The ##~x^{1/2}+x^{1/3}=12~## became ##~x^{1/6}=12x^{1/3}-1~##.
Then, in post #4,
chwala said:
...yeah the equation is supposed to be;
##x^{1/6}##=##12x^{-1/3}-1##. i thought of that substitution,
i thought of,
##x^{({1/2})({1/3})}=12x^{-1/3}-1##
the ##~x^{1/6}=12x^{1/3}-1~## became ##x^{1/6}=12x^{-1/3}-1##
I do not know which of the two is the actual equation of interest.
 
  • #60
kumusta said:
I find this thread confusing. First, in post #1:

The ##~x^{1/2}+x^{1/3}=12~## became ##~x^{1/6}=12x^{1/3}-1~##.
Then, in post #4,

the ##~x^{1/6}=12x^{1/3}-1~## became ##x^{1/6}=12x^{-1/3}-1##
I do not know which of the two is the actual equation of interest.
The question of interest is on post ##1## the question was discussed and a solution found by post##12## (check post ##12##), The author posed a question asking "what ##u## was' given the terms ##4⋅3=12##... from here it was clear that our ##u=2##
The other posts following this solution was a general discussion on similar kind of problems...

Now looking at post ##51##;
I was attempting to solve the problem in post##1##, from a different perspective, you can follow the discussions after my post ##51## onwards. Do note that, consequently the numerical value of my ##p## in post ##51 ## is equivalent to the numerical value of ##u## in post ##12##. I hope its clear now.
 
Last edited:
  • #61
fresh_42 said:
Yes, and ##12=12\cdot 1 = 6 \cdot 2 = 4 \cdot 3##. Which one do we get for ##u##?
sorry for not seeing then, ...##u=2##
 
  • #62
@chawala
Thanks for the explanation.
 

Similar threads

Back
Top