_Bunny's blog

By _Bunny, history, 7 weeks 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
  • +7
  • Vote: I do not like it

»
7 weeks 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).

»
7 weeks ago, # |
  Vote: I like it -37 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

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it +8 Vote: I do not like it

    something something dunning kruger

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    ah yes, (x+y)^2 = x^2 + y^2

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it -8 Vote: I do not like it

    I can't lie: I was gonna make this exact comment a few days ago, but I saw your comment, so I didn't end up commenting myself. I was even gonna preface my comment with a snarky little phrase, as you have.

    Thank God you made it before me so we all can laugh at you instead.

»
7 weeks ago, # |
  Vote: I like it +37 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'

  • »
    »
    7 weeks ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    thanks u very much.

    • »
      »
      »
      7 weeks ago, # ^ |
      Rev. 2   Vote: I like it 0 Vote: I do not like it

      Also the definition of $$$+$$$ and $$$\times$$$ differs from our common one. In boolean algebra, “ $$$+$$$ ” basically means bitwise xor and “ $$$\times$$$ ” means bitwise and. One can verify that these operations forms a ring.