I'm not sure how to best phrase this, so bear with me:
If you're given
abc = xyz
and
a+b+c = x+y+z
where a, b, c, x, y, z are all positive integers, is there a way to prove or disprove a = x, b = y, c = z?
I want to know if an integer shown in this way is unique.
Name:
Anonymous2009-05-29 1:19
Let me correct that: does the set {a, b, c} contain all the elements in the set {x, y, z} (and vice versa)?
I think it's probably false, but I don't have a contradiction yet. I do know that either a,b,c and x,y,z are the same sets, or they're totally disjoint, but that's not very helpful.
Name:
Anonymous2009-05-29 17:12
1+5+8 = 2+2+10 = 14
1*5*8 = 2*2*10 = 40
Name:
Anonymous2009-05-29 17:33
Moar counterexamples:
1 7 15
4 17 1
1 7 18
2 21 3
1 7 18
3 21 2
1 8 12
2 16 3
1 8 12
3 16 2
1 9 10
2 15 3
1 9 10
3 15 2
1 10 20
2 25 4
1 10 20
4 25 2
1 11 16
2 22 4
1 11 16
4 22 2
1 12 14
2 21 4
1 12 14
4 21 2
1 13 18
3 26 3
1 14 20
2 28 5
1 14 20
5 28 2
1 15 18
2 27 5
1 15 18
5 27 2
Name:
Anonymous2009-05-29 18:17
How did you come up with all of those?
Name:
Anonymous2009-05-29 19:34
>>8
Edit: That first set doesn't work. There's some bug in my program or something that's giving wrong solutions. :/
>>9
OK, suppose a \le b \le c and x\le y\le z are *different* sets of numbers with the property you want. Think of the two cubic polynomials with roots a,b,c and x,y,z:
f_1(t) = (t-a)(t-b)(t-c) = t^3 - p t^2+qt-r f_2(t) = (t-x)(t-y)(t-z) = t^3 - p t^2+q't-r
Where p = a+b+c, r = abc, and q=ab+bc+ca and q'=xy+yz+zx are two different numbers (if they were the same, then a,b,c and x,y,z would have to be the same). If you set them equal to each other, you get (q-q')t = 0, so the graphs only cross on the y-axis. Now if you sketch out what the graphs have to look like, keeping in mind how the graph of a cubic is shaped, you have to have
x < a < b < y < z < c
Now if we have a cubic with roots x,y,z, then for any other integer a, we can find another cubic with the same p and r that has a as a root by plugging in a and solving for q. Then the other two roots are the solutions of a quadratic, and if you're lucky, they're integers. Now the idea is just to write a program to loop through a crapload of possible values for x,y,z and a, and find some where b and c come out to be integers.
Name:
Anonymous2009-05-29 20:58
Since abc = xyz, both sides are composed of the same prime factors.
Let a := p_a1 * ... * p_an, b := p_b1 * ... * p_bn, c := p_c1 * ... * p_cn, with all p_ai, p_bi, p_ci being prime.
Then for a+b+c = x+y+z with {a,b,c} = {x,y,z} we get
But this can only be true if all prime factors p_a1*...*p_an and p_b1*...*p_bn, except for p_ai and p_bi are equal, which means that a and b merely switched places, but we didn't get two new numbers.
Let us prove by induction, no matter how often we switch prime factors, we'll always keep sums of the same products on both sides.
We've already proven that it's true for one switch, so let us assume it was true for n.
By our assumption the products stay the same after n-switches, thus after n-switches we still have a + b + c = a + b + c on both sides, and we can easily refer to our first case about one switch, which proves it for n+1.
I don't know if I'm right, but that's how I'd try it. Obviously, you need to know about the uniqueness of prime factorisation for that.
so as long the base field K we're working is a UFD, this implies K[x] is also a UFD, and so we have (without loss of generality) a=x,b=y,c=z.
Name:
Anonymous2009-06-13 11:43
>>17
Ah, what a nice proof. I knew you'd probably use the fact that the symmetric polynomials are the coefficients, but I didn't expect it to flow so nicely.