The easy way to convert decimal numbers to binary (base 2)

  Рет қаралды 700,287

MindYourDecisions

MindYourDecisions

Күн бұрын

This video gives a method to convert decimal numbers to binary numbers quickly. This is a variation of the remainder system that is typically taught in courses. I like this method because it gives the answer in the correct order from left to right.
Proof of why it works: math.stackexchange.com/questio...
I also give a proof in this post on my blog (skip down to the section with the proof and the discussion of dividing by 2 and ignoring the remainder) mindyourdecisions.com/blog/201...
If you like my videos, you can support me at Patreon: / mindyourdecisions
Connect on social media. I update each site when I have a new video or blog post, so you can follow me on whichever method is most convenient for you.
My Blog: mindyourdecisions.com/blog/
Twitter: / preshtalwalkar
Facebook: / 168446714965
Google+: plus.google.com/1083366085665...
Pinterest: / preshtalwalkar
Tumblr: / preshtalwalkar
Instagram: / preshtalwalkar
Patreon: / mindyourdecisions
Newsletter (sent about 2 times a year): eepurl.com/KvS0r
My Books
"The Joy of Game Theory" shows how you can use math to out-think your competition. (rated 4/5 stars on 23 reviews) www.amazon.com/gp/product/150...
"The Irrationality Illusion: How To Make Smart Decisions And Overcome Bias" is a handbook that explains the many ways we are biased about decision-making and offers techniques to make smart decisions. (rated 5/5 stars on 1 review) www.amazon.com/gp/product/152...
"Math Puzzles Volume 1" features classic brain teasers and riddles with complete solutions for problems in counting, geometry, probability, and game theory. Volume 1 is rated 4.5/5 stars on 11 reviews. www.amazon.com/gp/product/151...
"Math Puzzles Volume 2" is a sequel book with more great problems. www.amazon.com/gp/product/151...
"Math Puzzles Volume 3" is the third in the series. www.amazon.com/gp/product/151...
"40 Paradoxes in Logic, Probability, and Game Theory" contains thought-provoking and counter-intuitive results. (rated 4.9/5 stars on 7 reviews) www.amazon.com/gp/product/151...
"The Best Mental Math Tricks" teaches how you can look like a math genius by solving problems in your head (rated 4.7/5 stars on 3 reviews) www.amazon.com/gp/product/150...
"Multiply Numbers By Drawing Lines" This book is a reference guide for my video that has over 1 million views on a geometric method to multiply numbers. (rated 5/5 stars on 1 review) www.amazon.com/gp/product/150...

Пікірлер: 875
@martinfranke9766
@martinfranke9766 4 жыл бұрын
You are not actually ignoring the remainders. The ones and zeroes you write below are, in fact, the remainders.
@xianartman
@xianartman 4 жыл бұрын
Martin Franke I noticed that, indeed acknowledging that might save a step. 13/2 = 6(r1) 6/2 = 3(r0) and 3/2 = 1(r1) Translating to 1101 For trinary it would be: 13/3 = 4(r1) 4/3 = 1(r1) Translating to 111 in trinary.
@xianartman
@xianartman 4 жыл бұрын
For fun in trinary: 244/3 = 81(r1) 81/3 = 27(r0) 27/3 = 9(r0) 9/3=3(r0) and 3/3=1(r0) Or 100001 in trinary 2014/3 = 671(r1) 671/3 = 223(r2) 223/3=74(r1) 74/3 = 24(r2) 24/3=8(r0) 8/3=2(r2) Or 2202121 in trinary
@phatkin
@phatkin 4 жыл бұрын
kek
@galvanizedcorpse
@galvanizedcorpse 4 жыл бұрын
shut up
@martinfranke9766
@martinfranke9766 4 жыл бұрын
Yes, the algorithm works for any base.
@InputBlackBoxOutput
@InputBlackBoxOutput 4 жыл бұрын
I believe this is just the usual way binary number is derived from decimal number. Step 1 - Keep dividing by 2 and note the remainder Step 2 - Reverse the remainders
@santhoshwagle9857
@santhoshwagle9857 4 жыл бұрын
exactly... sane thing came to my mind... nothing much new
@sankarshanmishra6326
@sankarshanmishra6326 4 жыл бұрын
So true
@brightjovanny
@brightjovanny 4 жыл бұрын
Ya right
@_vikramhegde_
@_vikramhegde_ 4 жыл бұрын
Yup the usual method
@luis_musik
@luis_musik 4 жыл бұрын
yeah, you can think of it as extracting the digits from a binary number: 1101 mod 2 = 1 110 mod 2 = 0 11 mod 2 = 1 1 mod 2 = 1
@raggebatman
@raggebatman 4 жыл бұрын
2014 KZbin: nah 2019 KZbin: Certainly, everybody wants to hear about this
@splashything3001
@splashything3001 4 жыл бұрын
I’m actually doing binary tho wth
@krzysztofmazurkiewicz5270
@krzysztofmazurkiewicz5270 4 жыл бұрын
well i did miss tgat one so its nice YT reminded it ;)
@IStMl
@IStMl 4 жыл бұрын
I need it for uni
@mohammadsaifh.aal-mutairi2358
@mohammadsaifh.aal-mutairi2358 5 жыл бұрын
Chief, this is it. As silly as it seems I've always been messing up my denary to binary conversions SOMEHOW, but now I finally know an even easier method thanks to you. Thank you for helping us students out
@jtc9098
@jtc9098 2 жыл бұрын
KZbin is a better teacher than your average college professor. Why can't teachers make it this simple? Quick, straight to the point, and simple.
@zenzen318
@zenzen318 4 жыл бұрын
This is just the same thing as normal conversion....
@Tim3.14
@Tim3.14 4 жыл бұрын
zeN zeN Sometimes different bases are taught in a way that doesn't make this so obvious... E.g. If someone writes the binary 110110, having first leaned that the places represent powers of 2, I might have been inclined to count the digits, realize the leading one is 2^5, followed by 2^4, etc., and so do 2^5+2^4+2^2+2^1 = 32+16+4+2 = 54, but it's much quicker to do the reverse of what's demonstrated in this video and just start from 1 and say times 2 plus 1 times 2 times 2 plus 1 times 2 plus 1 times 2, which gives 54. I guess what I'm saying is, sometimes educators emphasize the theory and neglect the practical calculation techniques. Probably depends on where you went to school. I'm glad we have high quality math youtubers (for all different levels of math) helping fill these gaps.
@sargamsandhya8591
@sargamsandhya8591 4 жыл бұрын
Right bro
@mahendersahu794
@mahendersahu794 4 жыл бұрын
He is just taking LCM without drawing rows and columns
@aylinalakbarli5433
@aylinalakbarli5433 7 жыл бұрын
our teacher explained this to us in a different way but this one is so much easier ... thank you
@lovemagic3692
@lovemagic3692 3 жыл бұрын
This really really helped me! The remainder part tripped me up, until you came along. Everyone wants to be so deep, but simplicity is key!
@hollowkos
@hollowkos 8 жыл бұрын
Very useful! Faster than the method my teacher taught me. I have an exam on Tuesday and I'll have to use this, wish me luck!
@anthonycooke1889
@anthonycooke1889 5 жыл бұрын
This by far is the best method I have been shown so far. Thank you!!
@thirtyacres7504
@thirtyacres7504 7 жыл бұрын
I have a quiz on Decimal, Binary, and Hexadecimal in two hours. Live saver. Truly. Thank you, sir!
@julezkelly6593
@julezkelly6593 5 жыл бұрын
Simple and to the point, love that its not complicated :)
@chirag4467
@chirag4467 6 жыл бұрын
Awesome,the method you thought was easier and accurate than my teacher thought me.
@erijqudus6654
@erijqudus6654 7 жыл бұрын
Thank you much. You made the process unbelievably simple. I wish other videos are clear and concise like this. I have recommended this tutorial to my class fellows as well. Great job.
@edwinloarca9470
@edwinloarca9470 3 жыл бұрын
Thanks for posting this mathematical challenges, they are fantastic!. They really have improved my thinking skills.
@toniokettner4821
@toniokettner4821 4 жыл бұрын
This is possible in any base. Just write sown the remainder after dividing by the base you want to get.
@jadosmart1298
@jadosmart1298 7 жыл бұрын
Thank you so much. I just started my first semester and I think I might be at the back at the class in terms of performance. And that's all because I forget the concept of binary over the years now.
@greatbriton8425
@greatbriton8425 4 жыл бұрын
Love the simplicity and thinking behind this
@joan8733
@joan8733 6 жыл бұрын
This is awesome, easy to do. Will use this method this coming exams. Thank you very much 😊
@hidden0ne
@hidden0ne 6 жыл бұрын
The BEST and fastest way to convert decimals into binary. Do not use any other method and best for DCCL testing. Great job and thanks for the video. Excellent work.
@TechGameLive2905
@TechGameLive2905 5 жыл бұрын
The coolest and simplest method ever thanks buddy ❤ it gonna help.me get good marks now TMRW in my exam
@SgtSupaman
@SgtSupaman 4 жыл бұрын
This is a great trick, but I have to say you aren't actually "ignoring the remainder". You are just going back and placing the remainder beneath each number after the fact. This exact trick can be used to convert base 10 into any base. For instance, 445 to base 4 goes like this: 445/4=111(remainder 1); 111/4=27(remainder 3); 27/4=6(remainder 3); 6/4=1(remainder 2); 1/4=0(remainder 1) 1
@fuseteam
@fuseteam 4 жыл бұрын
yes i agree tho in base 4 you can't reproduce the remainders after the fact
@SgtSupaman
@SgtSupaman 4 жыл бұрын
@@fuseteam , right, you would want to keep track of remainders as you go in bases higher than 2 (technically you could do it after the fact, but it basically means doing the division a second time).
@fuseteam
@fuseteam 4 жыл бұрын
@@SgtSupaman yep while in binary you just have to look at the last digit of each result to reproduce the remainders
@martwest3261
@martwest3261 4 жыл бұрын
Thank you for pointing out it works for other bases too, even though it's a bit less efficient, it is still easier than what I have been using for 39 years.
@sajilkhalid6149
@sajilkhalid6149 5 жыл бұрын
I haven't understood this the entire semester and I got it in 3 minutes!!
@TechGameLive2905
@TechGameLive2905 5 жыл бұрын
Exactly buddy😂😂😂
@justinnichols9966
@justinnichols9966 4 жыл бұрын
I just learned more in 2 minutes 50 seconds and the short time I spent reading the comments, than I have in my hour long lecture. Thanks @everyone
@evananderson8452
@evananderson8452 4 жыл бұрын
This was very clever. Is there a shortcut for hexadecimal? Thanks
@clientornaka4690
@clientornaka4690 7 жыл бұрын
Broooo bless you! My computer teacher at VoTech was trying to explain this to me and i had no freking clue what he was talking about. ITS SO SIMPLE xD Thanks brother!
@AnujKumar-em8lv
@AnujKumar-em8lv 8 жыл бұрын
Best method ever. Handy in exams. Thanks a lot
@user-hl7lr8ld2i
@user-hl7lr8ld2i 4 жыл бұрын
Anuj Kumar this is the normal methode
@sangramjitchakraborty7845
@sangramjitchakraborty7845 4 жыл бұрын
This is the exact same method normally used to calculate this sort of thing
@BizzUK
@BizzUK 4 жыл бұрын
@@sangramjitchakraborty7845 not everywhere, we were never taught this method
@pivottech8881
@pivottech8881 2 жыл бұрын
@@sangramjitchakraborty7845 I wasn't taught this method...
@janna9029
@janna9029 9 жыл бұрын
Completely understood after watching this, a simple and easy way to do it. Thank you
@abeej6960
@abeej6960 9 жыл бұрын
why you never tell me this 😡
@DMatt1974
@DMatt1974 7 жыл бұрын
I am taking a networking course for my college degree. We are at the point of converting decimal to binary. The way that the tutorials (and fellow) students explain it have made my head spin. After watching your video, I consider myself an "expert" (LOL). Thank you, very much, for this tutorial.
@ryanjacob8957
@ryanjacob8957 6 жыл бұрын
Its so much easier to understand on video then on paper. Thanks!
@joelleforget3061
@joelleforget3061 4 жыл бұрын
This was so helpful to a newbie! Thank you!
@Handl3412
@Handl3412 6 жыл бұрын
Studying computer science and was so stuck on this , thank your video helped a lot.
@shivatejachavali787
@shivatejachavali787 5 жыл бұрын
Me tooo , I'm a wannabe tho
@josemiguelplanton4613
@josemiguelplanton4613 4 жыл бұрын
Never my teachers explain this to me. Because they ignore it!!! 👏🏼👏🏼👏🏼
@marvinmusambi7952
@marvinmusambi7952 5 жыл бұрын
Best method av come across .Easiest ever!Thank you
@prony5145
@prony5145 4 жыл бұрын
Wow! Thanks a lot man. Never knew its even possible to calculate binary digits
@billgates555
@billgates555 4 жыл бұрын
Great video. IMHO a good way to speed up one of the traditional methods
@aminblm
@aminblm 6 жыл бұрын
That’s the most clean way to calculate binary number I have ever seen !
@muralinagarajan8305
@muralinagarajan8305 4 жыл бұрын
Is this what you call a trick ?? This is the very original procedure to convert a decimal number into its binary equivalent.
@hugowhitacre3573
@hugowhitacre3573 4 жыл бұрын
I never learned it today, but some people might have already knew that so...¯\_(ツ)_/¯
@roygalaasen
@roygalaasen 4 жыл бұрын
This is the method I used when I was 13. Before that, around 9-10, if you had a 8 bit number, I checked if you could divide by 128, if you could you knew that was a “1”, subtract 128, and try 64 etc. That last method I invented myself for lack of having any books or other sources of information, just the English manual that came with my C64. (I didn’t know any English yet.)
@spotandjake1008
@spotandjake1008 4 жыл бұрын
I think he meant a trick for beginners rather than going online and finding some sort of converter
@galvanizedcorpse
@galvanizedcorpse 4 жыл бұрын
if this is too basic for you you can just leave
@roygalaasen
@roygalaasen 4 жыл бұрын
Гальванизированный Труп don’t forget: That this video is several years old, and KZbin dragged this out from the void.
@Time4House
@Time4House 5 жыл бұрын
best explanation of the decimal to binary conversion. thanks
@reginamartinez6547
@reginamartinez6547 5 жыл бұрын
I’m here in 2018. Why in the hell wasn’t my textbook this easy? I was so lost but found this video and now I get it. Thanks!
@royhj3119
@royhj3119 7 жыл бұрын
Teaching is a skill, he is an excellent skilled teacher.
@leandrodossantos9160
@leandrodossantos9160 8 жыл бұрын
Oh my god man I really thought I wasn't cut out for math but you just made this brilliant explanation about binary numbers which just blew my mind of how clear and well-explained that was. Thanks for the great video!!!
@nknnithinabc
@nknnithinabc 8 жыл бұрын
This video made my day, thanks
@shwaq8890
@shwaq8890 5 жыл бұрын
OMG THANK YOU FOR GOD'S SAKE IVE BEEN LOOKING FOR THIRTY MINUTES FOR A FUKIN EASY METHOD AND I FIND IT THANKS UR A LIFE SAVER, sorry had to write in caps lock I was over excited hahahahha
@jaythedrifter
@jaythedrifter 2 жыл бұрын
Finally someone explains this in a way that a fifth grader can understand, and not just assuming that everybody knows where to start! Thank you?
@coolduderj2652
@coolduderj2652 6 жыл бұрын
very very helpful thanks a ton this man deserves a gold trophy
@mikhailsalinas
@mikhailsalinas 4 жыл бұрын
This is absolutely mindblowing!!! Good job! 👏
@kunjalpandya
@kunjalpandya 7 жыл бұрын
this was the best and the easiest method i found on the net thanks a lot sir
@earljando8649
@earljando8649 5 жыл бұрын
No way! Thank you so much sirr this was way more easier than i thought thank you so much. This will save me in our exam later.
@naitiksingh4730
@naitiksingh4730 4 жыл бұрын
You solved my problem Bro...I found this method very easy then traditional one...luv u❤
@AkhiAkter-ti5wd
@AkhiAkter-ti5wd 6 жыл бұрын
Sir your teaching technique is so helpful.
@MrSeanPires
@MrSeanPires 6 жыл бұрын
hey man thanks alot this helps alot ... question do you have any video to convert into hex & octal ??
@TechRobot99
@TechRobot99 6 жыл бұрын
STOPPING BY TO SAY THANK YOU ♥
@kirsten9782
@kirsten9782 6 жыл бұрын
This is SO PERFECT!!! Thank you!!
@shantaeporter3164
@shantaeporter3164 6 жыл бұрын
You sir are a life saver great vid u put it in such away that its simple and takes no time to do tnk you!!!
@leonorreis749
@leonorreis749 6 жыл бұрын
OMG!!! Thank you SO much. This is RELLY GENIUS!!!
@literalcode
@literalcode 4 жыл бұрын
I love watching videos of people teaching my native language
@MsSiranda
@MsSiranda 8 жыл бұрын
your method is the easiest that I have ever learned.. thaks a lot
@catalyst0175
@catalyst0175 4 жыл бұрын
Not sure why there is so much criticism in the comments, but this is an elegant method to convert to Binary from Decimal. I get it that the remainders do not need to be "ignored", but the method of ignoring the remainders and replacing 1's for odd and 0's for evens also works just fine. Thank you to the OP.
@lonewolf9455
@lonewolf9455 6 жыл бұрын
holy... this method is amazingly quick! Thanks!
@lpeoples1868
@lpeoples1868 8 жыл бұрын
thank you so so so much I did not understand decimal into binary till you thank you. you have including details and not just steps. stating the place of Odd and Even had helped so much
@davidnjuguna5474
@davidnjuguna5474 8 жыл бұрын
easiest method!!!thanks
@manmann9862
@manmann9862 4 жыл бұрын
Why ignore the remainder when it's what you are going to write down at the end anyway?
@fuseteam
@fuseteam 4 жыл бұрын
because you can reproduce it either way
@dhwaneelkapadia3265
@dhwaneelkapadia3265 4 жыл бұрын
@@fuseteam wait repeat But slowly
@fuseteam
@fuseteam 4 жыл бұрын
@@dhwaneelkapadia3265 the remainders are derivable from the oddness of quotients
@leebougz
@leebougz 4 жыл бұрын
@@dhwaneelkapadia3265 I think he means that you'll always get remainder 0 on even numbers and remainder 1 in odd numbers so you needn't note them
@calebolsen6175
@calebolsen6175 7 жыл бұрын
great video, teacher explained it a bit weird but it clicked when you explained it, thank you
@leelinkGOML
@leelinkGOML 7 жыл бұрын
i wasn't well when my teacher thought this but now i know thanks man
@shehani_fernando.9593
@shehani_fernando.9593 8 жыл бұрын
Woa thanks dude! Helped alot in my exam!
@TheAngelChristine
@TheAngelChristine 7 жыл бұрын
thanks this is way easier than anything i've seen!
@jamesstevenson842
@jamesstevenson842 4 жыл бұрын
GENIUS, my teacher just literally told us to do binary by adding.
@track-past254
@track-past254 5 жыл бұрын
Thanks sooo much..this is the most explainable video and the others are hard to understand
@Funnyvideos-zy8vb
@Funnyvideos-zy8vb 7 жыл бұрын
it acts like tutorial during my exams👍👍👍
@julianh7284
@julianh7284 9 жыл бұрын
Any ideas where this would be useful in hardware I'd love to hear them
@MrShwaggins
@MrShwaggins Жыл бұрын
Thank you for your tutorial. Please make sure that you are doing this type of calc in the same direction (Right to left) since it does effect the answer. I was trying to figure out 93 and kept getting 29.
@viswaguntha820
@viswaguntha820 4 жыл бұрын
A really helpful video on binary numbers. Easy for exams.
@pradeep422
@pradeep422 4 жыл бұрын
why only for exam???
@mohammadfahrurrozy8082
@mohammadfahrurrozy8082 4 жыл бұрын
@@pradeep422 i think what he really means is that this is good for exams too
@JahMusicTube
@JahMusicTube 10 жыл бұрын
In alternative, you can just annotate the remainders and then read them backwards to get the same answer :P
@janna9029
@janna9029 9 жыл бұрын
That is the method my teacher taught us.
@ryashaum
@ryashaum 6 жыл бұрын
both work similarly
@prasadg7777
@prasadg7777 4 жыл бұрын
Can i apply this technique for all the numbers?
@chekitatheanimatedskeptic6314
@chekitatheanimatedskeptic6314 8 жыл бұрын
Best method ever! Will try to understand the proof bellow in the comments, but will really be useful even without the proof considering fast calculations. Thx very much. Will share to ever1 I can!
@Frontdesk_tragedy
@Frontdesk_tragedy 3 жыл бұрын
ok so i thought binary only went up to 8 spaces per thing, so the last one has 11 space, what do the additional 3 spaces equal to? clarification how i am learning binary in class so far [256][128][64][32][16][8][4][2][1] [ ][ ][ ][ ][ ][ ][ ][ ][ ] and by adding this up above where a I is i can double check my math. BUT for 2014 being 111 11011110 what do the numbers past 128 equal?
@souinguisal416
@souinguisal416 9 ай бұрын
Thank you. That is the best way and the best explanation. Thanks again
@praiseonionrings182
@praiseonionrings182 7 жыл бұрын
does this work for other bases?
@jkrai9684
@jkrai9684 7 жыл бұрын
yes, but because its base *2*, that's why you divide in half. for other bases, u probably have to divide by whatever number bases
@RealLifeInChina
@RealLifeInChina 8 жыл бұрын
The binary numbers are just the reminders of each division. It is better to directly write the remainder for each division, so you can keep track of each step.
@wenkexing6777
@wenkexing6777 3 жыл бұрын
Omg thank u so much ur a life saver!! The way ur explaining it is so understanding and easy to understand, thank u so much u save my life!! BEST method very useful for exams i must say so myself😁✋🏻
@aparnapriyanka2404
@aparnapriyanka2404 7 жыл бұрын
It is very useful and clear . Thank you. :)
@burhanchowdhury1544
@burhanchowdhury1544 4 жыл бұрын
Dear...thanks a lot..it helps me most...can you tell me how many technique book you published in math and computer(ict) related? How much does it cost? How can i get in bangladesh..
@shamekaharris5106
@shamekaharris5106 6 жыл бұрын
OMG I finally got it! You’re the best!
@CLC9209
@CLC9209 6 жыл бұрын
Thank you for this video, much appreciated.
@suashok785
@suashok785 7 жыл бұрын
thank u sir, it is so easy when u explain
@sriharianne5229
@sriharianne5229 9 ай бұрын
Very good and easy technique. I like it. Thank you very much.
@jjelhachmi14
@jjelhachmi14 5 жыл бұрын
thank you so much for posting this video its help me understaind and pass the quiz thanks again
@30IYouTube
@30IYouTube 4 жыл бұрын
Hey! The last example you showed was the year this video was posted!
@TOONSSTATION
@TOONSSTATION 6 жыл бұрын
Subscribed to your channel because you are best!!♥️♥️
@tonytiger7896
@tonytiger7896 8 жыл бұрын
this will be my cheat sheet for my test tomorrow thanks!
@ajinkyabujone3532
@ajinkyabujone3532 5 жыл бұрын
Thank you a lot Sir thanks for the very good method keep making videos like this..
@melanies3247
@melanies3247 9 жыл бұрын
FANTASTIC! Know 4 other ways to do this, but wanted something faster. Thanks!!!
@i-evi-l
@i-evi-l 4 жыл бұрын
Nice! Thanks for the simple explanation!
@AbdiPianoChannel
@AbdiPianoChannel 6 жыл бұрын
Thank you. Great example
@belikeadbi
@belikeadbi 7 жыл бұрын
Thank You so much, It was so easy, I din't know! Thankx
@scienceblossom6197
@scienceblossom6197 5 жыл бұрын
Awesome for IP addressing calculations :D Thank you
@dhairyagandha2937
@dhairyagandha2937 8 жыл бұрын
what should we do for a point decimal number ??? for ex - (899.65) in decimal then how to convert it into binary ??
@Kaleabe25
@Kaleabe25 5 жыл бұрын
Do you have for hexadecimal?
@riadussalehin--
@riadussalehin-- 3 жыл бұрын
It's cool to think of it this way!!
Solving An Insanely Hard Problem For High School Students
7:27
MindYourDecisions
Рет қаралды 3,4 МЛН
A Proof That The Square Root of Two Is Irrational
17:22
D!NG
Рет қаралды 6 МЛН
Alex hid in the closet #shorts
00:14
Mihdens
Рет қаралды 11 МЛН
Best KFC Homemade For My Son #cooking #shorts
00:58
BANKII
Рет қаралды 60 МЛН
Slow motion boy #shorts by Tsuriki Show
00:14
Tsuriki Show
Рет қаралды 8 МЛН
Is It Possible To Completely Fill a Klein Bottle?
7:01
The Action Lab
Рет қаралды 21 МЛН
How To Calculate Square Roots - Numerals That Changed Math Forever
10:16
MindYourDecisions
Рет қаралды 4,1 МЛН
This is How Easy It Is to Lie With Statistics
18:55
Zach Star
Рет қаралды 6 МЛН
What Is The Most Complicated Lock Pattern?
27:29
Dr. Zye
Рет қаралды 1,5 МЛН
Quest To Find The Largest Number
11:43
CodeParade
Рет қаралды 256 М.
Famous mathematician puzzled by child's homework
11:41
MindYourDecisions
Рет қаралды 147 М.
How to Calculate Faster than a Calculator - Mental Maths #1
5:42
mathOgenius
Рет қаралды 6 МЛН
Outside In
21:25
ssgelm
Рет қаралды 9 МЛН
How to calculate cube roots in your head
4:37
MindYourDecisions
Рет қаралды 15 МЛН
НОВЫЕ ФЕЙК iPHONE 🤯 #iphone
0:37
ALSER kz
Рет қаралды 97 М.
Новые iPhone 16 и 16 Pro Max
0:42
Romancev768
Рет қаралды 839 М.
Как распознать поддельный iPhone
0:44
PEREKUPILO
Рет қаралды 2,1 МЛН
АЙФОН 20 С ФУНКЦИЕЙ ВИДЕНИЯ ОГНЯ
0:59
КиноХост
Рет қаралды 1,1 МЛН