Community

Want to learn how to tackle those tough MATHCOUNTS and AMC counting and probability problems? Check out Art of Problem Solving's Introduction to Counting & Probability by David Patrick.
Login Register Memberlist Search AoPS Blogs Contests Galleries Forum Index
The time now is Thu Nov 26, 2009 8:31 pm
All times are UTC - 8
View posts since last visit
View unanswered posts
Proof for the problem x^5 - y^2 = 4
Moderators: Pre-Olympiad Moderators
Post new topic   Reply to topic View previous topicView next topic
13 Posts • Page 1 of 1
Author Message
ejiant
New Member
New Member

Offline
Joined: 25 May 2003
Posts: 4

To rate posts you must be logged in
#1
Proof for the problem x^5 - y^2 = 4

I may have proof here.

-y^2 = 4 - x^5
y^2 = x^5 - 4
y = sqrt(x^5 - 4)
sqrt(x^5 - 4) must be an integer.

In order for a number to have an integer square root, each of prime factors must have an even number (i.e. 2^2 * 3^2 * 5^6) . That is because the primes must be able to be split in half.

So I don't have to keep on typing x^5, let z = x^5.

Let's assume that sqrt(z) is an integer.

Therefore, if sqrt(z-4) were to still to have an integer square root, the subtraction of 4 must have taken out two prime numbers, p. // Edit: I'm not sure, but this logic might not be sound.

Edit 2: Nope. Drats. There goes my proof.

Edit 3: Well, I think I may have another solution.
z and z-4 must both be perfect squares.
1, 4, 9, 25, etc. are perfect squares.
The differences between these squares is an arithmetic series with a cd of 2, starting at 3. Therefore, z and z-4 can never both be perfect squares.


Ignore
-----------------

z-4 = z/(p^2)
z = z/(p^2) + 4
zp^2 = z + 4p^2
zp^2 - 4p^2 - z = 0
(z-4)p^2 - z = 0
Therefore, it is a quadratic equation where a = (z-4), b = 0, and c = -z

In order for the quadratic equation to have a real solution, sqrt(b^2 - 4*a*c) must be >= 0.

sqrt(b^2 - 4*a*c) here is sqrt(0 - 4*(z-4)(-z))
sqrt(0 - (4z-16)(-z))
sqrt(0 - (-4z^2 + 16z))
sqrt(4z^2 - 16z)
If 4z^2 - 16z must be greater or equal to 0,
4z^2 >= 16z.
z^2 >= 4z
z >= 4

The whole quadratic equation for (z-4)p^2 - z would be
0 + (can't be minus) sqrt(4z^2 - 16z)/(2*(z-4))
sqrt(4z^2 - 16z)/(2z-8)
Square both the numerator and denominator:
(4z^2 - 16z)/(4z^2 - 32z + 64)
4z^2 - 16z > 4z^2 - 32z + 64
-16z > -32z + 64
-16z > 64 - 32z
16z > 32z - 64
0 > 16z - 64
64 > 16z
4 > z

Proof by contradiction.


I'm a freshman in highschool, so please forgive any problems I have with presenting a proof.

I also hope I didn't make a silly arithmetic error, screwing my whole proof up. Confused

PostPosted: Sun May 25, 2003 8:39 pm  Back to top 
  ProfilePM
yoyo
New Member
New Member


Offline
Joined: 26 May 2003
Posts: 3
Location: NoVA

To rate posts you must be logged in
#2
The only residues of x^5 (mod 11) are 0, 1, -1.

The quadratic residues modulo 11, or the possible values of y^2 (mod 11), are 0, 1, 4, 9, 5, 3.
So the possible values of y^2 + 4 (mod 11) are 4, 5, 8, 2, 9, 7.

So x^5 cannot equal y^2 + 4 (mod 11), and x^5 - y^2 = 4 (mod 11) has no integer solutions. Hence, x^5 - y^2 = 4 has no integer solutions.


I found 11 through a brute force search. Is there a general way to figure out what you can mod x^n by so that the only values are {0, 1, -1}?
_________________
--
Define a function.

PostPosted: Mon May 26, 2003 9:14 am  Back to top 
  ProfilePM
rrusczyk
Admin
Admin


Offline
Joined: 28 Mar 2003
Posts: 6912
Location: Alpine, CA
United States

To rate posts you must be logged in
#3
question for ejiant's proposed sol'n

Why must z-4 be z/p^2?

It might be some perfect square that has factors other than those of z. For example, suppose 4 were 40 instead: 7^2-40=3^2.

PostPosted: Mon May 26, 2003 9:18 am  Back to top 
  ProfilePMBlog
ejiant
New Member
New Member

Offline
Joined: 25 May 2003
Posts: 4

To rate posts you must be logged in
#4
Right. I realize that both of my solutions are wrong.

PostPosted: Mon May 26, 2003 9:20 am  Back to top 
  ProfilePM
rrusczyk
Admin
Admin


Offline
Joined: 28 Mar 2003
Posts: 6912
Location: Alpine, CA
United States

To rate posts you must be logged in
#5
yoyo's solution

Nice solutions, yoyo.

How did you think to use mods?

Are there any budding number theorists out there who want to take a swing at yoyo's general question?

PostPosted: Mon May 26, 2003 9:48 am  Back to top 
  ProfilePMBlog
i/3
Hodge Conjecture
Hodge Conjecture

Offline
Joined: 26 May 2003
Posts: 95
Location: France

To rate posts you must be logged in
#6
If p > 2 is prime, a^(p-1) = 1 (mod p) if (a,p) = 1 (Fermat little theorem)

So (a^(p-1)/2)^2 = 1 (mod p), so (Z/pZ is a field) a^(p-1)/2 in {1,-1}


Conclusion :

if p is prime > 2, the values of a^(p-1)/2 are in {0, 1, -1}


Set p =11

PostPosted: Mon May 26, 2003 12:18 pm  Back to top 
  ProfilePM
yoyo
New Member
New Member


Offline
Joined: 26 May 2003
Posts: 3
Location: NoVA

To rate posts you must be logged in
#7
Re^2: yoyo's solution

rrusczyk wrote:
How did you think to use mods?


Mods seemed to be useful on problems of a similar form, where there are no integer solutions, which I've seen before. There are also some similar ideas (and problems) in the last part of the Diophantine Equations chapter in AoPS book 2. I think the advantage of using mods is that you only have to check finitely many values of x and y, instead of infinitely many. Also, if two numbers are equal, then they're equal modulo a for all a, so the contrapositive is useful (not equal (mod a) => not equal).
_________________
--
Define a function.

PostPosted: Mon May 26, 2003 1:31 pm  Back to top 
  ProfilePM
akatookey
Hodge Conjecture
Hodge Conjecture

Offline
Joined: 26 May 2003
Posts: 52
Location: Arkansas...Its better than it sounds
United States

To rate posts you must be logged in
#8
Is there a way?

I am interested in yoyo's (Tim's?) question...is there a way to find a mod n where the solutions of x^n are only {-1,0,1} ???
_________________
-Akatookey ... the one the only...its me...

"Never mind Tom!!!...Its just a fat kid!!!"
-Family Guy

PostPosted: Mon May 26, 2003 3:13 pm  Back to top 
  ProfilePMAIMMSN
rrusczyk
Admin
Admin


Offline
Joined: 28 Mar 2003
Posts: 6912
Location: Alpine, CA
United States

To rate posts you must be logged in
#9
Re: Is there a way?

akatookey wrote:
I am interested in yoyo's (Tim's?) question...is there a way to find a mod n where the solutions of x^n are only {-1,0,1} ???


Take a look at i/3's post above. In case you're a little unfamiliar with the notation, (a,p) is the greatest common divisor of a & p.

If you're not convinced, look at n^2 (mod 3), n^4 (mod 5), n^6 (mod 7), n^10 (mod 11), and so on.

Then, when you're convinced... It's time to try proving it.

PostPosted: Mon May 26, 2003 4:17 pm  Back to top 
  ProfilePMBlog
TripleM
Navier-Stokes Equations
Navier-Stokes Equations

Offline
Joined: 26 May 2003
Posts: 1577
Location: New Zealand

To rate posts you must be logged in
#10
Re: Re^2: yoyo's solution

yoyo wrote:
rrusczyk wrote:
How did you think to use mods?


Mods seemed to be useful on problems of a similar form, where there are no integer solutions, which I've seen before. There are also some similar ideas (and problems) in the last part of the Diophantine Equations chapter in AoPS book 2. I think the advantage of using mods is that you only have to check finitely many values of x and y, instead of infinitely many. Also, if two numbers are equal, then they're equal modulo a for all a, so the contrapositive is useful (not equal (mod a) => not equal).


Yeah, these sort of questions which involve too many variables to just solve, almost always use mods. Even if it does not solve the equation outright, it will often give some useful information. For example, it is 'wellknown' that odd squares are 1 mod 8 (you can check this if you like.) Considering the equation mod 8, if x and y are even we get -1 == 4 mod 8, not true, and if they are both odd then x^5 must be 5 mod 8, and so x must be 5 mod 8. Usually finding the right mod (or mods) will solve the question.

PostPosted: Tue May 27, 2003 2:28 am  Back to top 
  ProfilePMMSN
TripleM
Navier-Stokes Equations
Navier-Stokes Equations

Offline
Joined: 26 May 2003
Posts: 1577
Location: New Zealand

To rate posts you must be logged in
#11
Heres another problem with exactly the same idea as the above one. Prove that the equation x^3 + y^3 + z^3 = 2003 has no integer solutions. (Hint : think mods!!)

PostPosted: Tue May 27, 2003 2:31 am  Back to top 
  ProfilePMMSN
i/3
Hodge Conjecture
Hodge Conjecture

Offline
Joined: 26 May 2003
Posts: 95
Location: France

To rate posts you must be logged in
#12
2003 mod 9 = 5

x^3 mod 9 in {0,1,-1} so x^3 + y^3 + z^3 always different from 5 mod 9.


Why 9 ???


Euler theorem :

a^phi(n) = 1 mod n if (a,n) = 1 (n prime or not).
phi being the Euler function

phi(9) = 6

so a^6 = (a^3)^2 = 1 if (a,9) = 1.

PostPosted: Tue May 27, 2003 8:24 am  Back to top 
  ProfilePM
andy17null
Hodge Conjecture
Hodge Conjecture


Offline
Joined: 27 May 2003
Posts: 83
Location: Troy, NY

To rate posts you must be logged in
#13
I don't have anything definite yet, but I was messing around with this in math class. Since sqrt(x^5-4) has to be an integer, you need to find an integer^5 that is 4 greater than a square. I tested this for x'es of 2 to 10 and this is what I got...
X----x^5-4---Nearest square---------Value of-------Difference between
------------number below x^5-4----that square----x^5-4 and the square
2___28________5^2_________________25_______________3
3___239_______15^2________________225_____________14
4___1020______31^2________________961_____________59
5___3121______55^2________________3025____________96
6___7772______88^2________________7749____________23
7___16803_____129^2_______________16641__________162
8___32764_____181^2_______________32761__________3
9___59045_____242^2_______________58564__________481
10__99996_____316^2______________99956___________140

I tested this for only 1,2,3, and 4 at first. I was really excited because I noticed that the differences kept on increasing. That theory was blown away when I continued the pattern. I put this up here because someone might be able to use it, perhaps there is a pattern in the differences or the squares?
Sorry about the messy underscores- the posting program deletes additional spaces. Hope that you can read this okay.


-Isaac
_________________
"I am your friend."
-Professor Umbridge, OOtP
"It unscrews the other way, Peeves."
-Professor McGonagall, OOtP
"Dementoids?"
-Vernon Dursley OOtP



AIM screenname andy17null

PostPosted: Thu May 29, 2003 1:58 pm  Back to top 
  ProfilePM
Display posts from previous:   Sort by:   
13 Posts • Page 1 of 1
Post new topic   Reply to topic View previous topicView next topic
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum
You cannot post calendar events in this forum


© Copyright 2008 AoPS Incorporated. All Rights Reserved. • FoundationPrivacyContact Us