Given the following system of equations:
x + y + z x 2 + y 2 + z 2 x 3 + y 3 + z 3 = 1 = 2 = 3 ,
find the smallest positive integer value of n ( > 3 ) such that x n + y n + z n is an integer.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
suppose if the answer would have been 10 then one have to calculate till 10. isn't there an easy solution
Log in to reply
i also have this doubt
Not that I know of. If we know S 1 , S 2 and S 3 , we can easily compute P 1 0 with an Excel spreadsheet or other programming software.
There are 3 equations . And so the elementary symmetric poly need to be taken of order 3 .that is e3. So as your question the ans must not be 10. As we then we need e of order greater than 3. . Which can to be obtained from a poly of degree 3 . So the the problem will run only to p5. . The higher order can not be obtained
There is a small error in your solution. P2 = 2 not 3 (in the P4 line )
Can you explain the 4th and 5th line? How can you get P 4 = S 1 P 3 − S 2 P 2 + S 3 P 1 and P 5 = S 1 P 4 − S 2 P 3 + S 3 P 2 ?
Log in to reply
It is Newton's Sums method . For 3 variables x , y , z , when n > 3 , P n = S 1 P n − 1 − S 2 P n − 2 + S 3 P n − 3
Log in to reply
If we have 4 variables, does the equation become P n = S 1 P n − 1 − S 2 P n − 2 + S 3 P n − 3 − S 4 P n − 4 for n > 4 ?
Log in to reply
@Fidel Simanjuntak – Yes, if n > 4 . P 1 , P 2 , and P 3 follows that of 3 variables but P 4 = S 1 P 3 − S 2 P 2 + S 3 P 1 − 4 S 4 .
Log in to reply
@Chew-Seong Cheong – Thanks a lot! I understand it now. Thanks, sir.
I think a good way to solve the problem is to find the regular between dofferent answer
Let (LaTeX: a n = x n + y n + z n a n = a n − 1 + 2 a n − 2 + 6 a n − 3 . Rest is computational.
Problem Loading...
Note Loading...
Set Loading...
Let S 1 = x + y + z , S 2 = x y + y z + z x , S 3 = x y z and P n = x n + y n + z n .
Then, using Newton's Sums method:
⎩ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎨ ⎪ ⎪ ⎪ ⎪ ⎪ ⎪ ⎧ P 1 = S 1 = 1 P 2 = S 1 P 1 − 2 S 2 P 3 = S 1 P 2 − S 2 P 1 + 3 S 3 P 4 = S 1 P 3 − S 2 P 2 + S 3 P 1 P 5 = S 1 P 4 − S 2 P 3 + S 3 P 2 ⇒ 2 = 1 ( 1 ) − 2 S 2 ⇒ 3 = 1 ( 2 ) + 2 1 ( 1 ) + 3 S 3 = 1 ( 3 ) + 2 1 ( 3 ) + 6 1 ( 1 ) = 1 ( 6 2 5 ) + 2 1 ( 3 ) + 6 1 ( 2 ) ⇒ S 2 = − 2 1 ⇒ S 3 = 6 1 = 6 2 5 = 6 2 5 + 9 + 2 = 6
Therefore the smallest n > 3 such that x n + y n + z n is an integer is n = 5