MHB Is There a Methodical Solution for this Equation Involving Guesswork?

  • Thread starter Thread starter Albert1
  • Start date Start date
AI Thread Summary
The equation $2a^2 + a + 1 = y^2$ can be systematically analyzed rather than relying solely on guesswork. It has been established that if $y$ is odd, then $a$ must be even, and if $y$ is even, $a$ must be odd. By completing the square and transforming the equation, it can be expressed as a Diophantine equation of the form $X^2 - 2Y^2 = 7$, which has infinitely many solutions. The discussion highlights methods for generating solutions, including brute force checks for integer values of $y$. Overall, the equation can be solved using techniques related to Pell's equation, indicating a structured approach to finding solutions.
Albert1
Messages
1,221
Reaction score
0
$a,y \in N$
$2a^2+a+1=y^2$
Is it possible to solve this equation systematically, or will it involve guesswork?
it seemed easy ,but...
you may check it using program (I have done this )
 
Mathematics news on Phys.org
in this case the numbers of solutions will be infinite or finite ?
can we prove it ?
up to now we know :
if y odd ,a must be even
if y even ,a must be odd
 
Last edited:
If $2a^2 + a + 1 = y^2$ then (completing the square) $2\bigl(a+\frac14\bigr)^2 + \frac78 = y^2$. Multiply both sides by $8$ and rearrange, to get $(4a+1)^2 - 2(2y)^2 = 7.$ This is a Diophantine equation of the form $X^2 - 2Y^2 = $ const. It has infinitely many solutions, starting with the obvious ones $(a,y) = (0,\pm1)$ and $(a,y) = (1,\pm2)$. It can be solved by using the techniques for Pell's equation (we may have to call in our resident expert http://www.mathhelpboards.com/f49/pell-sequence-2905/ at this point). You can find, for example, that if $(a,y)$ is a solution then so are $(17a+4\pm 12y,\,24a+6\pm 17y)$. That gives solutions such as $(-3,4)$, $(-8,11)$, $(16,23)$, $(45,64)$, $(552,781)$, $\ldots$.
 
Last edited:
6 double solutions keeping y<100 and y=integer>0:
(y,a,a)
1, 0, -.5
2, 1, -1.5
4, 2.5, -3
11, 7.5, -8
23, 16, -16.5
64, 45, -45.5

Easiest way to find a candidate by brute force is loop y,
then is SQRT(8y^2 - 7) an integer?
 
Last edited:
Further thoughts: the first 29 positive values for $y$ are listed at Sloane sequence A006452. You can get the corresponding values for $a$ by solving the quadratic equation $2a^2 + a + 1 = y^2$, to get $$a = \frac{-1 \pm\sqrt{8y^2-7}}{4}.$$ In each case, you have to select the $+$ or $-$ sign for the square root so as to ensure that the numerator is a multiple of $4$.
 
Opalg said:
(we may have to call in our resident expert http://www.mathhelpboards.com/f49/pell-sequence-2905/ at this point)...
Stop making such nice remarks about Mark:
it'll go to his head, and he'll stop buying the rounds (Bandit)
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...

Similar threads

Back
Top