Questions tagged [boolean-algebra]

Boolean algebras are structures which behave similar to a power set with complement, intersection and union. Use this tag for questions about Boolean algebras as structures, or about functions defined from/to Boolean algebras. For Boolean logic use the tag propositional-calculus.

Boolean algebras are structures which behave similar to a power set with complement, intersection and union. Use this tag for questions about Boolean algebras as structures, or about functions defined from/to Boolean algebras.

A Boolean algebra uses Boolean variables, typically denoted by capital letters, e.g. $A,B$, which can only take the values $0$ or $1$. Operators are $\land$ (conjunction), $\lor$ (disjunction) and $\lnot$ (negation).

For Boolean logic use the tag .

3083 questions
1
vote
1 answer

Simplify $F=MNO+Q'P'N'+PRM+Q'OMP'+MR$

How can we simplify $$F=MNO+Q'P'N'+PRM+Q'OMP'+MR$$ using the theorems of boolean algebra, not Karnaugh or anything else? Well, I can obviously simplify $MR(P+1)=MR$, so the expression becomes $$MNO+Q'P'N'+MR+Q'OMP'$$ But from here, I tried to use De…
Iulia
  • 41
  • 1
  • 3
1
vote
1 answer

Simplify the expression: $\sim ((p\rightarrow (\sim q \vee r))\wedge (\sim p \wedge \sim q \wedge \sim r ))$

Simplify the expression: $\sim ((p\rightarrow (\sim q \vee r))\wedge (\sim p \wedge \sim q \wedge \sim r ))$ Correct answer: $p\vee q\vee r$ I don't know how to start on this problem. Are there some useful laws to use here or is there something…
1
vote
1 answer

problem with simplifying the boolean function

Can someone explain me why $ AB \vee A \bar B C = AB \vee AC\\$ ? How do we get rid of $ \bar B \\$?
bvl
  • 55
  • 1
  • 1
  • 5
1
vote
1 answer

How can I simplify my boolean expression further

I have the following boolean expression that I want to simplify $$B\cdot D+ \overline{A\cdot B\cdot D} + \overline{B}\cdot C\cdot \overline{D}$$ Here is what I have been able to due so far $$B\cdot D+ \overline{A} + \overline{B} + \overline{D} +…
J.C
  • 113
  • 4
1
vote
2 answers

Understanding the simplification of a boolean expression

$ABC+AB'C+A'BC+A'BC'= AB'C+A'BC+A'BC$ I was reading a book about digital systems and it said that i could supress $ABC$ because it belongs to $BC$ but i can't just look to the expression and have a clear understanding of how this works. I can look…
1
vote
2 answers

Complementing a Boolean Function from Shannon's Expansion

Given a Boolean function $f: B^n \longrightarrow B$, using Shannon's expansion across variable $x$, I can write it as $f = xf_x + x^{'}f_{x^{'}}$. I want to complement $f$. Using Shannon's expansion of $f^{'}$ directly, I can write $$f^{'} =…
RayaneCTX
  • 147
1
vote
2 answers

Can any boolean expression with OR operators be converted to only AND operators?

I'm fairly new to Boolean algebra and I was wondering, using Boolean theorems,can any Boolean expression with an OR operators in it be converted to an equivalent expression using only AND operators? Do some expressions come to a point where you…
sparpo
  • 15
1
vote
2 answers

How to automatically create proofs in Boolean Algebra

Given a complete set of axioms (for example, associativity, communtative, distributivity, identity, annihilator, idepotence, and the "complementation" laws) for boolean algebra, I know any other true statement follows logically from these axioms. As…
1
vote
2 answers

How do I get Z' + X'Y' + XY from Z' + ZX'Y' + ZXY?

So I'm trying to simplify an equation using boolean algebra. I'm still very confused as to how all the rules work and such, but I feel like I'm very close to the answer. The original equation is (in canonical SOP form): Z'X'Y' + Z'X'Y + Z'XY' + Z'XY…
ESM
  • 17
1
vote
1 answer

Which properties of boolean algebra are used to prove the DeMorgan Laws?

Given a proof, I tried to analyze it and identify the properties of boolean algebra used at each step. However, I am stumped with the first line: $(a+b) + \sim(a) \cdot \sim(b) = (a + b + \sim(a))(a+b+\sim(b))$. Which property makes those two things…
1
vote
1 answer

Prove the identity in this boolean equation

$$AD'+A'B+C'D+B'C=(A'+B'+C'+D')(A+B+C+D)$$ Don't know where to begin with this.
Aaron
  • 551
1
vote
1 answer

Simplifying a Boolean algebra expression

~ABC + ~BCD + ~A~BC~D + ABCD = ? The solution book gives this answer: ~AC + CD I arrived this one: ACD My question is if the method used to simplify can affect the result or if should it be equal? Note: ~ stands for not ( ~A = Not A) My steps: ~ABC…
1
vote
2 answers

Finding the simplest circuit formula for this boolean logic statement

I have a boolean logic statement: boolean logic statement I get the truth table to derive the statement: truth table derived statement: (-A^-B^C) V (-A^B^-C) V (-A^B^C) V (A^-B^C) V (A^B^C) But when I apply de Morgan's to simplify it, I end up with…
1
vote
1 answer

Boolean algebra and closure axiom

A Boolean algebra is an algebraic system (B,$∨$,$∧$,$¬$), where $∨$ and $∧$ are binary, and $¬$ is a unary operation. One of the Boolean algebra axiom is: If $a$ and $b$ are elements of $B$, then $(a ∨ b)$ and $(a ∧ b)$ are in $B$. i.e. the set $B =…
V. Gai
  • 113
  • 4
1
vote
1 answer

Help with boolean algebra simplification and equivalent

I have the following boolean expression: See number 5 and 7 What I have trouble with are the actual steps of simplification using the boolean algebra laws for number 5 and 7 . I'm probably missing something really really obvious, because I'm trying…