Homepage Solution manuals Ivan Niven An Introduction to the Theory of Numbers Exercise 5.6.2 (Parametrization of $x^2 - 2y^2$, starting from $(3,2)$)

Exercise 5.6.2 (Parametrization of $x^2 - 2y^2$, starting from $(3,2)$)

Answers

Proof. The line with slope t passing by the point ( 3 , 2 ) has for equation

y = 2 + t ( x 3 ) .

Let ( x , y ) 2 . Then

x 2 2 y 2 = 1 { ( x , y ) = ( 3 , 2 )  or  x 3  and  t , { x 2 2 ( 2 + t ( x 3 ) ) 2 = 1 , y = 2 + t ( x 3 ) , { ( x , y ) = ( 3 , 2 )  or  x 3  and  t , { ( x 3 ) [ x + 3 8 t 2 t 2 ( x 3 ) ] = 0 , y = 2 + t ( x 3 ) , ( x , y ) = ( 3 , 2 )  or  t , { x ( 1 2 t 2 ) + 6 t 2 8 t + 3 = 0 , y = 2 + t ( x 3 ) , ( x , y ) = ( 3 , 2 )  or  t , { x = 6 t 2 8 t + 3 2 t 2 1 , y = 2 ( 2 t 2 3 t + 1 ) 2 t 2 1 .

With Sagemath:

var(’x,y,t’)
solve([x^2 - 2*y^2 == 1, y == 2 + t*(x-3)],x,y)

[ [ x = 3 , y = 2 ] , [ x = 6 t 2 8 t + 3 2 t 2 1 , y = 2 ( 2 t 2 3 t + 1 ) 2 t 2 1 ] ]

User profile picture
2025-05-03 10:39
Comments