Solve 3 Integer Puzzle: a^3+b^3=17c^3

  • Thread starter Thread starter IndustriaL
  • Start date Start date
AI Thread Summary
The discussion revolves around finding three integers a, b, and c that satisfy the equation a^3 + b^3 = 17c^3. Participants explore the implications of 17 being a prime number and suggest that a brute-force search using Mathematica may not yield results, as no solutions were found under 5000. They discuss algebraic methods and modular arithmetic to derive conditions on the integers, noting that trivial solutions should be excluded. There is speculation about the relationship to Fermat's theorem and whether a proof exists for the non-existence of solutions. The conversation highlights the complexity of the problem and the interest in number theory.
IndustriaL
Messages
13
Reaction score
0
I want to find three integers, a b and c, with a^3 + b^3 = 17 * c^3.
all each the smallest integer possible
 
Mathematics news on Phys.org
you could factor a^3+b^3 for a start, I suppose. 17 being prime must divide one of the factors. we can also suppose that a,b a nd c have no common factors.
 
Well I like Number Theory too. Before I start coding this into Mathematica in a brute-force search, you know, (1,1), (1,2),. . . (2,1),(2,2), . . . I suppose there is no algebraic method for doing so? And while I'm at it, why not just search for the relation involving an arbitrary prime instead of 17 and then see if any conclusion can be drawn say for the first 100 primes.
 
Assuming your not looking for the trivial solution (0,0,0) and other trivial solutions like (1, -1, 0). Then mathematica can't find a single instance where it is true.
 
there are algebraic ways of factoring such things in number fields, though i don'y know much about them - they are of elementary (in the sense of important) interest in algebraic number theory.

you can also get conditions on a,b and c by considering it modulo some inetger. eg doing so mod 8 the cubic remainders are 0,1,3,5,7 and we need

a^3+b^3=c^3 mod 8

so that the only non trivisl way to do it is to have a^3=1,b^3=7 mod 8 or a^3=3, b^3=5 mod 8 or a^3=b^3=c^3=0 mod 8
 
Last edited:
Zurtex said:
Assuming your not looking for the trivial solution (0,0,0) and other trivial solutions like (1, -1, 0). Then mathematica can't find a single instance where it is true.

Why not Zurtex? I respect you and Matt's opinions but I'm stubborn. You mind if I check?
 
perhaps zurtex checked it in mathematica?

i meant to say, that the case a^3=b^3=c^3 can be dismissed as trivial since it implies that all of a,b,c are even thus it is not a "primitive" solution, but i forgot the cases

a^3=0 and b^3=c^3 mod 8
 
looking mod 7 i think we find that 7 divides c and a^3 and b^3 are +/-1 mod 7 and mod 17 that a+b=0
 
Alright, I'd like to qualify Zurtx's statement if I may: Mathematica cannot find any value of a and b under 5000 which satisfy the equation. Frankly, if I had access to a faster PC I'd run it up to a million at least as well as optimize my algorithm. It kinds looks like it's related to Fermat's theorem. Is there a proof that there is no solution?

Wait, he did say integers. Need to check some negative numbers too. Didn't say I was good in Number Theory, only that I'm interested in it. :smile:
 
Last edited:
  • #10
saltydog said:
Alright, I'd like to qualify Zurtx's statement if I may: Mathematica cannot find any value of a and b under 5000 which satisfy the equation. Frankly, if I had access to a faster PC I'd run it up to a million at least as well as optimize my algorithm. It kinds looks like it's related to Fermat's theorem. Is there a proof that there is no solution?
Actually I just used the FindInstance function for c > 0 and then for c < 0.
 
  • #11
Zurtex said:
Actually I just used the FindInstance function for c > 0 and then for c < 0.

FindInstance? Suppose that's a 5.0 feature. I have 4.1.

IndustriaL, where you got this anyway? I'd like to see some closure in the matter. You know Richard Guy has a nice book out, "Unsolved Problems in Number Theory". Don't suppose anything like this is in there?
 
  • #12
i suspect if you have a basic knowledge of cubic number fields then the answer is known - we can do it for quadratics in quadratic number fields.
 
  • #13
matt grime said:
i suspect if you have a basic knowledge of cubic number fields then the answer is known - we can do it for quadratics in quadratic number fields.

Very well Matt. I'll leave it there.
 
  • #14
i say that but i am only guessing from the results about when we can solve x^2-dy^2=something; i don't have any knowledge of this at all.
 
Back
Top