Menu

boolean algebra problem(sum of minterms)

Dr deo
2009-02-10
2012-09-26
  • Dr deo

    Dr deo - 2009-02-10

    Hi,
    Am having trouble with boolean algebra. The problem is with with converting an expression to its standard form( canonical form) as a sum of minterms . The function F=C + AB, is shown in two forms.
    As a sum of minterms on the left and converted into optimal form on the right. But how does the C + ABC'
    turn into C +AB. (Where did the C') disappear to?

    ABC + A' B C + A B' C + A' B' C + A B C' = BC (A+A') + B'C (A+A') + ABC'

                                                             =B C + B 'C + A B C'                  //     A+A'=1
    
                                                             =C (B + B') + A B C'                 //      B+B'=1
    
                                                             =C + A B C'
    
                                                             =C + AB
    
     
    • vtheron

      vtheron - 2009-02-11

      oops, that wasn't quite right. Here's the correction:

      C + ABC'

      = ( C' (A'+B'+C) )' // DeMorgan's theorem
      = ( A'C' + B'C' + CC' )'
      = ( A'C' + B'C' )' // CC' == 0
      = ( C'(A'+B') )'
      = C + AB // DeMorgan's again

      -Theron

       
    • cpns

      cpns - 2009-02-11

      ... and this has what to do with C, C++, Dev-C++ or Bloodshed!? There are no doubt more appropriate forums for this.

      Are you sure that this is correct? I am a bit rusty perhaps, and may be misinterpreting the notation, but doesn't C + A B C' reduce ot just C?

      I am going to come back to this if I may, when I have had breakfast and found some juice for this laptop!

      Clifford

       
    • vtheron

      vtheron - 2009-02-11

      Use DeMorgans theorem twice:

      C + ABC' = C' (A'+B'+C) // DeMorgan's theorem
      = A'C' + B'C' + CC'
      = A'C' + B'C' // CC' == 0
      = C'(A'+B')
      = C + AB // DeMorgan's again

      Peace,

      -Theron

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.