Sachin9
Can you split p into two factors (such that one of them is not 1)? You can if you are able to take something common from n(n-1) and 41. When is this possible?
When n = 41, n = 42 etc
41*40 + 41 = p
p = 41^2
42*41 + 41 = p
p = 41*43
82*81 + 41 = p
p = 41*163Thanks Karishma, but I didn't understand the above..
specifically
41*40 + 41 = p
p = 41^2 and
You can if you are able to take something common from n(n-1) and 41Please help. .
A prime number has no factors other than 1 and itself.
If I say that x = a*b and a and b are positive non-1 integers, can I say that x is not prime? Sure. x has two factors a and b which are not 1 (and hence not x either).
What we are trying to do here is trying to find whether there is a similar pair of factors that p has.
p = n(n-1) + 41
p can have two factors if we can express p like this: p = (..)*(...)
To do that, we will need to take something common from n(n-1) and 41. Say if n = 41, then we can take something common
p = 41*40 + 41
p = (41) *(40 + 1)
Notice that p is the product of 2 factors in this case. Neither one of the factors is 1. Hence, p is not prime.