An outline of what this tutorial containsHere's a quick look at the topics which will be covered in this tutorial BINARY ADDITIONThere are four basic rules for binary addition-- 0+0= 0 0+1 = 1 1 +0= 1 1 + 1 = 10 Let's add two binary numbers say- 10011 and 01000. Binary addition is also carried out the same way as you normally add two numbers 10011 01000 -------- 11011 BINARY SUBTRACTIONBasic Rules for binary subtraction are- 0-0=0 1-0 =1 1-1 =1 10-1 = 1 How will you subtract 01001 from 11011 ? BINARY MULTIPLICATIONMultiplication is done by repeatedly adding one number by number of times equal to the second number. eg. 8x4=8+8+8+8 For binary multiplication also, we do the same thing. eg 0101 x 0011 The decimal equivalent of 0011 is 3. So to find the product, we can add 0101 to itself 3 times 0101 + 0101 1010 + 0101 1111 So, the product of 0101 and 0011 is 1111. We can check our result by looking at the decimal equivalents of these numbers. 0101 ---> 5 0011 ---> 3 1111 ---> 15 BOOTH'S MULTIPLICATION ALGORITHMConsider that we have to find the product 'm x r'. Here 'm' is called 'multiplicand' and 'r' is called 'multiplier'. Let, number of bits in 'm' is 'x' and number of bits in 'r' is 'y'.
|
Introduction to the Number System : Part 1 Introducing number systems. Representation of numbers in Decimal, Binary,Octal and Hexadecimal forms. Conversion from one form to the other. | Number System : Part 2 Binary addition, subtraction and multiplication. Booth's multiplication algorithm. Unsigned and signed numbers. | Introduction to Boolean Algebra : Part 1 Binary logic: True and false. Logical operators like OR, NOT, AND. Constructing truth tables. Basic postulates of Boolean Algebra. Logical addition, multiplication and complement rules. Principles of duality. Basic theorems of boolean algebra: idempotence, involution, complementary, commutative, associative, distributive and absorption laws. | Boolean Algebra : Part 2 De-morgan's laws. Logic gates. 2 input and 3 input gates. XOR, XNOR gates. Universality of NAND and NOR gates. Realization of Boolean expressions using NAND and NOR. Replacing gates in a boolean circuit with NAND and NOR. |
Understanding Karnaugh Maps : Part 1Introducing Karnaugh Maps. Min-terms and Max-terms. Canonical expressions. Sum of products and product of sums forms. Shorthand notations. Expanding expressions in SOP and POS Forms ( Sum of products and Product of sums ). Minimizing boolean expressions via Algebraic methods or map based reduction techniques. Pair, quad and octet in the context of Karnaugh Maps. | Karnaugh Maps : Part 2 Map rolling. Overlapping and redundant groups. Examples of reducing expressions via K-Map techniques. | Introduction to Combinational Circuits : Part 1 Combinational circuits: for which logic is entirely dependent of inputs and nothing else. Introduction to Multiplexers, De-multiplexers, encoders and decoders.Memories: RAM and ROM. Different kinds of ROM - Masked ROM, programmable ROM. | Combinational Circuits : Part 2 Static and Dynamic RAM, Memory organization. |
Introduction to Sequential Circuits : Part 1 Introduction to Sequential circuits. Different kinds of Flip Flops. RS, D, T, JK. Structure of flip flops. Switching example. Counters and Timers. Ripple and Synchronous Counters. | Sequential Circuits : Part 2 ADC or DAC Converters and conversion processes. Flash Converters, ramp generators. Successive approximation and quantization errors. |