What is a ^ b and (a & b) << 1?2019 Community Moderator ElectionWhat is the best way to add two numbers without using the + operator?Adding two numbers without + operator (Clarification)adds two numbers without using + or any arithmetic operatorsAdding two numbers without using the addition operatorWhat is the most efficient way to deep clone an object in JavaScript?What is the preferred syntax for defining enums in JavaScript?What is the scope of variables in JavaScript?What is the !! (not not) operator in JavaScript?What is the JavaScript version of sleep()?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the 'new' keyword in JavaScript?What is the difference between call and apply?What is JSONP, and why was it created?What is the difference between Bower and npm?

Pre-Employment Background Check With Consent For Future Checks

When did hardware antialiasing start being available?

Print last inputted byte

What do the positive and negative (+/-) transmit and receive pins mean on Ethernet cables?

Why is the intercept typed in as a 1 in stats packages (R, python)

Magento 2: Make category field required in product form in backend

How to understand 「僕は誰より彼女が好きなんだ。」

The English Debate

Symbolism of 18 Journeyers

What will the Frenchman say?

Would mining huge amounts of resources on the Moon change its orbit?

Turning a hard to access nut?

Do people actually use the word "kaputt" in conversation?

categorizing a variable turns it from insignificant to significant

How to read string as hex number in bash?

Jem'Hadar, something strange about their life expectancy

UK Tourist Visa- Enquiry

I got the following comment from a reputed math journal. What does it mean?

What is the tangent at a sharp point on a curve?

What kind of footwear is suitable for walking in micro gravity environment?

is this saw blade faulty?

Print a physical multiplication table

Do native speakers use "ultima" and "proxima" frequently in spoken English?

When should a starting writer get his own webpage?



What is a ^ b and (a & b)



2019 Community Moderator ElectionWhat is the best way to add two numbers without using the + operator?Adding two numbers without + operator (Clarification)adds two numbers without using + or any arithmetic operatorsAdding two numbers without using the addition operatorWhat is the most efficient way to deep clone an object in JavaScript?What is the preferred syntax for defining enums in JavaScript?What is the scope of variables in JavaScript?What is the !! (not not) operator in JavaScript?What is the JavaScript version of sleep()?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the 'new' keyword in JavaScript?What is the difference between call and apply?What is JSONP, and why was it created?What is the difference between Bower and npm?










20















I was doing this question in leetcode.



Request:




Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.




I can't understand the solution it gave



Could someone explain how this getSum function works?



Here is the answer in JS:






var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));












share|improve this question



















  • 1





    Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

    – Ilmari Karonen
    2 days ago






  • 1





    Possible duplicate of Adding two numbers without + operator (Clarification)

    – Iłya Bursov
    2 days ago











  • @Ilmari Karonen Ok...I'll edit this question

    – Jacky
    2 days ago















20















I was doing this question in leetcode.



Request:




Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.




I can't understand the solution it gave



Could someone explain how this getSum function works?



Here is the answer in JS:






var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));












share|improve this question



















  • 1





    Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

    – Ilmari Karonen
    2 days ago






  • 1





    Possible duplicate of Adding two numbers without + operator (Clarification)

    – Iłya Bursov
    2 days ago











  • @Ilmari Karonen Ok...I'll edit this question

    – Jacky
    2 days ago













20












20








20


4






I was doing this question in leetcode.



Request:




Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.




I can't understand the solution it gave



Could someone explain how this getSum function works?



Here is the answer in JS:






var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));












share|improve this question
















I was doing this question in leetcode.



Request:




Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.




I can't understand the solution it gave



Could someone explain how this getSum function works?



Here is the answer in JS:






var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));








var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));





var getSum=function(a,b) 
const Sum = a^b; //I can't understand how those two line's code can
const carry = (a & b) << 1; //get the sum
if(!carry)
return Sum

return getSum(Sum,carry);
;
console.log(getSum(5,1));






javascript bitwise-operators






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago









flppv

1,506727




1,506727










asked Mar 16 at 3:22









JackyJacky

27910




27910







  • 1





    Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

    – Ilmari Karonen
    2 days ago






  • 1





    Possible duplicate of Adding two numbers without + operator (Clarification)

    – Iłya Bursov
    2 days ago











  • @Ilmari Karonen Ok...I'll edit this question

    – Jacky
    2 days ago












  • 1





    Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

    – Ilmari Karonen
    2 days ago






  • 1





    Possible duplicate of Adding two numbers without + operator (Clarification)

    – Iłya Bursov
    2 days ago











  • @Ilmari Karonen Ok...I'll edit this question

    – Jacky
    2 days ago







1




1





Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

– Ilmari Karonen
2 days ago





Please edit your question to clarify what it is that you don't understand about those lines. Are you unfamiliar with what the ^, & and << operators do in JavaScript? Or are you just confused about how they can be used to calculate the sum of two numbers? "I can't understand it" is not a good question.

– Ilmari Karonen
2 days ago




1




1





Possible duplicate of Adding two numbers without + operator (Clarification)

– Iłya Bursov
2 days ago





Possible duplicate of Adding two numbers without + operator (Clarification)

– Iłya Bursov
2 days ago













@Ilmari Karonen Ok...I'll edit this question

– Jacky
2 days ago





@Ilmari Karonen Ok...I'll edit this question

– Jacky
2 days ago












4 Answers
4






active

oldest

votes


















22














Let's learn by example. Imagine that a = 3 and b = 5



In binary notation they are a = 0011 and b = 0101



XOR:
a^b is XOR operator. When compare two bits it returns 0 if they are same and 1 if they are different. 01^10 => 11



So when we're doing a^b result will be 0110.



AND + SHIFT



a&b performs logical AND operation. It returns 1 only when a = b = 1.



In our case the result is 0001



<< shifts it(adds 0 on the right side) and result became 0010 which sets carry variable true. (only 0000 will be false).



Next iterations:



Everything repeats but now a = 0110 and b = 0010 (Sum and carry from last execution)



Now a^b = 0100 and (a&b)<<1 = 0100



Repeating again.



Now a^b = 0000 and (a&b)<<1 = 1000



And again.



Now a^b = 1000 and (a&b)<<1 = 0000. Now carry is finally false. And we're returning 1000 which is decimal 8.



Everything worked fine since 3+5=8






share|improve this answer




















  • 2





    This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

    – ilkkachu
    2 days ago











  • @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

    – flppv
    2 days ago


















31














It's basically replicating the half-adder



Adding 2 bits A and B produces 2 outputs: a sum and a carry bit like below



╔═══════╤═════════════╗
║ Input │ Output ║
╠═══╤═══╪═══════╤═════╣
║ A │ B │ carry │ sum ║
╟───┼───┼───────┼─────╢
║ 0 │ 0 │ 0 │ 0 ║
╟───┼───┼───────┼─────╢
║ 1 │ 0 │ 0 │ 1 ║
╟───┼───┼───────┼─────╢
║ 0 │ 1 │ 0 │ 1 ║
╟───┼───┼───────┼─────╢
║ 1 │ 1 │ 1 │ 0 ║
╚═══╧═══╧═══════╧═════╝


From the table we get the logic for the outputs: carry = A and B, sum = A xor B





XOR is also called a carry-less add operator, and represented by ⊕ with the + symbol inside



So the snippet above is working like this



const Sum=a^b; // sum = a xor b = a ⊕ b
const carry=(a&b)<<1; // carry = 2*(a and b), since we carry to the next bit
if(!carry)
return Sum; // no carry, so sum + carry = sum

return getSum(Sum,carry); // a + b = sum + carry


So a^b adds each bit in a and b simultaneously, leaving the non-carry sum of a and b in Sum. Then we have to add carry to the carry-less sum to get the final result, since we have only a half-adder instead of a full-adder which does a + b = a ⊕ b + carry



See also



  • Adding two numbers without + operator (Clarification)

  • What is the best way to add two numbers without using the + operator?

  • adds two numbers without using + or any arithmetic operators

  • Adding two numbers without using the addition operator





share|improve this answer

























  • If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

    – Sergiy Kolodyazhnyy
    2 days ago











  • @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

    – phuclv
    2 days ago






  • 2





    Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

    – ilkkachu
    2 days ago


















2














 int result = p ^ q; // XOR Operator, + without carry 0+0=0, 0+1=1+0=1, 1+1=0
int carry = (p & q) << 1; // Left Shift, 1+1=2
if (carry != 0)
return getSum(result, carry);

return result;


Start By p=5,q=6. Then the XOR would be,



0101
0110
------
0011


So, XORing results in (0011) which is actually 3 in decimal. Then ANDing p and q we get,



0101
0110
-------
0100


We get 4 (100 in binary) by ANDing 5 & 6, now if we left shift this value by 1, we get



 0100<<1=1000


So we get 8 (1000 in binary) after first recursion.As the result (carry variable) isnt zero, lets recursion again by xor value and carry value.



getSum(3, 8);


So, doing the first XORing we get,



0011
1000
-------
1011


The XORing this time yielded in 11 (1011 binary),so we perform the AND now,



0011
1000
-------
0000


We get all ZERO for ANDing 3 and 8, so this time the left shift operator also results in ZERO, as we have no 1 here which may give us a value by left shifing zeroes.
As the carry variable is now Zero, we come to the end of recursion and the XORed value will be the Sum, which is 11 (1011 in Binary).



Hope you get the working of the procedure. You can learn more by learning bitwise operation, as its the way the machine do the arithmatic operations.






share|improve this answer
































    0














    ^ is XOR, a bitwise operation. On a single bit, the rules are 0 ^ 0 = 0, 0 ^ 1 = 1, 1 ^ 0 = 0, and 1 ^ 1 = 0, and you simply extend perform it on corresponding bits when dealing with multi-bit values. The name is short for "exclusive or", and comes from the fact that A ^ B is 1 if and only if either A or B is 1, not both. But, it's more interesting to talk about its other name, ⊕. ⊕ is + but slightly different. You'll notice that the rules for ⊕ are similar to the rules for addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, and 1 + 1 = 10. ⊕ is +, except 1 ⊕ 1 = 0; that is, ⊕ is +, except without carrying. This holds for multiple bits: 011 + 001 = 100, because you carry a 1 out of the ones place into the twos place, and then carry a 1 again into the fours place. Then, 011 ⊕ 001 = 010, because you just don't carry.



    Now, when doing real addition, when do you carry? In binary, the answer is very simple: you carry a 1 into the next place when there are two 1s in a given place. This is easily understood as a bitwise AND, &. 1 & 1 = 1, and 0 otherwise. For 011 + 001, addition without carrying gives 011 ⊕ 001 = 010, and we can tell we need to carry a 1 out of the ones place because 011 & 001 = 001. The shifting in (a & b) << 1 turns a number "where do I need to carry from?" into "where do I need to add carries?": (011 & 001) << 1 = 010; I need to add a carry bit in the twos place.



    So, in getSum, we want to know a + b. We compute the addition without carrying with a ^ b, and we find where we need to add carry bits with (a & b) << 1. Now, we just need to add those two together. Well, we already have a function for adding numbers together; it's called getSum. So, we basically just write function getSum(a, b) return getSum(a ^ b, (a & b) << 1); , except we make sure to short-circuit if there is nothing to carry, saving us from infinite recursion.






    share|improve this answer






















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55193135%2fwhat-is-a-b-and-a-b-1%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      22














      Let's learn by example. Imagine that a = 3 and b = 5



      In binary notation they are a = 0011 and b = 0101



      XOR:
      a^b is XOR operator. When compare two bits it returns 0 if they are same and 1 if they are different. 01^10 => 11



      So when we're doing a^b result will be 0110.



      AND + SHIFT



      a&b performs logical AND operation. It returns 1 only when a = b = 1.



      In our case the result is 0001



      << shifts it(adds 0 on the right side) and result became 0010 which sets carry variable true. (only 0000 will be false).



      Next iterations:



      Everything repeats but now a = 0110 and b = 0010 (Sum and carry from last execution)



      Now a^b = 0100 and (a&b)<<1 = 0100



      Repeating again.



      Now a^b = 0000 and (a&b)<<1 = 1000



      And again.



      Now a^b = 1000 and (a&b)<<1 = 0000. Now carry is finally false. And we're returning 1000 which is decimal 8.



      Everything worked fine since 3+5=8






      share|improve this answer




















      • 2





        This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

        – ilkkachu
        2 days ago











      • @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

        – flppv
        2 days ago















      22














      Let's learn by example. Imagine that a = 3 and b = 5



      In binary notation they are a = 0011 and b = 0101



      XOR:
      a^b is XOR operator. When compare two bits it returns 0 if they are same and 1 if they are different. 01^10 => 11



      So when we're doing a^b result will be 0110.



      AND + SHIFT



      a&b performs logical AND operation. It returns 1 only when a = b = 1.



      In our case the result is 0001



      << shifts it(adds 0 on the right side) and result became 0010 which sets carry variable true. (only 0000 will be false).



      Next iterations:



      Everything repeats but now a = 0110 and b = 0010 (Sum and carry from last execution)



      Now a^b = 0100 and (a&b)<<1 = 0100



      Repeating again.



      Now a^b = 0000 and (a&b)<<1 = 1000



      And again.



      Now a^b = 1000 and (a&b)<<1 = 0000. Now carry is finally false. And we're returning 1000 which is decimal 8.



      Everything worked fine since 3+5=8






      share|improve this answer




















      • 2





        This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

        – ilkkachu
        2 days ago











      • @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

        – flppv
        2 days ago













      22












      22








      22







      Let's learn by example. Imagine that a = 3 and b = 5



      In binary notation they are a = 0011 and b = 0101



      XOR:
      a^b is XOR operator. When compare two bits it returns 0 if they are same and 1 if they are different. 01^10 => 11



      So when we're doing a^b result will be 0110.



      AND + SHIFT



      a&b performs logical AND operation. It returns 1 only when a = b = 1.



      In our case the result is 0001



      << shifts it(adds 0 on the right side) and result became 0010 which sets carry variable true. (only 0000 will be false).



      Next iterations:



      Everything repeats but now a = 0110 and b = 0010 (Sum and carry from last execution)



      Now a^b = 0100 and (a&b)<<1 = 0100



      Repeating again.



      Now a^b = 0000 and (a&b)<<1 = 1000



      And again.



      Now a^b = 1000 and (a&b)<<1 = 0000. Now carry is finally false. And we're returning 1000 which is decimal 8.



      Everything worked fine since 3+5=8






      share|improve this answer















      Let's learn by example. Imagine that a = 3 and b = 5



      In binary notation they are a = 0011 and b = 0101



      XOR:
      a^b is XOR operator. When compare two bits it returns 0 if they are same and 1 if they are different. 01^10 => 11



      So when we're doing a^b result will be 0110.



      AND + SHIFT



      a&b performs logical AND operation. It returns 1 only when a = b = 1.



      In our case the result is 0001



      << shifts it(adds 0 on the right side) and result became 0010 which sets carry variable true. (only 0000 will be false).



      Next iterations:



      Everything repeats but now a = 0110 and b = 0010 (Sum and carry from last execution)



      Now a^b = 0100 and (a&b)<<1 = 0100



      Repeating again.



      Now a^b = 0000 and (a&b)<<1 = 1000



      And again.



      Now a^b = 1000 and (a&b)<<1 = 0000. Now carry is finally false. And we're returning 1000 which is decimal 8.



      Everything worked fine since 3+5=8







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited 2 days ago

























      answered Mar 16 at 3:43









      flppvflppv

      1,506727




      1,506727







      • 2





        This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

        – ilkkachu
        2 days ago











      • @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

        – flppv
        2 days ago












      • 2





        This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

        – ilkkachu
        2 days ago











      • @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

        – flppv
        2 days ago







      2




      2





      This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

      – ilkkachu
      2 days ago





      This only seems to discuss that particular case, not how the algorithm works in general. How are we to know from this that it works for all possible inputs?

      – ilkkachu
      2 days ago













      @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

      – flppv
      2 days ago





      @ilkkachu you can try different input values, it will work with maybe different number of iterations. My goal was to explain the algorithm by example.

      – flppv
      2 days ago













      31














      It's basically replicating the half-adder



      Adding 2 bits A and B produces 2 outputs: a sum and a carry bit like below



      ╔═══════╤═════════════╗
      ║ Input │ Output ║
      ╠═══╤═══╪═══════╤═════╣
      ║ A │ B │ carry │ sum ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 0 │ 0 │ 0 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 0 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 1 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 1 │ 1 │ 0 ║
      ╚═══╧═══╧═══════╧═════╝


      From the table we get the logic for the outputs: carry = A and B, sum = A xor B





      XOR is also called a carry-less add operator, and represented by ⊕ with the + symbol inside



      So the snippet above is working like this



      const Sum=a^b; // sum = a xor b = a ⊕ b
      const carry=(a&b)<<1; // carry = 2*(a and b), since we carry to the next bit
      if(!carry)
      return Sum; // no carry, so sum + carry = sum

      return getSum(Sum,carry); // a + b = sum + carry


      So a^b adds each bit in a and b simultaneously, leaving the non-carry sum of a and b in Sum. Then we have to add carry to the carry-less sum to get the final result, since we have only a half-adder instead of a full-adder which does a + b = a ⊕ b + carry



      See also



      • Adding two numbers without + operator (Clarification)

      • What is the best way to add two numbers without using the + operator?

      • adds two numbers without using + or any arithmetic operators

      • Adding two numbers without using the addition operator





      share|improve this answer

























      • If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

        – Sergiy Kolodyazhnyy
        2 days ago











      • @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

        – phuclv
        2 days ago






      • 2





        Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

        – ilkkachu
        2 days ago















      31














      It's basically replicating the half-adder



      Adding 2 bits A and B produces 2 outputs: a sum and a carry bit like below



      ╔═══════╤═════════════╗
      ║ Input │ Output ║
      ╠═══╤═══╪═══════╤═════╣
      ║ A │ B │ carry │ sum ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 0 │ 0 │ 0 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 0 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 1 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 1 │ 1 │ 0 ║
      ╚═══╧═══╧═══════╧═════╝


      From the table we get the logic for the outputs: carry = A and B, sum = A xor B





      XOR is also called a carry-less add operator, and represented by ⊕ with the + symbol inside



      So the snippet above is working like this



      const Sum=a^b; // sum = a xor b = a ⊕ b
      const carry=(a&b)<<1; // carry = 2*(a and b), since we carry to the next bit
      if(!carry)
      return Sum; // no carry, so sum + carry = sum

      return getSum(Sum,carry); // a + b = sum + carry


      So a^b adds each bit in a and b simultaneously, leaving the non-carry sum of a and b in Sum. Then we have to add carry to the carry-less sum to get the final result, since we have only a half-adder instead of a full-adder which does a + b = a ⊕ b + carry



      See also



      • Adding two numbers without + operator (Clarification)

      • What is the best way to add two numbers without using the + operator?

      • adds two numbers without using + or any arithmetic operators

      • Adding two numbers without using the addition operator





      share|improve this answer

























      • If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

        – Sergiy Kolodyazhnyy
        2 days ago











      • @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

        – phuclv
        2 days ago






      • 2





        Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

        – ilkkachu
        2 days ago













      31












      31








      31







      It's basically replicating the half-adder



      Adding 2 bits A and B produces 2 outputs: a sum and a carry bit like below



      ╔═══════╤═════════════╗
      ║ Input │ Output ║
      ╠═══╤═══╪═══════╤═════╣
      ║ A │ B │ carry │ sum ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 0 │ 0 │ 0 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 0 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 1 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 1 │ 1 │ 0 ║
      ╚═══╧═══╧═══════╧═════╝


      From the table we get the logic for the outputs: carry = A and B, sum = A xor B





      XOR is also called a carry-less add operator, and represented by ⊕ with the + symbol inside



      So the snippet above is working like this



      const Sum=a^b; // sum = a xor b = a ⊕ b
      const carry=(a&b)<<1; // carry = 2*(a and b), since we carry to the next bit
      if(!carry)
      return Sum; // no carry, so sum + carry = sum

      return getSum(Sum,carry); // a + b = sum + carry


      So a^b adds each bit in a and b simultaneously, leaving the non-carry sum of a and b in Sum. Then we have to add carry to the carry-less sum to get the final result, since we have only a half-adder instead of a full-adder which does a + b = a ⊕ b + carry



      See also



      • Adding two numbers without + operator (Clarification)

      • What is the best way to add two numbers without using the + operator?

      • adds two numbers without using + or any arithmetic operators

      • Adding two numbers without using the addition operator





      share|improve this answer















      It's basically replicating the half-adder



      Adding 2 bits A and B produces 2 outputs: a sum and a carry bit like below



      ╔═══════╤═════════════╗
      ║ Input │ Output ║
      ╠═══╤═══╪═══════╤═════╣
      ║ A │ B │ carry │ sum ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 0 │ 0 │ 0 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 0 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 0 │ 1 │ 0 │ 1 ║
      ╟───┼───┼───────┼─────╢
      ║ 1 │ 1 │ 1 │ 0 ║
      ╚═══╧═══╧═══════╧═════╝


      From the table we get the logic for the outputs: carry = A and B, sum = A xor B





      XOR is also called a carry-less add operator, and represented by ⊕ with the + symbol inside



      So the snippet above is working like this



      const Sum=a^b; // sum = a xor b = a ⊕ b
      const carry=(a&b)<<1; // carry = 2*(a and b), since we carry to the next bit
      if(!carry)
      return Sum; // no carry, so sum + carry = sum

      return getSum(Sum,carry); // a + b = sum + carry


      So a^b adds each bit in a and b simultaneously, leaving the non-carry sum of a and b in Sum. Then we have to add carry to the carry-less sum to get the final result, since we have only a half-adder instead of a full-adder which does a + b = a ⊕ b + carry



      See also



      • Adding two numbers without + operator (Clarification)

      • What is the best way to add two numbers without using the + operator?

      • adds two numbers without using + or any arithmetic operators

      • Adding two numbers without using the addition operator






      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited 2 days ago

























      answered Mar 16 at 5:13









      phuclvphuclv

      15.7k955230




      15.7k955230












      • If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

        – Sergiy Kolodyazhnyy
        2 days ago











      • @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

        – phuclv
        2 days ago






      • 2





        Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

        – ilkkachu
        2 days ago

















      • If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

        – Sergiy Kolodyazhnyy
        2 days ago











      • @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

        – phuclv
        2 days ago






      • 2





        Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

        – ilkkachu
        2 days ago
















      If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

      – Sergiy Kolodyazhnyy
      2 days ago





      If I'm not mistaken, it would be more accurate to say it replicates full adder, because of the function's recursive call to itself - one xor plus and stage leading to another.

      – Sergiy Kolodyazhnyy
      2 days ago













      @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

      – phuclv
      2 days ago





      @SergiyKolodyazhnyy here the input has only a and b which is the half adder. The full adder capability is achieved by the recursive call which gives you a + b + 2*carry. A real full adder takes 3 inputs a + b + carryIn = sum + 2*carryOut

      – phuclv
      2 days ago




      2




      2





      Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

      – ilkkachu
      2 days ago





      Might be worth pointing out that it's a half-adder for each bit simultaneously, unlike the truth table that only shows a single bit position.

      – ilkkachu
      2 days ago











      2














       int result = p ^ q; // XOR Operator, + without carry 0+0=0, 0+1=1+0=1, 1+1=0
      int carry = (p & q) << 1; // Left Shift, 1+1=2
      if (carry != 0)
      return getSum(result, carry);

      return result;


      Start By p=5,q=6. Then the XOR would be,



      0101
      0110
      ------
      0011


      So, XORing results in (0011) which is actually 3 in decimal. Then ANDing p and q we get,



      0101
      0110
      -------
      0100


      We get 4 (100 in binary) by ANDing 5 & 6, now if we left shift this value by 1, we get



       0100<<1=1000


      So we get 8 (1000 in binary) after first recursion.As the result (carry variable) isnt zero, lets recursion again by xor value and carry value.



      getSum(3, 8);


      So, doing the first XORing we get,



      0011
      1000
      -------
      1011


      The XORing this time yielded in 11 (1011 binary),so we perform the AND now,



      0011
      1000
      -------
      0000


      We get all ZERO for ANDing 3 and 8, so this time the left shift operator also results in ZERO, as we have no 1 here which may give us a value by left shifing zeroes.
      As the carry variable is now Zero, we come to the end of recursion and the XORed value will be the Sum, which is 11 (1011 in Binary).



      Hope you get the working of the procedure. You can learn more by learning bitwise operation, as its the way the machine do the arithmatic operations.






      share|improve this answer





























        2














         int result = p ^ q; // XOR Operator, + without carry 0+0=0, 0+1=1+0=1, 1+1=0
        int carry = (p & q) << 1; // Left Shift, 1+1=2
        if (carry != 0)
        return getSum(result, carry);

        return result;


        Start By p=5,q=6. Then the XOR would be,



        0101
        0110
        ------
        0011


        So, XORing results in (0011) which is actually 3 in decimal. Then ANDing p and q we get,



        0101
        0110
        -------
        0100


        We get 4 (100 in binary) by ANDing 5 & 6, now if we left shift this value by 1, we get



         0100<<1=1000


        So we get 8 (1000 in binary) after first recursion.As the result (carry variable) isnt zero, lets recursion again by xor value and carry value.



        getSum(3, 8);


        So, doing the first XORing we get,



        0011
        1000
        -------
        1011


        The XORing this time yielded in 11 (1011 binary),so we perform the AND now,



        0011
        1000
        -------
        0000


        We get all ZERO for ANDing 3 and 8, so this time the left shift operator also results in ZERO, as we have no 1 here which may give us a value by left shifing zeroes.
        As the carry variable is now Zero, we come to the end of recursion and the XORed value will be the Sum, which is 11 (1011 in Binary).



        Hope you get the working of the procedure. You can learn more by learning bitwise operation, as its the way the machine do the arithmatic operations.






        share|improve this answer



























          2












          2








          2







           int result = p ^ q; // XOR Operator, + without carry 0+0=0, 0+1=1+0=1, 1+1=0
          int carry = (p & q) << 1; // Left Shift, 1+1=2
          if (carry != 0)
          return getSum(result, carry);

          return result;


          Start By p=5,q=6. Then the XOR would be,



          0101
          0110
          ------
          0011


          So, XORing results in (0011) which is actually 3 in decimal. Then ANDing p and q we get,



          0101
          0110
          -------
          0100


          We get 4 (100 in binary) by ANDing 5 & 6, now if we left shift this value by 1, we get



           0100<<1=1000


          So we get 8 (1000 in binary) after first recursion.As the result (carry variable) isnt zero, lets recursion again by xor value and carry value.



          getSum(3, 8);


          So, doing the first XORing we get,



          0011
          1000
          -------
          1011


          The XORing this time yielded in 11 (1011 binary),so we perform the AND now,



          0011
          1000
          -------
          0000


          We get all ZERO for ANDing 3 and 8, so this time the left shift operator also results in ZERO, as we have no 1 here which may give us a value by left shifing zeroes.
          As the carry variable is now Zero, we come to the end of recursion and the XORed value will be the Sum, which is 11 (1011 in Binary).



          Hope you get the working of the procedure. You can learn more by learning bitwise operation, as its the way the machine do the arithmatic operations.






          share|improve this answer















           int result = p ^ q; // XOR Operator, + without carry 0+0=0, 0+1=1+0=1, 1+1=0
          int carry = (p & q) << 1; // Left Shift, 1+1=2
          if (carry != 0)
          return getSum(result, carry);

          return result;


          Start By p=5,q=6. Then the XOR would be,



          0101
          0110
          ------
          0011


          So, XORing results in (0011) which is actually 3 in decimal. Then ANDing p and q we get,



          0101
          0110
          -------
          0100


          We get 4 (100 in binary) by ANDing 5 & 6, now if we left shift this value by 1, we get



           0100<<1=1000


          So we get 8 (1000 in binary) after first recursion.As the result (carry variable) isnt zero, lets recursion again by xor value and carry value.



          getSum(3, 8);


          So, doing the first XORing we get,



          0011
          1000
          -------
          1011


          The XORing this time yielded in 11 (1011 binary),so we perform the AND now,



          0011
          1000
          -------
          0000


          We get all ZERO for ANDing 3 and 8, so this time the left shift operator also results in ZERO, as we have no 1 here which may give us a value by left shifing zeroes.
          As the carry variable is now Zero, we come to the end of recursion and the XORed value will be the Sum, which is 11 (1011 in Binary).



          Hope you get the working of the procedure. You can learn more by learning bitwise operation, as its the way the machine do the arithmatic operations.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 16 at 3:57

























          answered Mar 16 at 3:52









          Ayan_84Ayan_84

          530513




          530513





















              0














              ^ is XOR, a bitwise operation. On a single bit, the rules are 0 ^ 0 = 0, 0 ^ 1 = 1, 1 ^ 0 = 0, and 1 ^ 1 = 0, and you simply extend perform it on corresponding bits when dealing with multi-bit values. The name is short for "exclusive or", and comes from the fact that A ^ B is 1 if and only if either A or B is 1, not both. But, it's more interesting to talk about its other name, ⊕. ⊕ is + but slightly different. You'll notice that the rules for ⊕ are similar to the rules for addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, and 1 + 1 = 10. ⊕ is +, except 1 ⊕ 1 = 0; that is, ⊕ is +, except without carrying. This holds for multiple bits: 011 + 001 = 100, because you carry a 1 out of the ones place into the twos place, and then carry a 1 again into the fours place. Then, 011 ⊕ 001 = 010, because you just don't carry.



              Now, when doing real addition, when do you carry? In binary, the answer is very simple: you carry a 1 into the next place when there are two 1s in a given place. This is easily understood as a bitwise AND, &. 1 & 1 = 1, and 0 otherwise. For 011 + 001, addition without carrying gives 011 ⊕ 001 = 010, and we can tell we need to carry a 1 out of the ones place because 011 & 001 = 001. The shifting in (a & b) << 1 turns a number "where do I need to carry from?" into "where do I need to add carries?": (011 & 001) << 1 = 010; I need to add a carry bit in the twos place.



              So, in getSum, we want to know a + b. We compute the addition without carrying with a ^ b, and we find where we need to add carry bits with (a & b) << 1. Now, we just need to add those two together. Well, we already have a function for adding numbers together; it's called getSum. So, we basically just write function getSum(a, b) return getSum(a ^ b, (a & b) << 1); , except we make sure to short-circuit if there is nothing to carry, saving us from infinite recursion.






              share|improve this answer



























                0














                ^ is XOR, a bitwise operation. On a single bit, the rules are 0 ^ 0 = 0, 0 ^ 1 = 1, 1 ^ 0 = 0, and 1 ^ 1 = 0, and you simply extend perform it on corresponding bits when dealing with multi-bit values. The name is short for "exclusive or", and comes from the fact that A ^ B is 1 if and only if either A or B is 1, not both. But, it's more interesting to talk about its other name, ⊕. ⊕ is + but slightly different. You'll notice that the rules for ⊕ are similar to the rules for addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, and 1 + 1 = 10. ⊕ is +, except 1 ⊕ 1 = 0; that is, ⊕ is +, except without carrying. This holds for multiple bits: 011 + 001 = 100, because you carry a 1 out of the ones place into the twos place, and then carry a 1 again into the fours place. Then, 011 ⊕ 001 = 010, because you just don't carry.



                Now, when doing real addition, when do you carry? In binary, the answer is very simple: you carry a 1 into the next place when there are two 1s in a given place. This is easily understood as a bitwise AND, &. 1 & 1 = 1, and 0 otherwise. For 011 + 001, addition without carrying gives 011 ⊕ 001 = 010, and we can tell we need to carry a 1 out of the ones place because 011 & 001 = 001. The shifting in (a & b) << 1 turns a number "where do I need to carry from?" into "where do I need to add carries?": (011 & 001) << 1 = 010; I need to add a carry bit in the twos place.



                So, in getSum, we want to know a + b. We compute the addition without carrying with a ^ b, and we find where we need to add carry bits with (a & b) << 1. Now, we just need to add those two together. Well, we already have a function for adding numbers together; it's called getSum. So, we basically just write function getSum(a, b) return getSum(a ^ b, (a & b) << 1); , except we make sure to short-circuit if there is nothing to carry, saving us from infinite recursion.






                share|improve this answer

























                  0












                  0








                  0







                  ^ is XOR, a bitwise operation. On a single bit, the rules are 0 ^ 0 = 0, 0 ^ 1 = 1, 1 ^ 0 = 0, and 1 ^ 1 = 0, and you simply extend perform it on corresponding bits when dealing with multi-bit values. The name is short for "exclusive or", and comes from the fact that A ^ B is 1 if and only if either A or B is 1, not both. But, it's more interesting to talk about its other name, ⊕. ⊕ is + but slightly different. You'll notice that the rules for ⊕ are similar to the rules for addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, and 1 + 1 = 10. ⊕ is +, except 1 ⊕ 1 = 0; that is, ⊕ is +, except without carrying. This holds for multiple bits: 011 + 001 = 100, because you carry a 1 out of the ones place into the twos place, and then carry a 1 again into the fours place. Then, 011 ⊕ 001 = 010, because you just don't carry.



                  Now, when doing real addition, when do you carry? In binary, the answer is very simple: you carry a 1 into the next place when there are two 1s in a given place. This is easily understood as a bitwise AND, &. 1 & 1 = 1, and 0 otherwise. For 011 + 001, addition without carrying gives 011 ⊕ 001 = 010, and we can tell we need to carry a 1 out of the ones place because 011 & 001 = 001. The shifting in (a & b) << 1 turns a number "where do I need to carry from?" into "where do I need to add carries?": (011 & 001) << 1 = 010; I need to add a carry bit in the twos place.



                  So, in getSum, we want to know a + b. We compute the addition without carrying with a ^ b, and we find where we need to add carry bits with (a & b) << 1. Now, we just need to add those two together. Well, we already have a function for adding numbers together; it's called getSum. So, we basically just write function getSum(a, b) return getSum(a ^ b, (a & b) << 1); , except we make sure to short-circuit if there is nothing to carry, saving us from infinite recursion.






                  share|improve this answer













                  ^ is XOR, a bitwise operation. On a single bit, the rules are 0 ^ 0 = 0, 0 ^ 1 = 1, 1 ^ 0 = 0, and 1 ^ 1 = 0, and you simply extend perform it on corresponding bits when dealing with multi-bit values. The name is short for "exclusive or", and comes from the fact that A ^ B is 1 if and only if either A or B is 1, not both. But, it's more interesting to talk about its other name, ⊕. ⊕ is + but slightly different. You'll notice that the rules for ⊕ are similar to the rules for addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, and 1 + 1 = 10. ⊕ is +, except 1 ⊕ 1 = 0; that is, ⊕ is +, except without carrying. This holds for multiple bits: 011 + 001 = 100, because you carry a 1 out of the ones place into the twos place, and then carry a 1 again into the fours place. Then, 011 ⊕ 001 = 010, because you just don't carry.



                  Now, when doing real addition, when do you carry? In binary, the answer is very simple: you carry a 1 into the next place when there are two 1s in a given place. This is easily understood as a bitwise AND, &. 1 & 1 = 1, and 0 otherwise. For 011 + 001, addition without carrying gives 011 ⊕ 001 = 010, and we can tell we need to carry a 1 out of the ones place because 011 & 001 = 001. The shifting in (a & b) << 1 turns a number "where do I need to carry from?" into "where do I need to add carries?": (011 & 001) << 1 = 010; I need to add a carry bit in the twos place.



                  So, in getSum, we want to know a + b. We compute the addition without carrying with a ^ b, and we find where we need to add carry bits with (a & b) << 1. Now, we just need to add those two together. Well, we already have a function for adding numbers together; it's called getSum. So, we basically just write function getSum(a, b) return getSum(a ^ b, (a & b) << 1); , except we make sure to short-circuit if there is nothing to carry, saving us from infinite recursion.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 days ago









                  HTNWHTNW

                  10.1k1832




                  10.1k1832



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55193135%2fwhat-is-a-b-and-a-b-1%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

                      Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

                      Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High