I am trying to find integer solutions to $\space 2x^2-y^2=1\space $ other than $\space (1,1).\quad$ Just one is sufficient, and I know (by brute force) that $\space (5,7)\space $ is one. How do I show my work?
2026-04-06 01:37:52.1775439472
Quadratic integer equation
63 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DIOPHANTINE-EQUATIONS
- Can we find $n$ Pythagorean triples with a common leg for any $n$?
- Can we find integers $x$ and $y$ such that $f,g,h$ are strictely positive integers
- Count of possible money splits
- I'm having a problem interpreting and starting this problem with primes.
- Solution of $X^5=5 Y (Y+1)+1$ in integers.
- Solving for 4 variables using only 2 equations
- Algorithm for diophantine equation
- Find all pairs of integers (x,y) such that $x(x+1)(x^2+x+2)=2y^2$
- Sum Equals Product: A Diophantine Equation
- Diophantine equation for Multivariate Polynomial
Related Questions in QUADRATIC-FORMS
- Can we find $n$ Pythagorean triples with a common leg for any $n$?
- Questions on positivity of quadratic form with orthogonal constraints
- How does positive (semi)definiteness help with showing convexity of quadratic forms?
- Equivalence of integral primitive indefinite binary quadratic forms
- Signs of eigenvalues of $3$ by $3$ matrix
- Homogeneous quadratic in $n$ variables has nonzero singular point iff associated symmetric matrix has zero determinant.
- Trace form and totally real number fields
- Let $f(x) = x^\top Q \, x$, where $Q \in \mathbb R^{n×n}$ is NOT symmetric. Show that the Hessian is $H_f (x) = Q + Q^\top$
- Graph of curve defined by $3x^2+3y^2-2xy-2=0$
- Question on quadratic forms of dimension 3
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
A "Y-solution" and a spreadsheet show a lot. It is semi-brute force but not hard. Make an $\space x$-column with sequential numbers where $\quad n\le x \le 1000+x.\quad$ in the next column put the formula from the RHS of "y=". In the next column over enter $\quad\text{IF(Y-value=INT(Y-value),"***","").}\quad$ In the top row of this column use "COUNTIF()" to count the number of asterisks down to the thousandth row. If the count is greater than zero, search the rows below for integers. Change the first number in the $\space x$-column up by $1000$ to continue counting 1000 at a time.
\begin{align*} 2x^2-y^2&=1\\ \implies 2x^2 y^2 - 1 &= y^2\\ \implies y=\pm&\sqrt{2 x^2-1}\\ \implies (x,y)\in\pm& \big\{(1,1),(5,7),(29,41),(169,239),(985,1393),\cdots\big\} \end{align*}
$\textbf{Update: }\space $ I just noticed a pattern in this series. All $\space x$-values can be generated by the following formula which generates every other Pell Number which means that the $\space n^{th}\space x\space$ can be generated directly.
$$ x= \frac{(1 + \sqrt{2})^{(2n-1)} - (1 - \sqrt{2})^{(2n-1)}}{2\sqrt{2}} $$