- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is Euclid's division algorithm?
Euclid's division algorithm:
Euclid's Division Lemma states that if there are two positive integers a and b, then there exist unique integers q and r which satisfies the condition $a = bq + r$ where $0 ≤ r < b$
This can be understood by the following example:
We know that in any division problem: $Dividend = (Divisor \times Quotient) + Remainder$.
For example, if we divide 7 by 3:
Dividend $= 7$
Divisor $= 3$
Quotient $= 2$
Remainder $= 1$
For the numbers 7 and 3, there exist numbers 2 and 1 such that $7 = 2 \times 3 + 1$ where $0 ≤ 1 < 3$.
Advertisements