When 31513 and 34369 are divided by a 3 digit number, remainder are equal find the reminder ?
Answers
Answered by
0
Answer:
no the remainder are not equal try in calculator
Answered by
3
Answer:
When 31513 and 34369 are divided by a 3 digit number, remainder are equal find the number?
Save taxes & secure your family's future, with a term plan.
If You solve this
If number is x
then m+reminder=31513/x;
n+reminder=34369/x
If you substract the equation you will finde
n-m=2856/x
So x which is three digit number
x=2856/k where k is a positives integer
for least value of x three digit it 100 so least is 29
In coding you can do like in Java
for (int k = 29; k > 0; k--) {
int reminder = 2856 % k;
if (reminder == 0) {
int xNumber = 2856 / k;
if (xNumber > 1000)
break;
else {
System.out.println(xNumber);
}
}
}
And You will found the numbers are
102,119,136,168,204,238,357,408,476,714,952
Similar questions
Biology,
4 months ago
English,
4 months ago
Math,
9 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago