How Can Boolean Algebra Simplification Be Achieved?

AI Thread Summary
Boolean algebra simplification can be achieved by breaking down complex expressions into manageable parts and identifying common factors. The discussion revolves around simplifying the expression Y = A'B'C'D + A'B'CD + A'BC'D + A'BCD' + A'BCD + AB'C'D + AB'CD + ABC'D', ultimately leading to Y = A'D + B'D + A'BC + ABC'D'. Participants emphasize the importance of recognizing and correctly applying simplification rules, such as factoring and using Karnaugh maps. One contributor successfully identifies an error in the initial approach, leading to a correct simplification. The process highlights the collaborative nature of problem-solving in Boolean algebra.
Rossy
Messages
8
Reaction score
1

Homework Statement


[/B]
How to simplife it? I would like to see a process of simplification.

Y = A'B'C'D + A'B'CD + A'BC'D + A'BCD' + A'BCD + AB'C'D + AB'CD + ABC'D'

The ' denotes a bar over the previous letter.My second question is:

Y = BC + AB'D = (uploaded picture)

Y = A'D + B'D + A'BC + ABC'D' = ??

Homework Equations



Simplification Rules

The Attempt at a Solution



I tried it but can't get to the correct result.

The correct result should be (made through Karnaugh map):

Y = A'D + B'D + A'BC + ABC'D'Thank you for any advices and I'm sorry for my english.
 
Physics news on Phys.org
uploaded pic
 

Attachments

  • asd.PNG
    asd.PNG
    2.6 KB · Views: 500
Rossy said:
How to simplife it? I would like to see a process of simplification.

Y = A'B'C'D + A'B'CD + A'BC'D + A'BCD' + A'BCD + AB'C'D + AB'CD + ABC'D'
Hi Rossy. :welcome:

Break it down into manageable parts, e.g., look at "taking out a common factor"

A'B'C'D + A'B'CD = A'B'D(C' + C) = ?[/color]

Can you complete this simplification?
 
Hi NascantOxygen,

it's A'B'D

Could you look at the image I uploaded, it's my attempt.. as you can see I can't get to the right solution.
 

Attachments

  • 17821204_1861158663910241_608032167_n.jpg
    17821204_1861158663910241_608032167_n.jpg
    41.8 KB · Views: 599
The most obvious mistake is that you have ignored one term in the given expression, viz.,

+ A'BC'D +
 
In Boolean algebra you may encounter an expression such as (C + C' D) and wish to simplify it. One way is to AND the C term with something having the value TRUE, and I'll choose (1 + D) which has the value 1 because anything ORed with TRUE is TRUE.

C(1 + D) + C' D

= C.1 + CD + C'D

= C + D(C + C')

= C + D
 
So if I take this expression A'BC'D + ABC'D' I can simplyfy it like this BC'(A + D)(A' + D') but how do I continue?
 
Rossy said:
So if I take this expression A'BC'D + ABC'D' I can simplyfy it like this BC'(A + D)(A' + D') but how do I continue?
You can't go further with that. You have extracted the factor BC' and that's it.
 
So you can't get from this expression

Y = A'B'C'D + A'B'CD + A'BC'D + A'BCD' + A'BCD + AB'C'D + AB'CD + ABC'D'

to this expression by Boolean Algebra

Y = A'D + B'D + A'BC + ABC'D'
 
  • #10
Rossy said:
So you can't get from this expression

Y = A'B'C'D + A'B'CD + A'BC'D + A'BCD' + A'BCD + AB'C'D + AB'CD + ABC'D'

to this expression by Boolean Algebra

Y = A'D + B'D + A'BC + ABC'D'
Yes, it can be simplified to that.
 
  • #11
Can't get further...
 

Attachments

  • 17909202_1864590843567023_391484843_n.jpg
    17909202_1864590843567023_391484843_n.jpg
    11.7 KB · Views: 629
  • #12
Take two of these terms (shown in green) and simplify them using the help shown in post #6

A'BC + B'D + A'BC'D + ABC'D'
 
  • #13
Is it right?
 

Attachments

  • 17918817_1865639636795477_1111429185_n.jpg
    17918817_1865639636795477_1111429185_n.jpg
    36.2 KB · Views: 1,126
  • #14
That is right.
 
  • #15
Thank you for your time and patience with me! :) The problem is solved.
 
  • Like
Likes NascentOxygen
Back
Top