Finding Integers for x^2-2x-3 Divisibility by 8: Help with Mod Problem

  • Thread starter Thread starter Svensken
  • Start date Start date
AI Thread Summary
The discussion focuses on determining the integers for which the expression x^2 - 2x - 3 is divisible by 8. The key insight is that the product x(x-2) must equal 3 modulo 8. Through testing various integers, it is established that x can be 3 or 7 modulo 8. Therefore, the solutions are of the form x = 3 + 8n or x = 7 + 8n, where n is any integer. This approach effectively identifies the required integers for divisibility by 8.
Svensken
Messages
28
Reaction score
0

Homework Statement



For what integers is x^2-2x-3 divisible by 8.

give answer x = a list of natural numbers (mod 8)

Homework Equations





The Attempt at a Solution



I thought x(x-2) = 3 (mod 8) and tried to find all values that satisfied this. But got really stuck.
I also tried to find values that gave a reminder of zero when the quadratic was divided by 8, which i think was 7, 11, 15 but this was not correct.
I thought this was quite difficult as i thought my solutions made sense, but i must have misunderstood it somewhere. Thanks! its much appreciated.
 
Physics news on Phys.org
Factorize the left hand side first: it is x(x-2). The product has to be 3(mod 8), so the factors have to be either {1(mod 8) * 3(mod 8)} or {(-1)(mod 8) * (-3)(mod 8)}. Which of x and x-2 can be 1 (mod 8) so the other is 3 (mod 8)? The same with -1 and -3. ehild
 
Last edited:
Since this is "mod 8", it's not too difficult to "exhaust" the cases:
if x= 0 then 0(0- 2)= 0 (mod 8), not 3
if x= 1 then 1(1- 2)= -1= 7 (mod 8), not 3
if x= 2 then 2(2- 2)= 0 (mod 8), not 3
if x= 3 then 3(3- 2)= 3 (mod 8) !

if x= 4 then 4(4- 2)= 8= 0 (mod 8), not 3
if x= 5 then 5(5- 2)= 15= 7 (mod 8), not 3
if x= 6 then 6(6- 2)= 24= 0 (mod 8), not 3
if x= 7 then 7(7- 2)= 35= 3 (mod 8)!

So x= 3 (mod 8) or x= 7 (mod 8) so any x of the form x= 3+ 8n or x= 7+ 8n, where 8 is any integer, satisfies this equation.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top