Find the sum of all non-negative integers n such that n + 1 ∣ n 2 + 1 .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
@Mehul Arora , yeah thats a " + " sign , but I was powerful enough to make it " - " sign :3 :3 :3 :P
Since ( n + 1 ) ∣ ( n 2 + 1 ) w o u l d a l s o d i v i d e n 2 + 1 + 2 n + 2 = ( n + 1 ) 2 + 2 ⟹ ( n + 1 ) ∣ 2 .Now it is easy but Mehul Arora you have to mention that n is positive as i first answered − 4 .
For such problems on division by linear terms, ( n − a ) ∣ f ( n ) ⇒ ( n − a ) ∣ f ( a ) .
Do you see why? What theorem does that look like?
And mention that it must be an integer
Problem Loading...
Note Loading...
Set Loading...
n 2 + 1 = n 2 − 1 + 2 = ( n + 1 ) ( n − 1 ) + 2 ⇒ n + 1 ∣ ( n + 1 ) ( n − 1 ) + 2 ⇒ n + 1 ∣ 2
So we have 2 cases:
Case 1: n + 1 = 1 ⇒ n = 0
Case 2: n + 1 = 2 ⇒ n = 1
So sum = 1 + 0 = 1 .