Twos complement: Negative numbers in binary

Sdílet
Vložit
  • čas přidán 9. 07. 2016
  • How can we represent negative numbers in binary? There are several ways. This video compares using a sign bit, ones complement, and twos complement. Twos complement is the most commonly technique because it's relatively easy to implement in hardware and it makes addition and subtraction with negative numbers easy.
    Support me on Patreon: / beneater

Komentáře • 828

  • @DUANEYAISER
    @DUANEYAISER Před 7 lety +1960

    Please tell me you're a paid instructor, and that you're paid well. You deserve it! This isn't just a CZcams series, this is a full fledged course Thank you!!

    • @IvanEedle
      @IvanEedle Před 6 lety +80

      He used to be employed by Khan Academy. I'm not sure, maybe still is.

    • @dendritedigital2430
      @dendritedigital2430 Před 4 lety +10

      @@IvanEedle monetized youtube? He has 400K subscribers.

    • @anandraj142
      @anandraj142 Před 4 lety +1

      czcams.com/video/pJ-zzHEsXZE/video.html
      2's complement shortcut

    • @ReasonMakes
      @ReasonMakes Před 4 lety +13

      @@dendritedigital2430 CZcams's monetization is a joke; they don't pay creators anywhere near industry standard. Half a *million* views is about $1,000 based on my experience making videos (and according to Social Blade he got $246 at worst, $2,000 at best). To get the avg salary of a Computer Science Professor he would need to do that 114 times a year (10 videos like this every month, excluding how many videos might be flops, excluding weekends, etc.) But that's an impossible expectation. This is his 9th most viewed video of all time. Social Blade estimates his revenue at $296 - $4.7k monthly (probably $2,500). That's minimum wage. I hope I'm wrong and he's getting more than that. I wonder if he has a Patreon?

    • @dendritedigital2430
      @dendritedigital2430 Před 4 lety +4

      @@ReasonMakes Patreon, Development Kits, etc...

  • @SJohnTrombley
    @SJohnTrombley Před 4 lety +757

    I probably had two's compliment taught to me half a dozen times in college. I get how it works. The properties are nice. Not once has anyone ever told me "treat the sign bit as a -(2^n) bit." This is a borderline life-changing revelation.

    • @jetison333
      @jetison333 Před 4 lety +2

      @美遊エーデルフェルト why?

    • @ChrisTsoulias
      @ChrisTsoulias Před 4 lety +40

      Some people need to visualize things, which in turn gives deeper understanding of subjects. I found this video while i was searching for a better understanding of 2s compiment and 1000 == -8 was the piece i needed to feel i understand it, because it helped visualize the whole thing. And in turn visualize very basic ALU operations better.

    • @mayukhbera
      @mayukhbera Před 4 lety +4

      SAME HERE

    • @alonebuthappy33
      @alonebuthappy33 Před 4 lety +3

      @@ChrisTsoulias how do we write positive 8 then 😅😅😅

    • @salesv
      @salesv Před 4 lety +17

      @@alonebuthappy33 You use more bits :)
      If you have 4 bits and 1 is for sign, you actually have only 3 bits for numbers, so you can represent at most 0b111 = 7.

  • @livium9184
    @livium9184 Před 7 lety +801

    By far the best explanation of two's complement.

    • @oussamaelhriki8160
      @oussamaelhriki8160 Před 4 lety +14

      especially the -8 part

    • @NoOne-oz7lc
      @NoOne-oz7lc Před 3 lety

      @@oussamaelhriki8160 true

    • @focus-freaks
      @focus-freaks Před 3 lety

      true

    • @srivatsarupadhya6116
      @srivatsarupadhya6116 Před 2 lety

      For sure!!

    • @Shredcheddar
      @Shredcheddar Před 11 měsíci

      It really is. I'm reading Harris' "Digital Design and Computer Architecture" which covers binary numbers in chapter 1 and although it's a fantastic book, its explanation still falls short of Ben's. Ben really shows the logic behind the pattern for those of us who need it spelled out. Mr. Eater you the man.

  • @hasnaa7316
    @hasnaa7316 Před rokem +19

    the way you first worked with flawed methods and then built your way to show us why adding 1 to the one's complement works better was really amazing . thank you so much

  • @TF2Gaming101
    @TF2Gaming101 Před 4 lety +90

    Oh my gosh the two's compliment is beautiful and I realized this at 12:18 that -8 makes so much sense

    • @Fera-gr5mm
      @Fera-gr5mm Před 4 lety +1

      Especially because you have 4 bits so you can have 16 numbers. Given that 0 has no sign, you have to assign 1 more number to either positive or negative side.

    • @swarnavasamanta2628
      @swarnavasamanta2628 Před 3 lety

      It's not only -8 ;) when you have more bits the most significant bit is always treated as a negative value of the highest bit order. If you really compare the signed representation to 2s complement you'll find that the series just goes in reverse ;). And the extra negative number is there only because there is 1 zero

    • @curie5312
      @curie5312 Před 2 lety

      i didnt understand it until this timestamp thanks lol

  • @mariobrito427
    @mariobrito427 Před 5 lety +37

    Been fiddling with bits for 20 years and I don't think i've ever seen this explained as clearly as this. The video is a joy to watch, great work!

  • @razsamy4274
    @razsamy4274 Před 7 lety +120

    A great way to explain not just the process of negative binary numbers but actually why two's complement is used.

    • @Kokurorokuko
      @Kokurorokuko Před 2 lety

      Exactly!

    • @zakariatalukdar2552
      @zakariatalukdar2552 Před 6 měsíci

      My random opinion as a random person would be that: considering the fact that 1 is being subtracted from each bits. We end up getting it's negative version. But... Since the représentation is basically 1 less so after everything we have to add back this 1 that we have taken from. But that is not full fledged and doesn't explain the fact that we have taken 1 from each bit. But collectively add 1 and we get to the original result. It's odd fr. 🤷‍♂️

  • @CastorTroy212
    @CastorTroy212 Před 4 lety +38

    This is far better explanation than the paid course at my university. Thank you so much.

  • @tomc642
    @tomc642 Před 5 lety +43

    Wow, best explanation ever. You explained it! In school they just say, here is the Two's complement, take it and don't ask why it works.

  • @akshanshkmr
    @akshanshkmr Před 4 lety +15

    I never understood the need for 2's compliment before this video
    Thank you so much

    • @gorillaau
      @gorillaau Před 4 lety +2

      I have sat through a few bad explanations of what's going on here... probably due to the tutor/lecturer not understanding it themselves.

  • @indjev99
    @indjev99 Před 7 lety +250

    That moment when you find a great channel, but the last upload is 2 months ago. And then the next day 3 videos go up.

  • @adrianolariu3767
    @adrianolariu3767 Před 6 lety +5

    A couple of years ago I had to learn those things for university, and I did, and got a good score, but due to the fact that I'm going to be a SW Developer that programs microcontrollers, I had to re-learn these things and watching this I've realised that I didn't understand the complement method the way I was supposed to. My teacher just told us to add 1 and that's it and now, after 4 years, I have finally understood why. You are awesome. I really hope a lot more students watch your videos.

  • @YaroKasear
    @YaroKasear Před 4 lety +23

    Another neat property of two's complement is sign extension.
    In some architectures you'll often find yourself converting a number between sizes. So for example, we have a 4-bit number we want to resize to an 8-bit number.
    1010 = -6
    When we extend the sign, what this means is when we convert to a larger number, every added bit copies the value of the most significant bit from the smaller number.
    11111010 = -6
    This also works on positive numbers:
    0100 = 4
    00000100 = 4
    The only drawback is ou have to make sure your hardware does not keep trying to sign-extend on an unsigned number.
    1000 = 8 (Unsigned)
    11111000 = 248 (Unsigned)
    Fortunately, the same hardware used to drive signed number behavior in twos-complement should be able to also ensure sign extension only kicks in when it's in use.

    • @bluesillybeard
      @bluesillybeard Před 3 lety +3

      O:
      my mind has been blown for the second time today

  • @thepvporg
    @thepvporg Před 6 lety +11

    Nice, you just said something that made sense.
    When I was in computer class in school, we were presented with a lesson on binary and it wasn't explained why these are one's or two's complement, just that is what they were called.

  • @RetroHoo
    @RetroHoo Před 6 lety +55

    You are a hero in my book. Amazing how you present these video's, you keep it interesting and the build-up is just right. Keeping it interesting while teaching is important but I always think that making people feel smart while teaching is equally important. In my opinion you nail both.

  • @chrishadjipetris6059
    @chrishadjipetris6059 Před rokem +7

    I remember at the digital logic lab when we had to design a 4-bit ALU that included logic AND, OR, XOR and add and sub, and with a 2-bit select signal we had to choose any one of the operations. As bonus, we had to build any other adder, except from ripple carry, display the result on a seven segment display in two digits and find a way to display the minus sign for negative numbers by using the third seven segment display and the negative numbers as positive ones next to the minus sign. I was the one who managed to do all these three, and I chose to implement a carry look ahead adder

  • @nicholasantonini6730
    @nicholasantonini6730 Před 3 lety +1

    THANK YOU. I have been taught this by 2 instructors at a college. NONE of them simplified this like you did. IT FINALLY CLICKED!!!

  • @l6e6i6n
    @l6e6i6n Před 3 lety +3

    i love how you explain everything bit by bit

    • @Shockload
      @Shockload Před 4 měsíci +2

      I see what you did there

  • @PhoenixClank
    @PhoenixClank Před 4 lety +27

    I see a lot of people with blown minds in the comments, at the fact that the "sign bit" is actually just a negative-valued bit. I'm *so glad* I was taught it like this in university. It just fit right into my head. It made sense from day one.

  • @TechnoSan09
    @TechnoSan09 Před 2 lety +1

    most just teach that 2 step process for getting negetive numbers
    but u explained how that 2s complement steps works
    thats really genius
    you are amazing brother

  • @szyszkienty
    @szyszkienty Před 4 lety +1

    You are definitely one of the best teachers I've ever seen. Your ability to give concise and interesting explanations that are in-depth, yet devoid of jargon and any unnecessary minutiae is truly marvellous! Thanks a lot for your amazing work!

  • @randybobandy9208
    @randybobandy9208 Před 3 lety +4

    13:06 My professor always had us yell, "Flip those bits!" when talking about twos complement. :D Great video!

  • @vivekvijaykumar43
    @vivekvijaykumar43 Před 2 lety +2

    I wanted to teach students how to solve pseudo-code and got stuck in bitwise operators. By far the clearest explanation of two's complement. Thank you, sir. I'll be teaching it exactly as you have done here.

  • @DavidCourtney
    @DavidCourtney Před 7 lety +25

    Glad to see this series continuing

  • @bonbonpony
    @bonbonpony Před 7 lety +196

    12:06 Wow! This is the first time I'm seeing someone assigning a (negative) place value to the sign bit, and it makes sense indeed! :o :D And I thought that I won't learn anything new from a two's complement arithmetics video. Silly me... :D

  • @darshanbilana5338
    @darshanbilana5338 Před 2 lety

    Been searching articles for more than 30 mins and didn't find any good ones and later found this . Easy and clear explaination . Thanks a lot

  • @alejskates2287
    @alejskates2287 Před 2 lety +2

    I feel really smart now considering how my own professor refered our class to this video and in this video, you came to the same conclusion as I did when I realized that the negative numbers are just -8 + whichever positive number the remaining 3 bits represent.

  • @hypergiray2225
    @hypergiray2225 Před 4 lety +2

    the realisation that 8's coulumn is actually -8's coulumn has saved me here. Thanks so much.

  • @samuelstermer6437
    @samuelstermer6437 Před 3 lety +1

    I've watched several videos about twos complement and am in a CSCI 101 class where our professor explained it several times. This is the explanation that really landed for me. 10/10 would learn again

  • @julinization
    @julinization Před 7 lety +86

    Where were you when I was in college? Awesome explanation

  • @willsi
    @willsi Před 6 lety +5

    Wish I had found your videos earlier in the semester. You've been better in a few minutes than my professor all semester. Click comment, but very true.

  • @linusporter1091
    @linusporter1091 Před 3 lety +2

    Thank youuuuuu, this has been confusing me about *why* we do it like this, and your -8 (or negative MSB) trick really makes it go from "a nuisance but necessary" to "check out this cool trick".

  • @ayasswain
    @ayasswain Před 7 lety +2

    The best explanation i have ever seen so far on 2's complement.

  • @Longuncattr
    @Longuncattr Před 6 lety +2

    I'd never thought of the high bit in two's complement as meaning -(2^(n-1)) before. That's incredibly useful. Thank you so much!

  • @RishabhKumar-bn4qj
    @RishabhKumar-bn4qj Před 5 lety +3

    THIS IS THE BEST EXPLANATION EVER ! I LITERALLY LOGGED ON TO COMMENT ON THIS VIDEO.
    KEEP UP THE MIND BLOWING WORK

  • @dnjj1845
    @dnjj1845 Před rokem

    This is by far the clearest explanation on the topic I've ever come across, every digital design book needs to footnote you.

  • @Akahatoo
    @Akahatoo Před 3 lety

    I have to say, even if it's an older video, the way you teach stuff is a real eye catcher, simple to get and understand.

  • @Wanttoknowabout
    @Wanttoknowabout Před 7 lety +1

    Great to see that you are uploading videos again! I had been waiting for this. Your videos have been really educational. Keep it up!

  • @hanzofactory
    @hanzofactory Před 2 lety

    Was watching this to prepare for an interview, and it completely blew my mind, thanks!

  • @gaiusjuliuscaesar9296
    @gaiusjuliuscaesar9296 Před 2 lety

    This is probably the best explanation of twos complement I've heard. My professor completely glossed over the meaning behind adding 1 and it never made sense to me. Thank you.

  • @AlexBlack-xz8hp
    @AlexBlack-xz8hp Před 2 lety

    You’re literally my favorite teacher!!! Learned more about computer fundamentals from this series than years of searching around the internet

  • @shrinathbhoslay3014
    @shrinathbhoslay3014 Před 6 lety +2

    My university teacher never explained me like this. Thank you very much sir. This is the best explanation on 2's compliment.

  • @jmckinney0040
    @jmckinney0040 Před 2 lety

    You are the best! I needed to learn exactly this!! I searched found some other video didn't like. When I saw a video recommended in the sidebar from you I didn't even finish the other video. And you did not disappoint! You started exactly with what I understand and then proceeded to show the different ways to encode a negative number! Man soooo good. Thank you so much Ben!

  • @BloodAsp
    @BloodAsp Před 3 lety

    My class didn't explain this, so I jumped right to youtube, and knew your words would be the winner, wonderful explination, and many thanks!

  • @CrispyCircuits
    @CrispyCircuits Před měsícem

    I was 12 years old with a Timex-Sinclair 1000 which did BASIC and assembly. I had problems understanding the binary math, but assembly was fun. I dabbled with assembly again a few years ago, which really clears up some subtle things about C programming. I still found the complements thing confusing. This video put things together in just the right way, explaining the three ways. It all makes sense now.
    You make very good videos. Thank you.

  • @codewaz
    @codewaz Před 2 lety +5

    Video time: 12:15
    To get the value (decimal numeral) of "looks like a sign bit" immediately, do this calculation: -(2^(n-1))
    Where n is the number of bits you have. For example: If you have 16 bits, the calculation is: -(2^(16-1)) = -32768
    Video time: 12:48
    An easier way to get a negative value from a positive one, is to flip all the numbers starting from "looks like a sign bit" until you get to the last 1, leave it as a 1 (don't flip). The rest of the 0's after the last 1, leave it as a 0 (don't flip).
    3 examples all in eight bits:
    A) 10 is 00001010 , so to get -10 in eight bits is 11110110
    B) 20 is 00010100 , so to get -20 in eight bits is 11101100
    C) 56 is 00111000 , so to get -56 in eight bits is 11001000

    • @abdulazizmohammed7715
      @abdulazizmohammed7715 Před rokem

      This has helped me to implement a binary indexed tree efficiently. Thanks!

  • @thecurious6721
    @thecurious6721 Před 9 měsíci

    Thank you very much Ben. I read about twos complement several times and didnt understand the logic behind it. You explained it in 10 minutes. I cant explain how much I appreciate your work. Thank you! 🙏

  • @alexanderelea8032
    @alexanderelea8032 Před 3 lety +2

    Your explanation is getting me through my circuits class, well done sir!

  • @osscar29
    @osscar29 Před 6 lety +3

    Thank you so much for this explanation, I've been struggling with this on the coursera "nand to tetris" course, this is by far the best explanation I can find. cheers.

  • @Luiza-fy2og
    @Luiza-fy2og Před rokem

    I've been desperately watching videos on yt trying to understand this but none of them could help me understand it at all. thank you very much for helping me w this.

  • @almasabdrazak5089
    @almasabdrazak5089 Před 2 lety +2

    did university teachers leave so many dislikes because they are jealous how this guy easily explains hard concepts for free ?

  • @lemtzas
    @lemtzas Před 4 lety +1

    This is the first time this has ever made sense to me. Thank you.

  • @stephenesebre7908
    @stephenesebre7908 Před 6 lety +1

    I don't know how to say thank you. You made this really simple. Some books and videos were driving me nuts ! God bless you man !

  • @majeebsharif6191
    @majeebsharif6191 Před 4 lety

    You are a really good teacher, I studied electronics at college and this was apart of the course and the lecturer was no where near this level of explaining

  • @dilby3246
    @dilby3246 Před 4 lety +1

    Incredibly helpful, thank you. We are learning this in my electrical engineering class, and you explain it so well.

  • @ling6701
    @ling6701 Před 5 lety

    best explanations on two complements I've ever seen so far, now I've got it. Thanks.

  • @tonyashworth1500
    @tonyashworth1500 Před 4 lety

    I've been struggling with this concept for a long time, but your explanation has now made it very clear to me. Thank you.

  • @hakarali6289
    @hakarali6289 Před 5 lety

    Yesterday night I was suffering so much because of this binary calculation,but thanks to you everything is going so well now.
    Hope to see more.

  • @lefauteuilparesseux7328

    Thanks for the very clear explanation! I randomly looked for this information while having no background knowledge and you made it understandable to me.

  • @expansivegymnast1020
    @expansivegymnast1020 Před 3 lety

    This is by far the best explanation of this concept on the internet. Thank you so much!

  • @arielkruger9547
    @arielkruger9547 Před 5 lety

    Absolutely FANTASTIC video. I finally am able to understand this concept that seemed so foreign to me just minutes ago. Thank you!

  • @kentrothermel5242
    @kentrothermel5242 Před 7 lety

    Thanks Ben, Great explanation of 2's Complement. This is a required session for anyone interested in IT, Automation, H/W, S/W, Data of any kind, etc!

  • @rothenbergt
    @rothenbergt Před 5 lety

    You are an amazing teacher. Thank you for these high-quality videos.

  • @lazarus6983
    @lazarus6983 Před rokem

    This video and the assembly to c code video might take the crown for most saved computer architecture exams😊

  • @user-gf2vz7tu1d
    @user-gf2vz7tu1d Před 29 dny

    Best video so far about the 1s and 2s compliment .I hope my tomorrows exam goes well thanks bud !!

  • @passionableaira3
    @passionableaira3 Před 3 lety

    Thank you so much for this video, I can see how much care you took to make sure the steps and explanations flow well and all the questions I've had were answered. I didn't understand this at all when I was in class! Thank you so so much!

  • @leander11
    @leander11 Před 5 lety

    Thank you for these videos. I just started electronical engineering school and don´t always get everything right away, your channel really helps.

  • @greatoutdoors6318
    @greatoutdoors6318 Před 3 lety

    I've tried to understand two's compliment before with no luck. This is the first time its made sense. Thanks!

  • @reblackened
    @reblackened Před 2 lety

    Just adding my voice to the choir Ben. I'm trying to learn assembly programming for the 6502, and yet again you've done a great job in teaching the fundamentals. Outstanding! Not just this video, but so many of them have been so helpful to me. I'm not as sharp as I used to be in my teens and I'm grateful for the pen and paper approach. I mean, if you can distil this sort of knowledge down to something that can be conveyed on pen and paper, it makes is so much more accessible to so many people. Just look at your video on the stack and stack pointer. Pen and paper! Thankyou for sharing your expertise with us all.

  • @bpccmath251calculusiihitch4

    First video of yours that I've seen. It was so great that I subbed immediately. GREAT explanation: short, simple, to the point, and, above all, it connects all the dots!

  • @raminmdn
    @raminmdn Před 5 lety

    Best explanation of two's complements so far. Really recommended for starters :) .

  • @rafihayder
    @rafihayder Před rokem

    I am an ICT Instructor. I will provide the same lesson tomorrow in my class. Wonderful teaching method 💜

  • @montexto69
    @montexto69 Před 3 lety

    Unbelievable how good your explanation is. It makes it look so easy.

  • @taipo101
    @taipo101 Před 2 měsíci

    Dear Ben, I did my Electronics degree in 1975 in Bolton UK and the instructor we had was from industry. Meaning? he was just like you...Absolutely brilliant. Thanks Ben you are an inspiration on how to tutor NOT teach !!!. By the way you sound just like my hero Roger McGuinn 😅

  • @AAAAAA-es1rm
    @AAAAAA-es1rm Před 5 lety

    This is the best explanation ever for 2s complement. It made me understand 2s complement and the other ways of representing negative numbers for my university course. The same goes for all your other videos which I use to revise for Electronics. I hope you upload more videos in the future with new content for Electronics Engineering and, if possible, in Maths and other Engineering areas. Thank you for this video.

  • @ServitorSkull
    @ServitorSkull Před 3 lety

    We went over ones and twos complement in my assembly class and had no idea why. Thanks!

  • @schoolForAnts
    @schoolForAnts Před 4 lety +1

    Excellent video and just for everyone's' knowledge, in One's Compliment arithmetic, you take your carry-over bit and add it back in on the right side.

  • @laureng312
    @laureng312 Před rokem

    I love this video! Thank you so much for such a comprehensive step-by-step breakdown.

  • @whenthethebeansstrikeback6728

    I've been having trouble and this cleared a lot of stuff up! And that -8 placement blew my mind!!

  • @eternalblithe
    @eternalblithe Před 2 lety

    WOW. Thank you. This is the most helpful two's complement lesson I've ever seen. I finally understand.

  • @ayushjindal4981
    @ayushjindal4981 Před 5 lety

    Very nice...generally people explain how to take 1s and 2s complement, but dont explain the science or the logic behind it. Great Work!!

  • @aldrineusebio192
    @aldrineusebio192 Před 5 lety

    from this day onward, i will never tell myself im stupid, it's just a matter of what type of teaching and learning apply to me, YOUVE ANSWERED ALL THE QUESTIONS I HAVE IN MIND, THANK U SIIIIIRRRRRRRRRRRRRRRRRRRRR

  • @ilaughalot6556
    @ilaughalot6556 Před 4 lety

    24seconds in and already I've finally understood all my confusion. Thank you!

  • @stevenshumadine1887
    @stevenshumadine1887 Před 4 lety

    Very well done. You explain the concept so that it may be easily understood. Thank you for this video.

  • @juanmanuelllaury4912
    @juanmanuelllaury4912 Před 4 lety

    The best practical explanation I've seen on the subject. Thank you.

  • @saykharng
    @saykharng Před 7 lety

    Thank you! Ben, your explanations are beyond awesome.

  • @girlmath-abolisher
    @girlmath-abolisher Před 4 lety

    Thank you so much for the video and your beautiful explanation. I have always 'understood' complements but never really been able to grasp the fundamental significance. This video changed that. Again, thank you!

  • @deqnski890able
    @deqnski890able Před 5 lety

    Thank you so, so much... I was reading my lecture and it was so confusing... Less than 14min later, your video makes everything so much clearer. Thank you

  • @Kokurorokuko
    @Kokurorokuko Před 2 lety

    I finally understood why ones complement wasn't good enough and why twos complement was needed. Thank you!!

  • @jorgehn7
    @jorgehn7 Před 7 lety +10

    Ones and twos complement:
    Ones complement, invert all the values.
    Twos complement, invert all values after the FIRST 1.
    e.g.:
    010110111000
    Ones complement:
    101001000111
    Twos complement:
    101001001000

    • @crummmycheese
      @crummmycheese Před 6 lety

      Wow,Amazing this helped me a lot.Thanks

    • @vimalsheoran8040
      @vimalsheoran8040 Před 6 lety +7

      Here's a simple on
      One's Complement : Invert all values
      2's Complement : Add 1 to the one's complement

  • @Nabilo8501
    @Nabilo8501 Před 4 lety +1

    man that lecture is super awesome and oversimplified

    • @McTheWeee
      @McTheWeee Před 4 lety

      I couldn't find the next video man :D
      P.s It is!

  • @iwantkirinmilktea
    @iwantkirinmilktea Před 5 lety

    Thank you for this amazing video! Just what I needed for my comp sci course.

  • @rsalehin
    @rsalehin Před 4 lety

    Very well organized and well-thought presentation. Thank you very much!

  • @-303-
    @-303- Před 2 lety

    This is a fantastic explanation. So clear. This is the best explanation I have seen yet on CZcams.

  • @epiNoesis
    @epiNoesis Před 5 lety

    Best video on twos complement. Thank you!

  • @DontTakeCrack
    @DontTakeCrack Před 3 lety

    ty, this video of 13 min is what i needed. not multiple 2-hour lectures of nonsense

  • @Handleme23
    @Handleme23 Před 6 lety

    Wow you made it seem so easy. Thank you for uploading and taking your time to do this!! You are awesome

  • @brain0dysfunctions
    @brain0dysfunctions Před 3 lety

    This is such a good explanation of twos complement! THANK YOU!!!

  • @sayantansarkar6900
    @sayantansarkar6900 Před 3 lety

    Truely, this is the best video for 2's complement explanation

  • @warecamel
    @warecamel Před 7 lety

    You did a better job at explaining this than the lecturer at my university, thank you.