Simplifying Expressions with Boolean Algebra - Homework Help

Click For Summary
SUMMARY

This discussion focuses on simplifying Boolean expressions using Boolean Algebra. The expressions analyzed include A + AB, A'BC + AC, and A'B + ABC' + ABC. The participant's solutions were evaluated, revealing that the simplifications for expressions a) and c) are correct, yielding A and AB respectively. However, the simplification for expression b) was incorrect, as the participant mistakenly simplified A'B to 0, leading to an erroneous conclusion that AC is equivalent to A'BC + AC.

PREREQUISITES
  • Understanding of Boolean Algebra principles
  • Familiarity with Boolean expressions and simplification techniques
  • Knowledge of truth tables for verification
  • Ability to apply basic Boolean rules such as x + 1 = 1 and x * x' = 0
NEXT STEPS
  • Study Boolean Algebra simplification techniques in depth
  • Learn how to construct and analyze truth tables for Boolean expressions
  • Explore common Boolean identities and their applications
  • Practice simplifying more complex Boolean expressions using software tools like Logic Friday
USEFUL FOR

Students studying digital logic design, computer science learners, and anyone interested in mastering Boolean Algebra for circuit design and optimization.

EEhokie13
Messages
11
Reaction score
0

Homework Statement


Simplify the following expressions using Boolean Algebra.

a) A + AB (A or A and B)
b) A'BC + AC (A(not) and B and C or A and C)
c) A'B + ABC' + ABC (A(not) and B or A and B and C(not) or A and B and C)

Homework Equations


Some simple boolean algebra rules.
x+1=0
x*x=x
x*x'=0


The Attempt at a Solution



For a, I got the answer of A.
I did:
A(1 + B)
A(1)
= A

For b, I got the answer AC.

I did:
C(A'B + A)
C(0 + A)
= AC

For c, I got the answer AB.
I did:
B(A' + AC' + AC)
B(A' + (A.C') + (A.C))
B(A' + (0) + A)
B(A' + A)
B(A)
= AB

Are my calculations correct or am I completely wrong? Thank you for your help.
 
Physics news on Phys.org
EEhokie13 said:

Homework Statement


Simplify the following expressions using Boolean Algebra.

a) A + AB (A or A and B)
b) A'BC + AC (A(not) and B and C or A and C)
c) A'B + ABC' + ABC (A(not) and B or A and B and C(not) or A and B and C)

Homework Equations


Some simple boolean algebra rules.
x+1=0
x*x=x
x*x'=0


The Attempt at a Solution



For a, I got the answer of A.
I did:
A(1 + B)
A(1)
= A
Looks good.
For b, I got the answer AC.

I did:
C(A'B + A)
C(0 + A)
= AC
How did you replace A'B with 0?
For c, I got the answer AB.
I did:
B(A' + AC' + AC)
B(A' + (A.C') + (A.C))
B(A' + (0) + A)
B(A' + A)
B(A)
= AB
It's not clear what you did from the second to third line, and you simplified A'+A incorrectly.
Are my calculations correct or am I completely wrong? Thank you for your help.
When you have only a few variables, it's easy enough to verify that you simplified an expression correctly by writing out the truth table. For example, for A'BC+AC, you get
Code:
A B C   A'  A'BC   AC    A'BC+AC
T T T   F     F     T       T
T T F   F     F     F       F
T F T   F     F     T       T
T F F   F     F     F       F 
F T T   T     T     F       T
F T F   T     F     F       F
F F T   T     F     F       F
F F F   T     F     F       F
Comparing the columns for AC and A'BC+AC, you can see they're not equal, so you know something went wrong in the simplification.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
10
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 5 ·
Replies
5
Views
7K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 4 ·
Replies
4
Views
10K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K