_Bunny's blog

By _Bunny, history, 2 hours ago, In English

hi everyone!

I read a blog write about formula of a^b = a'b + ab' and i dont understand. Someone can explain it for me pls :((

(sorry i'm poor E).

link: https://www.homeworklib.com/qaa/1383353/2prove-that-a-xor-b-a-xor-c-a-xor-b-b-xor

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
115 minutes ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by _Bunny (previous revision, new revision, compare).

»
56 minutes ago, # |
  Vote: I like it 0 Vote: I do not like it

lol, that whole blog is shit. (a xor b) + (a xor c) = (a xor b) + (b xor c) is not true. U got (a xor b) on both sides, so basically ur saying that (a xor c) = (b xor c) which doesn't make sense. Simplest example you can prove it yourself is a = 1, b = 0, c = 1

»
41 minute(s) ago, # |
  Vote: I like it +4 Vote: I do not like it

It's not wrong. it's just that the blog is in the context of boolean algebra, where, in fact, a^b = a'b + ab'. Here, ' symbol represents the negation of the boolean value of the variables.

In boolean algebra, a^b is true when a is false and b true OR a is true and b is false, predicate that is represented with a' and b or a and b' which is just written as a'b + ab'