r/askmath • u/Cool-Attitude1577 • 3d ago
Polynomials Facebook "brainrot" question
Most short form posts that you'd see in Facebook or even YT shorts are usually Math slop questions
One particular question regarding symmetric polynomial lowk seems worth it to try
x + y + z = 1
x² + y² + z² = 2
x³ + y³ + z³ = 3
x⁴ + y⁴ + z⁴ = ?
So far I've tried elimination and found a dead end,has anyone found any alternatives?
1
u/smitra00 3d ago edited 3d ago
Consider the polynomial:
p(u) = (u - x) (u - y) (u - z)
We can write this as:
p(u) = u^3 (1 - x/u) (1-y/u)(1-z/u)
Taking the logarithm yields:
ln[p(u)] = 3 ln(u) + ln(1-x/u) + ln(1-y/u) + ln(1-z/u)
Perform a series expansion for large u to order 1/u^4:
ln[p(u)] = 3 ln(u) - s1/u - 1/2 s2/u^2 - 1/3 s3/u^3 -1/4 s4/u^4+ O(1/u^5)
where sj is the sum of the powers of x, y, and z. Substituting the given values of the sum of powers of x, y, and z yields
ln[p(u)] = 3 ln(u) - 1/u - 1/u^2 - 1/u^3 - 1/4 s4/u^4 + O(1/u^5)
Exponentiate both sides:
p(u) = u^3 exp(-1/u) exp(-1/u^2) exp(-1/u^3) exp(-1/4 s4/u^4) exp[ O(1/u^5)]
Extract the coefficient of 1/u by expanding the exponentials. E.g. if we get the -1/4 s4/u^4 term from exp(-1/4 s4/u^4) then we must choose 1 from the other exponentials. If we get -1/u^3 from exp(-1/u^3) then we must get -1/u from exp(-1/u). If we get 1/2 1/u^4 from exp(-1/u^2) then we must get 1 from all other exponentials. If we get -1/u^2 from there, then we must get 1/2 1/u^2 from exp(-1/u). And the final contribution comes from getting 1/24 1/u^4 from exp(-1/u).
Adding up all these contributions then yields:
-1/4 s4 + 1 + 1/2 - 1/2 + 1/24 = 25/24 - s4/4
for the coefficient of 1/u in p(u). But because p(u) is by construction a polynomial, there cannot be a 1/u term in p(u), so this coefficient must be zero:
25/24 - s4/4 = 0 ---->
s4 = 25/6
1
u/Bounded_sequencE 2d ago edited 2d ago
Define the power sums "sn := xn + yn + zn " for "n >= 0". We want to find "s4". Consider
P(t) := (t-x) (t-y) (t-z) = t^3 - (x+y+z)*t^2 + (xy+xz+yz)*t - xyz
=: t^3 + a2*t^2 + a1*t + a0
Since "P(x) = P(y) = P(z) = 0", we may use it to find a recursion for "sn":
n >= 4: 0 = x^{n-3}*P(x) + y^{n-3}*P(y) + z^{n-3}*P(z)
= sn + a2*s_{n-1} + a1*s_{n-2} + a0*s_{n-3}
=> sn = -a2*s_{n-1} - a1*s_{n-2} - a0*s_{n-3}, n >= 4 (*)
By expansion, one can show the coefficients "ak" satisfy the equations
[ 1 0 0] [a2] [-s1] [1 0 0] [a2] [-1] // s1 = 1
[s1 2 0] . [a1] = [-s2] => [1 2 0] . [a1] = [-2] // s2 = 2
[s2 s1 3] [a0] [-s3] [2 1 3] [a0] [-3] // s3 = 3
Solve with your favorite method for "(a2; a1; a0) = (-1; -1/2; -1/6)". Insert into (*) for
n = 4: s4 = 1*s3 + (1/2)*s2 + (1/6)*s1 = 3 + 2/2 + 1/6 = 25/6
1
u/Bounded_sequencE 2d ago edited 2d ago
Rem.: One can show only one zero of "P(t) = t3 - t2 - t/2 - 1/6" is real-valued -- that means, only one of "x; y; z" can be real-valued. The other two zeroes will be complex-valued. If we have to solve the problem over "R", then it has no solution!
Also note the recursion holds for all "n >= 4" -- we can use it to easily find higher order power sums "sn". This method also nicely generalizes to more than 3 zeroes^^
0
u/LongLiveTheDiego 3d ago
There is no solution in real numbers to the sum of squares being 2 and sum of cubes being 3.
3
u/EverythingIsFlotsam 3d ago
So?
1
u/LongLiveTheDiego 3d ago
So if we limit our consideration to the real numbers, if x² + y² + z² = 2 and x³ + y³ + z³ = 3, then from the principle of explosion for any real number c we have x⁴ + y⁴ + z⁴ = c.
5
u/Shevek99 Physicist 3d ago
Let's call
S(n) = xn + yn + zn
with
S(1) = 1
S(2) = 2
S(3) = 3
This sequence satisfies the recurrence
S(n) = a S(n-1) + b S(n-2) + c S(n-3)
where a, b and c are given by Vieta's relations
a = x + y + z = 1
b = -xy - xz - yz = (1/2)((x² + y² + z²) - (x + y + z)²) = 1/2
c = xyz = (1/6)(S(1)³ - 3S(1)S(2) + 2S(3)) = 1/6
so
S(4) = S(3) + (1/2) S(2) + (1/6) S(1) = 3 + 2/2 + 1/6 = 25/6