2,503 views
0 votes
0 votes

Question 4 : Find the largest number which divides 64, 136 and 238 to leave the same remainder in each case.
Solution : To find the required number, we need to find the HCF of (136-64), (238-136) and (238-64), i.e., HCF (72, 102, 174).
72 = 23 x 32
102 = 2 x 3 x 17
174 = 2 x 3 x 29
Therefore, HCF (72, 102, 174) = 2 x 3 = 6
hence, 6 is the required number.

why we find hcf of difference between pairs of number

1 Answer

0 votes
0 votes
Consider the same remainder to be r. So, $64-r, 136-r, 238-r$ is divisible by the largest number say d.

We know that if $n$ and $m$ are divisible by $k$ then $ n-m$ is also divisible by $k$.

So $136-r-(64-r)$ i.e. $72$ and $238-r-(136-r)$ i.e. $102$ are also divisible by d which can be found out by finding the $HCF(72,102)$

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
1 answer
2
Muskan Jain asked Jan 17, 2019
340 views
Find the highest normal form of a relation R(A,B,C,D,E) with FD set {B->A, A->C, BC->D, AC->BE}
0 votes
0 votes
0 answers
3
Gatetarget_100 asked Aug 3, 2018
552 views
int main() { int a[10]; printf("%d",*a+1-*a+3); return 0; }Answer is given as 4 but i think it should be 8, if int is of 4 byte. Correct me if i am wrong