Boolean Help: Solving Your Problem with Ease

  • Thread starter krispiekr3am
  • Start date
In summary, the conversation discusses simplifying a boolean expression in XOR, with various suggestions and approaches being offered. The ultimate goal is to find a simplified expression with only one variable or its complement. The conversation also touches on properties of XOR and using truth tables to solve the problem. The solution is eventually found and deemed correct by the participants.
  • #1
krispiekr3am
23
0
Can someone help me with this problem.
 

Attachments

  • untitled.JPG
    untitled.JPG
    4.5 KB · Views: 389
Mathematics news on Phys.org
  • #2
i wanted to proof that that boolean is true. thank you

i wanted to proof that that boolean is true. thank you
 
  • #3
I need to simplify the following expressions in XOR The simplified answer is only one variable or its complement
 
  • #4
I can't see the JPEG yet. Why don't you explain the problem and what you've done so far?
 
  • #6
One alternative - you can generate a truth table of the expression and see from the table what it is done, but I doubt that any Math teacher would like that, anyway

For example a
I believe that you can rearrange the terms and you can simplify them

e.g.

A'B XOR BC XOR AB XOR B'C'

becomes

A'B XOR AB XOR BC XOR B'C'

note:
A'B XOR AB - what does that tell you?

you can simplyfiy this to get just one variable

then take BC XOR B'C'

how can you get a more simple equivalent of this of a form Y XOR Z where Y and Z represent one variable e.g. B or C'.

When you have this done you should see the answer.

Example b is a tautology.
 
  • #7
A'b Xor Ab = B?
 
  • #8
Bc Xor B'c'
=(b Xor C)'
=b+c'
=b' Xor C = Bc + B'c'
= B=c?

So The Answer Would Be B Xor (b = C) = 0??
 
  • #9
B Xor (b Ξ C)
 
  • #10
TO approve this other problem
AB XOR A'B XOR A'B' XOR B'A
B(A XOR A') XOR B'(A' XOR A)

we know that A XOR A' =1

B XOR B'

and from one of the XOR property, X XOR X' = 1
THEREFORE B EQUALY 1?
THE SOLUTION WOULD BE 1?
let me know if that right?
 
  • #11
i think i did the 1st problem wrong...
here is the simplied solution
A'B xor BC xor AB xor B'C'
becomes
A'B xor AB xor BC xor B'C'

A'B xor AB = B (we know that A A' =1)

BC xor B'C'
= (B xor C')(C xor B')

B xor (B xor C')(C xor B')
 
  • #12
A'B xor BC xor AB xor B'C'

this is just one possibility:

step 1. - rearrange (correct)

A'B xor AB xor BC xor B'C'

step 2 - A'B xor AB is equivalent to just using B (correct), we have now

B xor BC xor B'C'

step 3 - BC xor B'C' is equivalent to B xor C' we are allowed to do this, since substituiting this will not alter the value of the overall truth table

B xor B xor C'

step 4 - B xor B will always be 0 we have now

0 xor C'

step 5 - 0 xor C' depends only on the value of C'

result: C'

this is ofcorse just one possibility.

you got the B example right.

A'B xor AB = B (we know that A A' =1)
what has A A' got to do with it?
 
  • #13
Thank You So Much. That Really Helped.
Thanks Everyone
 

What is Boolean?

Boolean is a data type that can have one of two values: true or false. It is often used in programming to make logical decisions.

What are Boolean operators?

Boolean operators are used to combine or manipulate Boolean values. The three basic Boolean operators are "AND", "OR", and "NOT".

How do I use Boolean in programming?

In programming, you can use Boolean to write conditional statements, such as if-else statements, to control the flow of your code based on certain conditions.

What is the difference between "AND" and "OR" in Boolean logic?

In Boolean logic, "AND" requires both operands to be true for the whole expression to be true, while "OR" only requires one of the operands to be true for the whole expression to be true.

Can I use more than two operands with Boolean operators?

Yes, you can use as many operands as needed with Boolean operators. However, it's important to consider the order of operations and use parentheses to clarify the logic if necessary.

Similar threads

  • General Math
Replies
5
Views
128
Replies
3
Views
856
  • General Math
Replies
26
Views
2K
Replies
11
Views
661
Replies
3
Views
1K
  • General Math
Replies
1
Views
1K
Replies
2
Views
722
  • Programming and Computer Science
Replies
2
Views
777
Replies
1
Views
395
Back
Top