Download ArticleDownload Article

Subtracting binary numbers is a bit different than subtracting decimal numbers, but by following the steps below, it can be just as easy or even easier.

Method 1
Method 1 of 2:

Using the Borrow Method

Download Article
  1. How.com.vn English: Step 1 Align the numbers as an ordinary subtraction problem.
    Write the larger number above the smaller number. If the smaller number has fewer digits, line them up on the right, as you would in a decimal (base ten) subtraction problem.[1]
  2. How.com.vn English: Step 2 Try some basic problems.
    Some binary subtraction problems are no different than base ten subtraction. Line up the columns and, starting from the right, find the result for each digit. Here are a few easy examples:[2]
    • 1 - 0 = 1
    • 11 - 10 = 1
    • 1011 - 10 = 1001
    Advertisement
  3. How.com.vn English: Step 3 Set up a more complicated problem.
    You only need to know one special "rule" to complete any binary subtraction problem. This rule tells you how to "borrow" from the digit to the left so you can solve a "0 - 1" column.[3] For the rest of this section, we'll set up a couple example problems and solve them using the borrow method. Here's the first:
    • 110 - 101 = ?
  4. Step 4 "Borrow" from the second digit.
    Starting from the right column (the ones place), we need to solve the problem "0 - 1." In order to do this, we need to "borrow" from the digit to the left (the twos place). This has two steps to it:
    • First, cross out the 1 and replace it with a 0, to get this: 1010 - 101 = ?
    • You've subtracted 10 from the first number, so you can add this "borrowed" number to the ones place: 101100 - 101 = ?
  5. How.com.vn English: Step 5 Solve the rightmost column.
    Now each column can be solved as usual. Here's how to solve the rightmost column (the ones place) in this problem:[4]
    • 101100 - 101 = ?
    • The rightmost column is now: 10 - 1 = 1. If you can't figure out how to reach this answer, here's how to convert the problem back to decimal:
    • 102 = (1 x 2) + (0 x 1) = 210. (The sub numbers indicate which base the number is written in.)
    • 12 = (1x1) = 110.
    • Therefore, in decimal form this problem is 2 - 1 = ?, so the answer is 1.
  6. How.com.vn English: Step 6 Finish the problem.
    The rest of the problem can now be solved easily. Solve it column by column, moving from right to left:
    • 101100 - 101 = __1 = _01 = 001 = 1.
  7. How.com.vn English: Step 7 Try a difficult problem.
    Borrowing comes up a lot in binary multiplication, and sometimes you'll need to borrow multiple times just to solve one column. For example, here's how to solve 11000 - 111. We can't "borrow" from a 0, so we need to keep borrowing from the left until we turn it into something we can borrow from:[5]
    • 10110000 - 111 =
    • 10111001000 - 111 = (remember, 10 - 1 = 1)
    • 1011100110010 0 - 111 =
    • Here it is written more tidily: 1011100 - 111 =
    • Solve column by column: _ _ _ _ 1 = _ _ _ 0 1 = _ _ 0 0 1 = _ 0 0 0 1 = 1 0 0 0 1
  8. How.com.vn English: Step 8 Check your answer.
    There are three ways to check your answer.[6] One quick way is to find a binary calculator online and plug in the problem. The other two methods are still useful, since you may need to check by hand on a test, and they will make you more familiar and comfortable with binary numbers:
    • Add in binary to check your work. Add the answer together with the smaller number, and you should get the larger number. Using our last example (11000 - 111 = 10001), we get 10001 + 111 = 11000, which is the larger number we started with.
    • Alternatively, convert each number from binary to decimal and see whether it is true. Using the same example (11000 - 111 = 10001), we can convert each number into decimal and get 24 - 7 = 17. This is a true statement, so our solution is correct.
  9. Advertisement
Method 2
Method 2 of 2:

Using the Complement Method

Download Article
  1. How.com.vn English: Step 1 Align the two numbers as you would in decimal subtraction.
    This method is used by computers to subtract binary numbers, since it uses a more efficient program. For a human used to ordinary decimal subtraction problems, this is probably the more difficult method to use, but could be useful to understand as a programmer.[7]
    • We'll use the example 101 - 11 = ?
  2. How.com.vn English: Step 2 Append leading zeros if necessary to represent both numbers with the same number of digits.
    For example, convert 101-11 to 101-011 so that both have three digits.[8]
    • 101 - 011 = ?
  3. How.com.vn English: Step 3 Switch the digits in the second term.
    Change all the 0s to 1s and all the 1s to 0s in the second term. In our example, the second term becomes: 011 → 100.[9]
    • What we're actually doing is "taking the one's complement," or subtracting each digit in the term from one. The "switching" shortcut works in binary, since the only two possibilities result in switching the term: 1 - 0 = 1 and 1 - 1 = 0.
  4. How.com.vn English: Step 4 Add one to...
    Add one to the new second term. Once you have the "reversed" term, add one to the result. In our example, we get 100 + 1 = 101.
  5. How.com.vn English: Step 5 Solve the new...
    Solve the new problem as a binary addition problem. Use binary adding techniques to add the new term to the original term, instead of subtracting:[10]
  6. How.com.vn English: Step 6 Discard the first digit.
    This method should always end up with an answer one digit too long. For example, our example problem involved three-digit numbers (101 + 101), but we ended up with a four digit solution (1010). Simply cross out the first digit, and you'll have the answer to the original subtraction problem:[11]
    • 1010 = 10
    • Therefore, 101 - 011 = 10
    • If you don't have an extra digit, you tried to subtract a larger number from a smaller one. See the tips section for how to solve problems like that, and start again.
  7. How.com.vn English: Step 7 Try this method in base ten.
    This method is called the "two's complement" method, since the "reverse the digits" steps results in the "one's complement," and then the number 1 is added. If you'd like a more intuitive understanding of why this method works, try it in base ten:[12]
    • 56 - 17
    • Since we're using base ten, we'll take the "nine's complement" of the second term (17) by subtracting each digit from nine. 99 - 17 = 82.
    • Change this into an addition problem: 56 + 82. If you compare this to the original problem (56 - 17), you can see that we've added 99.
    • 56+82=138. But since our changes added 99 to the original problem, we'll need to subtract 99 from the answer. Again, we'll use a shortcut, just like in the binary method above: add 1 to the total number, then delete the digit on the left (which represents 100):
    • 138 + 1 = 139 → 139 → 39 This is finally the solution to our original problem, 56-17.
  8. Advertisement

Community Q&A

Search
Add New Question
  • Question
    How can I make it easier to remember how to subtract binary numbers on an exam?
    How.com.vn English: Community Answer
    Community Answer
    This isn't a memorization technique, but you could try doing binary subtraction, then afterwards check whether you have got the correct answer by converting the numbers to decimal and then subtracting normally. This might help solidify your understanding and confidence in this topic.
  • Question
    How do I calculate binary numbers?
    How.com.vn English: Asad Naeem
    Asad Naeem
    Community Answer
    You can calculate by dividing with 2 and storing the remainder. For example: 12 dec binary = 12/2 = 6 (rem) 0. Now, 6/2 = 3 (rem) 0. Similarly, 3/2 = 1 (rem) 1, so binary will be 1100.
  • Question
    Is 99 binary or decimal?
    How.com.vn English: WaleedAlbaker
    WaleedAlbaker
    Community Answer
    It's a decimal number because 9 is included with the decimal digits which are (0,1,2,3,4,5,6,7,8,9) and you can not find the number 9 in binary because it contains only (0,1) digits.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Video

      Tips

      • To subtract a larger number from a smaller one, switch the order of the numbers, do the subtraction, then add a negative sign to the answer. For example, to solve the binary problem 11 - 100, solve for 100 - 11 instead, then add a negative sign to the answer. (This rule applies to subtraction in any base, not just binary.)
      • Mathematically, the complements method makes use of the identity a - b = a + (2n - b) - 2n When n is the number of digits in b, 2n - b is one more than the result of negating.
      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      About This Article

      How.com.vn English: Grace Imson, MA
      Reviewed by:
      Math Teacher
      This article was reviewed by Grace Imson, MA. Grace Imson is a math teacher with over 40 years of teaching experience. Grace is currently a math instructor at the City College of San Francisco and was previously in the Math Department at Saint Louis University. She has taught math at the elementary, middle, high school, and college levels. She has an MA in Education, specializing in Administration and Supervision from Saint Louis University. This article has been viewed 1,210,260 times.
      127 votes - 68%
      Co-authors: 51
      Updated: September 6, 2022
      Views: 1,210,260
      Article SummaryX

      To subtract binary numbers, simply align the 2 numbers and subtract as you would a regular problem. To subtract with the complement method, align the numbers and, if necessary, add zeros to the front of the second number to give it has an equal amount of digits. Change all the digits in the second term to their opposites, making the 0s into 1s and the 1s into 0s. Add 1 to the second term and add the 2 numbers as a binary addition problem. Then, remove the first digit to get the answer to your subtraction problem. For more help and examples, read on!

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 1,210,260 times.

      Reader Success Stories

      • How.com.vn English: Farrukh Atabekov

        Farrukh Atabekov

        Mar 28, 2018

        "Simple and yet useful. I just read the same tips in the digital design book but the stuff in there was too complex..." more
      Share your story

      Did this article help you?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement