If that's -11n, the answer is (n - 14)(n + 3)
If that's +11n, the answer is (n + 14)(n - 3)
Chat with our AI personalities
n2-1 and n2-4 are trivial cases because of n2-m2=(n-m)(n+m). So the only prime of the form n2-1 is 3 and of the form n2-4 is 5.
#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2-1) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }
.04m2-n2=(.2m+n)(.2m-n)
Take 5 out. If the missing signs are pluses, it becomes 5(n2 + 2n + 4) If the missing signs are minuses, it becomes 5(n2 - 2n - 4)
(n - 10)(n + 4)