SlideShare a Scribd company logo
1 of 10
GOVERNMENT COLLEGE OF ENGINEERING
& LEATHER TECHNOLOGY
NAME – AKASH SAHA
ROLL NO. – 11200121033
STREAM – COMPUTER SCIENCE & ENGINEERING
SUBJECT – ANALOG AND DIGITAL ELECTRONICS
CODE – ESC301
SEMESTER – 3RD SEMESTER
ACADEMIC YEAR – 2022-23
BINARY NUMBER TO DECIMAL NUMBER
Using Positional Notation
Since number numbers are type of positional number system. That means weight of
the positions from right to left are as 20, 21, 22, 23... and so on for the integer part and
weight of the positions from left to right are as 2-1, 2-2, 2-3, 2-4... and so on for the
fractional part.
Assume any unsigned binary number is bnb(n-1) ... b1b0.b-1b-2 ... b(m-1)bm. Then the
decimal number is equal to the sum of binary digits (bn) times their power of 2 (2n), i.e.,
bnb(n-1) ... b1b0.b-1b-2 ... b(m-1)bm = bnx2n+b(n-1)x2(n-1)+ ... +b1x21+bx020+b-1x2-1+b-22-2+ ...
EXAMPLE
11101.11 → 1x24 + 1x23 + 1x22 + 0x21 + 1x20 + 1x2-1 + 1x2-2 = 29.75
(101.11)2 = (29.75)10
DECIMAL NUMBER TO BINARY NUMBER
Consider the integer and fractional parts separately.
 For the integer part:
1) Repeatedly divide the given number by 2, and go on accumulating the
remainders, until the number becomes zero.
2) Arrange the remainders in reverse order.
EXAMPLE
(13)10 = (1101)2
Base Num Rem
2 13
2 6 1
2 3 0
2 1 1
0 1
 For the fractional part:
1) Repeatedly multiply the given fraction by 2.
• Accumulate the integer part (0 or 1).
• If the integer part is 1, chop it off.
2) Arrange the integer parts in the order they are obtained.
EXAMPLE
(.0625)10 = (.0001)2
∴ (13.0625)10 = (1101.0001)2
.0625 x 2 = 0.125
.1250 x 2 = 0.250
.2500 x 2 = 0.500
.5000 x 2 = 1.000
BINARY NUMBER TO OCTAL NUMBER
We cannot convert binary to octal directly. First we have to convert binary to decimal
and then decimal to octal.
EXAMPLE
(11101.11)2 = (???)8
We know from previous example that (11101.11)2 = (29.75)10.
Now we will convert (29.75)10 to octal.
Consider the integer and fractional parts separately.
 For the integer part:
1) Repeatedly divide the given number by 8, and go on accumulating the
remainders, until the number becomes zero.
2) Arrange the remainders in reverse order.
Base Num Rem
8 29
8 3 5
0 3
 For the fractional part:
1) Repeatedly multiply the given fraction by 8.
• Accumulate the integer part (0 to 7).
• If the decimal part is 0, chop it off.
2) Arrange the integer parts in the order they are obtained.
(29)10 = (35)8
(0.75)10 = (0.6)8 .75 x 8 = 6.0
∴ (11101.11)2 = (35.6)8
BINARY SUBTRACTION IN 1’S COMPLEMENT FORM
EXAMPLE 1 : (7)10 – (4)10 = 7 + (-4)
Binary of 7 = 0111, Binary of 4 = 0100
1’s complement of 4 = 1011
7 :: 0111 A
-4 :: 1011 B1
Cy 10010 R
+ 1
0011 → +3
EXAMPLE 2 : (4)10 – (5)10 = 4 + (-5)
Binary of 4 = 0100, Binary of 5 = 0101
1’s complement of 5 = 1010
4 :: 0100 A
-5 :: 1010 B1
1110 R → -1
Assume 4-bit representations
Since there is a carry, it is added back
to the result
The result is positive
Assume 4-bit representations
Since there is no carry, the result
is negative
1110 is the 1’s complement of
0001, that is, it represents –1
BINARY SUBTRACTION IN 2’S COMPLEMENT FORM
EXAMPLE 1 : (7)10 – (4)10 = 7 + (-4)
Binary of 7 = 0111, Binary of 4 = 0100
2’s complement of 4 = 1011 + 1 = 1100
7 :: 0111 A
-4 :: 1100 B2
10011 R → +3
Ignore carry
EXAMPLE 2 : (4)10 – (5)10 = 4 + (-5)
Binary of 4 = 0100, Binary of 5 = 0101
2’s complement of 5 = 1010 + 1 = 1011
4 :: 0100 A
-5 :: 1011 B2
1111 R → -1
Assume 4-bit representations
Presence of carry indicates that the
result is positive
No need to add the end-around carry
like in 1’s complement
Assume 4-bit representations
Since there is no carry, the result
is negative
1111 is the 2’s complement of
0001, that is, it represents –1
CONVERT SOP FORM INTO SSOP FORM
1. Multiply each non-standard product term by the sum of its missing variable and its
complement.
2. Repeat step 1, until all resulting product terms contain all variables.
3. For each missing variable in the function, the number of product terms doubles.
EXAMPLE
F(A,B,C) = AB’ + A’BC + B’C’ ------------Convert this SOP into SSOP form
= AB’(C+C’) + A’BC + (A+A’)B’C’
= AB’C + AB’C’ + A’BC + AB’C’ + A’B’C’
= AB’C + AB’C’ + A’BC + A’B’C’ --------This is the SSOP form
SIMPLIFICATION & CIRCUIT DIAGRAM OF BOOLEAN
SIMPLIFY F = (B’+D’)(A’+C’+D)(A+B’+C’+D)(A’+B+C’+D’)
= (B’+D’)(A+B’+C’+D){(A’+C’)+D}{(A’+C’)+B+D’}
= {AB’+B’+B’C’+B’D+AD’+B’D’+C’D’+0}{A’+C’+(A’+C’)(B+D’)+D(A’+C’)+BD+0} 𝐼𝐷𝐸𝑀𝑃𝑂𝑇𝐸𝑁𝐶𝐸 𝑅𝑈𝐿𝐸
𝐵′. 𝐵′ = 𝐵′
𝐴′ + 𝐶′ 𝐴′ + 𝐶′ = (𝐴′ + 𝐶′)
𝐶𝑂𝑀𝑃𝐿𝐸𝑀𝐸𝑁𝑇𝐴𝑅𝑌 𝑅𝑈𝐿𝐸 𝐷′. 𝐷 = 0
= {B’(A+1+C’+D+D’)+AD’+C’D’}{(A’+C’)(A+B+D’+D)+BD}
= {B’AD’+C’D’}{(A’+C’)+BD} [1+Any expression = 1 (IDENTITY RULE)]
= B’(A’+C’)+BB’D+AD’(A’+C’)+ABD’D+C’D’(A’+C’)+C’BDD’
= A’B’+C’B’+0+0+AC’D’+0+A’C’D’+C’D’+0 [0 . Any expression = 0]
= A’B’+B’C’+C’D’+C’D’(A+A’) [𝐴 + 𝐴′
= 1 (𝐶𝑂𝑀𝑃𝐿𝐸𝑀𝐸𝑁𝑇𝐴𝑅𝑌 𝑅𝑈𝐿𝐸)]
= A’B’=B’C’+C’D’+C’D’ [𝐶′
𝐷′
+ 𝐶′
𝐷′
= 𝐶′
𝐷′
(𝐼𝐷𝐸𝑀𝑃𝑂𝑇𝐸𝑁𝐶𝐸 𝑅𝑈𝐿𝐸)]
= A’B’+B’C’+C’D’
Circuit Diagram

More Related Content

Similar to Akash Saha CSE 33 ADEpptx.pptx

Alu1
Alu1Alu1

Similar to Akash Saha CSE 33 ADEpptx.pptx (20)

Okkkkk
OkkkkkOkkkkk
Okkkkk
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)
 
CA UNIT II.pptx
CA UNIT II.pptxCA UNIT II.pptx
CA UNIT II.pptx
 
L2 number
L2 numberL2 number
L2 number
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.ppt
 
Number_Systems (2).ppt
Number_Systems (2).pptNumber_Systems (2).ppt
Number_Systems (2).ppt
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
UNIT - I.pptx
UNIT - I.pptxUNIT - I.pptx
UNIT - I.pptx
 
2's complement
2's complement2's complement
2's complement
 
Logic Design - Chapter 1: Number Systems and Codes
Logic Design - Chapter 1: Number Systems and CodesLogic Design - Chapter 1: Number Systems and Codes
Logic Design - Chapter 1: Number Systems and Codes
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
 
digital systems and information
digital systems and informationdigital systems and information
digital systems and information
 
ch2.pdf
ch2.pdfch2.pdf
ch2.pdf
 
computer Unit 2
computer Unit 2computer Unit 2
computer Unit 2
 
Mba admission in india
Mba admission in indiaMba admission in india
Mba admission in india
 
Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1Slide03 Number System and Operations Part 1
Slide03 Number System and Operations Part 1
 
Number system
Number systemNumber system
Number system
 
Alu1
Alu1Alu1
Alu1
 
Pp02
Pp02Pp02
Pp02
 
About the computer of the important field
About the computer               of the important fieldAbout the computer               of the important field
About the computer of the important field
 

Recently uploaded

VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 

Recently uploaded (20)

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 

Akash Saha CSE 33 ADEpptx.pptx

  • 1. GOVERNMENT COLLEGE OF ENGINEERING & LEATHER TECHNOLOGY NAME – AKASH SAHA ROLL NO. – 11200121033 STREAM – COMPUTER SCIENCE & ENGINEERING SUBJECT – ANALOG AND DIGITAL ELECTRONICS CODE – ESC301 SEMESTER – 3RD SEMESTER ACADEMIC YEAR – 2022-23
  • 2. BINARY NUMBER TO DECIMAL NUMBER Using Positional Notation Since number numbers are type of positional number system. That means weight of the positions from right to left are as 20, 21, 22, 23... and so on for the integer part and weight of the positions from left to right are as 2-1, 2-2, 2-3, 2-4... and so on for the fractional part. Assume any unsigned binary number is bnb(n-1) ... b1b0.b-1b-2 ... b(m-1)bm. Then the decimal number is equal to the sum of binary digits (bn) times their power of 2 (2n), i.e., bnb(n-1) ... b1b0.b-1b-2 ... b(m-1)bm = bnx2n+b(n-1)x2(n-1)+ ... +b1x21+bx020+b-1x2-1+b-22-2+ ... EXAMPLE 11101.11 → 1x24 + 1x23 + 1x22 + 0x21 + 1x20 + 1x2-1 + 1x2-2 = 29.75 (101.11)2 = (29.75)10
  • 3. DECIMAL NUMBER TO BINARY NUMBER Consider the integer and fractional parts separately.  For the integer part: 1) Repeatedly divide the given number by 2, and go on accumulating the remainders, until the number becomes zero. 2) Arrange the remainders in reverse order. EXAMPLE (13)10 = (1101)2 Base Num Rem 2 13 2 6 1 2 3 0 2 1 1 0 1
  • 4.  For the fractional part: 1) Repeatedly multiply the given fraction by 2. • Accumulate the integer part (0 or 1). • If the integer part is 1, chop it off. 2) Arrange the integer parts in the order they are obtained. EXAMPLE (.0625)10 = (.0001)2 ∴ (13.0625)10 = (1101.0001)2 .0625 x 2 = 0.125 .1250 x 2 = 0.250 .2500 x 2 = 0.500 .5000 x 2 = 1.000
  • 5. BINARY NUMBER TO OCTAL NUMBER We cannot convert binary to octal directly. First we have to convert binary to decimal and then decimal to octal. EXAMPLE (11101.11)2 = (???)8 We know from previous example that (11101.11)2 = (29.75)10. Now we will convert (29.75)10 to octal. Consider the integer and fractional parts separately.  For the integer part: 1) Repeatedly divide the given number by 8, and go on accumulating the remainders, until the number becomes zero. 2) Arrange the remainders in reverse order.
  • 6. Base Num Rem 8 29 8 3 5 0 3  For the fractional part: 1) Repeatedly multiply the given fraction by 8. • Accumulate the integer part (0 to 7). • If the decimal part is 0, chop it off. 2) Arrange the integer parts in the order they are obtained. (29)10 = (35)8 (0.75)10 = (0.6)8 .75 x 8 = 6.0 ∴ (11101.11)2 = (35.6)8
  • 7. BINARY SUBTRACTION IN 1’S COMPLEMENT FORM EXAMPLE 1 : (7)10 – (4)10 = 7 + (-4) Binary of 7 = 0111, Binary of 4 = 0100 1’s complement of 4 = 1011 7 :: 0111 A -4 :: 1011 B1 Cy 10010 R + 1 0011 → +3 EXAMPLE 2 : (4)10 – (5)10 = 4 + (-5) Binary of 4 = 0100, Binary of 5 = 0101 1’s complement of 5 = 1010 4 :: 0100 A -5 :: 1010 B1 1110 R → -1 Assume 4-bit representations Since there is a carry, it is added back to the result The result is positive Assume 4-bit representations Since there is no carry, the result is negative 1110 is the 1’s complement of 0001, that is, it represents –1
  • 8. BINARY SUBTRACTION IN 2’S COMPLEMENT FORM EXAMPLE 1 : (7)10 – (4)10 = 7 + (-4) Binary of 7 = 0111, Binary of 4 = 0100 2’s complement of 4 = 1011 + 1 = 1100 7 :: 0111 A -4 :: 1100 B2 10011 R → +3 Ignore carry EXAMPLE 2 : (4)10 – (5)10 = 4 + (-5) Binary of 4 = 0100, Binary of 5 = 0101 2’s complement of 5 = 1010 + 1 = 1011 4 :: 0100 A -5 :: 1011 B2 1111 R → -1 Assume 4-bit representations Presence of carry indicates that the result is positive No need to add the end-around carry like in 1’s complement Assume 4-bit representations Since there is no carry, the result is negative 1111 is the 2’s complement of 0001, that is, it represents –1
  • 9. CONVERT SOP FORM INTO SSOP FORM 1. Multiply each non-standard product term by the sum of its missing variable and its complement. 2. Repeat step 1, until all resulting product terms contain all variables. 3. For each missing variable in the function, the number of product terms doubles. EXAMPLE F(A,B,C) = AB’ + A’BC + B’C’ ------------Convert this SOP into SSOP form = AB’(C+C’) + A’BC + (A+A’)B’C’ = AB’C + AB’C’ + A’BC + AB’C’ + A’B’C’ = AB’C + AB’C’ + A’BC + A’B’C’ --------This is the SSOP form
  • 10. SIMPLIFICATION & CIRCUIT DIAGRAM OF BOOLEAN SIMPLIFY F = (B’+D’)(A’+C’+D)(A+B’+C’+D)(A’+B+C’+D’) = (B’+D’)(A+B’+C’+D){(A’+C’)+D}{(A’+C’)+B+D’} = {AB’+B’+B’C’+B’D+AD’+B’D’+C’D’+0}{A’+C’+(A’+C’)(B+D’)+D(A’+C’)+BD+0} 𝐼𝐷𝐸𝑀𝑃𝑂𝑇𝐸𝑁𝐶𝐸 𝑅𝑈𝐿𝐸 𝐵′. 𝐵′ = 𝐵′ 𝐴′ + 𝐶′ 𝐴′ + 𝐶′ = (𝐴′ + 𝐶′) 𝐶𝑂𝑀𝑃𝐿𝐸𝑀𝐸𝑁𝑇𝐴𝑅𝑌 𝑅𝑈𝐿𝐸 𝐷′. 𝐷 = 0 = {B’(A+1+C’+D+D’)+AD’+C’D’}{(A’+C’)(A+B+D’+D)+BD} = {B’AD’+C’D’}{(A’+C’)+BD} [1+Any expression = 1 (IDENTITY RULE)] = B’(A’+C’)+BB’D+AD’(A’+C’)+ABD’D+C’D’(A’+C’)+C’BDD’ = A’B’+C’B’+0+0+AC’D’+0+A’C’D’+C’D’+0 [0 . Any expression = 0] = A’B’+B’C’+C’D’+C’D’(A+A’) [𝐴 + 𝐴′ = 1 (𝐶𝑂𝑀𝑃𝐿𝐸𝑀𝐸𝑁𝑇𝐴𝑅𝑌 𝑅𝑈𝐿𝐸)] = A’B’=B’C’+C’D’+C’D’ [𝐶′ 𝐷′ + 𝐶′ 𝐷′ = 𝐶′ 𝐷′ (𝐼𝐷𝐸𝑀𝑃𝑂𝑇𝐸𝑁𝐶𝐸 𝑅𝑈𝐿𝐸)] = A’B’+B’C’+C’D’ Circuit Diagram