For ordered pair(s) of natural number ( x , y ) , we have
x 3 − y 3 = x y + 6 1 .
Find the sum of possible values of x y .
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.
Nice solution!
Also note that ( 3 d − 1 ) y 2 + d ( 3 d − 1 ) y + d 3 = 6 1 ⟹ d 3 < 6 1 ⟹ d = 1 , 2 , 3 . I believe this reduces the length of the solution.
Log in to reply
It does! A lot! I got caught up in trying to find all integer solutions (in which case I think some care is needed with the possibility of d or y being negative).
But of course the problem is about natural numbers, not all integers, so that's a valid and helpful shortcut.
Another possible solution would be to multiply the equation by 27 and subtract 1 from both sides in order to transform the left hand side to the form a 3 + b 3 + c 3 − 3 a b c which can then be factorized.
@Chris Lewis why x = y + d ?? This substitution is not intuitive
Log in to reply
That's a fair comment. I can only really say it comes from having seen these type of questions before and from trying different ideas. Introducing d breaks the symmetry of the problem, which sometimes helps. Seeing that it will lead to a quadratic in x whose discriminant we can use is also helpful (even a messy quadratic is easier to deal with than a cubic in general).
I still have a pretty limited toolset when it comes to Diophantine equations, but when it comes to showing there are a finite number of solutions to an equation, either reducing to a question about factorisations (finitely many divisors of a number) or discriminants (finitely many real solutions to a quadratic) often seems to help.
Modular arithmetic is less useful for this type of question, because you'll always end up finding zero or infinitely many possibilities. It can help with the reduction to simpler equations, though, with a bit of case analysis.
Of course, then there is brute-force, which I use quite often as well, though I'd always prefer to find an analytic solution where possible.
I hope that helps/is of interest - I'm always interested to learn more solution techniques, and the problems on this site are pretty useful for that.
Multiply the equation by 27 and subtract 1 from both sides, to obtain ( 3 x ) 3 + ( − 3 y ) 3 + ( − 1 ) 3 − 3 ( 3 x ) ( − 3 y ) ( − 1 ) = 1 6 4 6 . Note that the left hand side is of the form a 3 + b 3 + c 3 − 3 a b c = ( a + b + c ) ( a 2 + b 2 + c 2 − a b − b c − c a ) , and can be factorized as ( 3 x − 3 y − 1 ) ( 9 x 2 + 9 y 2 + 1 + 9 x y + 3 x − 3 y ) = 2 ⋅ 8 2 3 . Since ( 9 x 2 + 9 y 2 + 1 + 9 x y + 3 x − 3 y ) > ( 3 x − 3 y − 1 ) and 3 x − 3 y − 1 ≡ 2 ( m o d 3 ) , it follows that 3 x − 3 y − 1 = 2 and 9 x 2 + 9 y 2 + 1 + 9 x y + 3 x − 3 y = 8 2 3 .
Solving the two equations gives the only solution ( x , y ) = ( 6 , 5 ) ⟹ x y = 3 0 .
Very nice! This is a really good way of showing that the Diophantine equation will have finitely many solutions (finite number of factors → finite number of solutions).
One small typo - you should have 1 6 4 6 , not 1 6 4 2 .
1 2 3 4 5 6 |
|
substitue a=x-y and b=xy.Then, b = 3 a − 1 6 1 − a 3 plugging a=1 works and gives b=xy=30.The question says there's only one.so,that's our ans. We can check that too.b being natural 6 1 > a 3 gives a<4.These small cases can easily be checked.
1 2 3 4 5 6 7 8 9 |
|
Problem Loading...
Note Loading...
Set Loading...
It's - fairly - easy to search and find that ( x , y ) = ( 6 , 5 ) is a solution, giving the answer 3 0 .
A bit more interesting is to prove that the solution is unique.
Write x = y + d and substitute in to get
y 3 + 3 d y 2 + 3 d 2 y + d 3 − y 3 = y ( y + d ) + 6 1
Tidying and rearranging:
( 3 d − 1 ) y 2 + d ( 3 d − 1 ) y + d 3 − 6 1 = 0
[Edit: as per the comment from @Sathvik Acharya below, this solution could in fact stop here]
This is a quadratic in y . For it to have integer roots, the discriminant must be the square of an integer, ie
( d ( 3 d − 1 ) ) 2 − 4 ( 3 d − 1 ) ( d 3 − 6 1 ) = m 2 for some integer m .
Expanding, cancelling and factorising, this is m 2 = ( 3 d − 1 ) ( 2 4 4 − d 2 − d 3 ) .
The right-hand side must be positive; both bracketed terms have to have the same sign. This only happens when 1 ≤ d ≤ 5 (remember d - the difference of two integers - must be an integer).
Of these five cases, only d = 1 gives a perfect square for the discriminant, so we must have d = 1 .
Returning to the quadratic in y , we have 2 y 2 + 2 y − 6 0 = 0 with solutions y = − 6 and y = 5 . Both of these work in the Diophantine equation, but we are told to discard negative solutions; the unique solution in natural numbers is ( x , y ) = ( 6 , 5 ) .