Binary Divider Circuit: Learn How to Build One!

  • Thread starter Thread starter Archanaskulka
  • Start date Start date
  • Tags Tags
    Binary Circuit
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 13K views
Archanaskulka
Messages
2
Reaction score
0
Hello! I wanted a circuit that conducts binary division. It should not use any microcontrollers or any higher devices. I have struggled a lot with this. I am just not getting the idea of how the division operation is carried out on a circuit. I want the basic idea. I can build it up. But how is division performed? lik, we have a full adder, full subtractor, multiplier, etc.. and their logic is also well known. I have not been able to find any such circuit which conducts division. Any bit divider will do.
 
Engineering news on Phys.org
Here is the simplest way. If you want to divide by a power of two (2n), just shift the binary number by n flip flops in a shift register.

If you want to divide by n in a binary counter, where n is any integer, then every time the binary counter counts down to zero, preload n into the binary counter. See datasheet for 74163 at

http://www.datasheetcatalog.com/datasheets_pdf/7/4/1/6/74163.shtml

Bob S
 
Thank you! thank you very much.. Il get back to you if i have any other problems!