All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
A 2009 problem (Posted on 2006-08-27) Difficulty: 3 of 5
Find all integers p and q that satisfy p³+27pq+2009=q³.

See The Solution Submitted by K Sengupta    
Rating: 2.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts mathematica code | Comment 2 of 5 |
using the following mathematica code I've varified that
|p|>1000 and |q|>1000

Fnc[x_,y_]:=x^3+27*x*y+2009-y^3;
Lmt:=1000;
Sols:={};
For[a=0,a<=Lmt,a++,
    For[b=0,b<=Lmt,b++,
        If[Fnc[a,b]==0,
          Sols=Append[Sols,{a,b}];
          ];
        If[Fnc[a,-b]==0,
          Sols=Append[Sols,{a,-b}];
          ];
        If[Fnc[-a,b]==0,
          Sols=Append[Sols,{-a,b}];
          ];
        If[Fnc[-a,-b]==0,
          Sols=Append[Sols,{-a,-b}];
          ];
        ];
    ];
Sols

also if you consider solutions of the form |x|=|y| we can show that (-7,7) is the only one

if x=y we get
27x^2+2009=0
which has no real solutions

if x=-y we get
2x^3-27x^2+2009=0
(x+7)(2x^2-41x+287)=0

first factor gives Larry's solution of (-7,7) and the second factor gives no integer solutions.


Thus (-7,7) is the only solution of the form |x|=|y|

  Posted by Daniel on 2006-08-27 11:32:59
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (15)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information