Quadratic Equation Solving: Integer Solutions

AI Thread Summary
The discussion centers on solving the quadratic equation x² - 4xy + 5y² + 2y - 4 = 0 for integer solutions. Participants emphasize the importance of completing the square to simplify the equation and identify bounds for y, specifically noting that -3 ≤ y ≤ 2. The method involves expressing the equation in the form (x + ay)² + (y + b)² + c = 0, leading to a series of equations to determine the values of a, b, and c. The conversation also highlights the significance of identifying lattice points that satisfy the equation. Overall, the approach combines algebraic manipulation with strategic bounding to find integer solutions.
Asla
Messages
35
Reaction score
0

Homework Statement


The total number of integers that satisfy the equation x2-4xy+5y2+2y-4=0
 
Physics news on Phys.org
If you can write the variable portion as a sum of squares you'll be able to limit the possibilities considerably.
 
Yes completing the square is helpful. We can also note the bound
-3<=y<=2
So we know at most 12 points need to be checked.
also
a^2+b^2
limits the solutions
 
How do you note the bound?How should I complete the square with the 4xy?
 
To complete the square in x^2+ ax, divide the coefficient of x, a, by 2 and add the square of that:
(a/2)^2= a^2/4. Here "a" is 4y. What is a^2/4?
 
The bound is obvious after the squares are completed. There are a few forms the most useful is

(x+ay)^2+(y+b)^2+c=0
expanding
x^2+2axy+(a^2+1)y^2+2by+(c+b^2)=0
matching with
x^2-4xy+5y^2+2y-4=0
gives
2a=-4
a^2+1=5
2b=2
c+b^2=-4
 
lurflurf said:
The bound is obvious after the squares are completed. There are a few forms the most useful is

(x+ay)^2+(y+b)^2+c=0
expanding
x^2+2axy+(a^2+1)y^2+2by+(c+b^2)=0
matching with
x^2-4xy+5y^2+2y-4=0
gives
2a=-4
a^2+1=5
2b=2
c+b^2=-4
Yea I got that but I still do not know how to continue.Forgive my ignorance
 
so you know a,b,c
(x+ay)^2+(y+b)^2+c=0
c<0
(y+b)^2<-c
-b-sqrt(-c)<=y<=-b+sqrt(-c)
is the desired bound on y
list out possibilities
y=-3,-2,-1,0,1,2
since (x+ay)^2+(y+b)^2+c=0
what values of a^2+b^2=5
are lattice points (integers)?
let
a=(x+ay)
b=(y+b)
complete solution
 
lurflurf said:
so you know a,b,c
(x+ay)^2+(y+b)^2+c=0
c<0
(y+b)^2<-c
-b-sqrt(-c)<=y<=-b+sqrt(-c)
is the desired bound on y
list out possibilities
y=-3,-2,-1,0,1,2
since (x+ay)^2+(y+b)^2+c=0
what values of a^2+b^2=5
are lattice points (integers)?
let
a=(x+ay)
b=(y+b)
complete solution
Let me see,..why do you say (y+b)^2<=-c
 
  • #10
(x+ay)^2+(y+b)^2+c=0
(y+b)^2=-(x+ay)^2-c
0<=(x+ay)^2
(y+b)^2=-c
if that is a bit obtuse consider
1+4=5
notice 1,4,5=>0
see that we can conclude
1<5
in general if
a+b=c
a,b,c=>0
b<=c
 
  • #11
lurflurf said:
(x+ay)^2+(y+b)^2+c=0
(y+b)^2=-(x+ay)^2-c
0<=(x+ay)^2
(y+b)^2=-c
if that is a bit obtuse consider
1+4=5
notice 1,4,5=>0
see that we can conclude
1<5
in general if
a+b=c
a,b,c=>0
b<=c
Wow nice,...I guess I will take some time to go over the whole equation again.Thanks for the assistance
 
Back
Top