InterviewSolution
Saved Bookmarks
| 1. |
use Euclid\'s algorithms to find HCF of 1190 and 1445 . Express the HCF in the form of 1190m+1445n |
| Answer» 1445 = 1190*1 + 2551190 = 255*4 + 170255 = 170*1 + 85170 = 85*2 + 0So, now the remainder is 0, then HCF is 85Now,85 = 255 - 170(1445 - 1190) - (1190 - 255*4)⇒ 1445 - 1190 - 1190 + 255*4⇒ 1445 - 1190*2 + (1445 - 1190)*4⇒ 1445 - 1190*2 + 1445*4 - 1190*4⇒ 1445*5 - 1190*6⇒ 1190*(- 6) + 1445*51190m + 1445n , where m = - 6 and n = 5 | |