Meanwhile in France: let's call ninety 'four twenties and ten'
@MedlifeCrisis4 жыл бұрын
Abraham Lincoln's famous Gettysburg address starts "Four score and seven years ago" (=87). Was quite common in English too.
@pierreabbat61574 жыл бұрын
Welsh: pedwar ar bymtheg ar pedwar ugain Pipil: nawpual kashtul-nawi (quatre-vingt-quinze-quatre)
@ReaperUnreal4 жыл бұрын
And then you get Swiss French with "nonante" instead of "quatre-vingt-dix".
@lonestarr14904 жыл бұрын
Actually, when I count in my head (like seconds or whatever) I always go up to twenty and then start anew while remembering the amount of twenties I counted using my fingers. I do that mostly because the words for the numbers above twenty get quite long (in English as well as in German, my native language) and it takes too much time to actually "think" them.
@davutsauze83194 жыл бұрын
Correction: 'four twenties ten' there is no 'and'
@niarkozzy4 жыл бұрын
Base 20 was fine until we started wearing shoes
@peelsreklaw4 жыл бұрын
@@WeAreSoPredictable username checks out
@WeAreSoPredictable4 жыл бұрын
@@peelsreklaw You predicted a fantastic joke?
@peelsreklaw4 жыл бұрын
@@WeAreSoPredictable I'm sure that one is a big hit around your middle school lunch table.
@WeAreSoPredictable4 жыл бұрын
@@peelsreklaw It was a big hit at my imaginary tea party at kindergarten last week. We all had a good chuckle, and vowed never to grow up into grumpy old farts who don't like wang jokes. :)
@comradepeter874 жыл бұрын
Why y'all so salty lmao @WeAreSoPredictable just made a joke.
@jerryforde70873 жыл бұрын
The base 60 was based on counting using the thumb as the ‘cursor’ and the three phalanx on the front of each of the fingers, which gives 4 lots of three =12. This was rallied on the left hand 5 times for 60.
@gandolph9993 жыл бұрын
Great to know. Thanks.
@adrianscarlett3 жыл бұрын
Just like jade shows at 8:00
@VideoNOLA3 жыл бұрын
"Phalanges" is the plural.
@kodegadulo2 жыл бұрын
Technically, that’s not base “sixty” (= 6 x A), which is decimally-coded, but rather base “five dozen” (= 5 x C), which is dozenally-coded. Can’t do base subscripts here so I will put bases in brackets: 60[A]=50[C]. Divide sixty by 2 you get 30[A]=26[C]; by 3 you get 20[A]=18[C]; by 4 you get 15[A]=13[C]; by 5 you get 12[A]=10[C]; by 6 you get 10[A]=A[C]. So the most common divisions of sixty come out “rounder” when it’s decimally-encoded rather than dozenally-encoded. That’s because 5 really isn’t the most important factor, 2 and 3 are more important. So you lead with them by making the top digit 6=2x3. But using your thumb to count your dozen phalanges on one hand isn’t a trick for base sixty, it’s a trick for base twelve! With two hands, you can count from zero to eleven-dozen-eleven, and then you can stack a coin on the table each time you hit a gross.
@kodegadulo2 жыл бұрын
Actually, if you use the Korean method known as “chisanbop” you can easily count to 9 using one hand, or 99 using two hands. If you limit yourself to counting 0 to 59 using chisanbop, then you can manage base-sixty counting (decimally-encoded), without unnecessarily turning it into base-five-dozen counting (dozenally-encoded). (Per my previous comment above.)
@matthewmcneany4 жыл бұрын
It's so hard to evaluate the octal and duo-decimal systems because you have to unsee the decimal notation first.
@fluffy_tail43654 жыл бұрын
Especially with the fact that numbers have also a phonetic world whose construction is still based on the base-10 system. Like 25 in octal is the number we call "twenty-one" in most western languages, but it's called this way because it is 21 in base-10. Should we actually start calling it "twenty-five"?
@stevieinselby4 жыл бұрын
@@fluffy_tail4365 You would have to say "octal twenty-five" to make it clear. But now imagine trying to do the same in binary! Or in a base of more than 10 where you would need to devise new language around the extra digits. In hexadecimal, what would be the audible differentiation between 18 and 1A (eighteen or ay-teen), and how would you pronounce C3 (ceety-three, maybe, but that gives you problems with A0-AF v 80-8F again)? If we had developed our numeric system using a different base then the language would have developed with it. That's going to be something that's quite hard to unlearn now though!
@rmsgrey4 жыл бұрын
@@stevieinselby You could try "twocty-five" ("oct", "twocty", "throcty", "forocty", "fifocty", "sixocty", "sevocty"). For larger bases, rather than "ay", "alpha"; "cee" becomes "charlie", and so on - and then you can reduce them down to something easier to speak...
@danielschein68454 жыл бұрын
Agreed. When I was studying computer engineering we actually used base 16 because it translates so easily back and forth to binary. Once you get over the decimal habits (9+5=D) the arithmetic is actually easier. I was surprised she didn't mention it.
@matthewmcneany4 жыл бұрын
@@danielschein6845 Did you ever come across anything written by Jaron Lanier, I read his book a few years back about how a lot of modern technological systems have become locked into inefficient standards due to the fact that they are so tightly integrated with other systems. This feels like a longer term example of that: It might be that there's a 'better' counting system but we're unlikely to ever use it as societally we're so locked into decimal. I find it a bit hard to tell how seriously he's taken in serious academic comp sci circles as he's a bit of a maverick.
@rlrfproductions4 жыл бұрын
Great video! Surprised you didn't mention hexadecimal though, which is common in computer science specifically because it's a more human-friendly way to interact with binary data
@doctormo4 жыл бұрын
+0x01 for this, hex is used all the time by designers who input RGB colours as hex codes in websites and art programs for example #FF0000 (red) and #808080 (grey). It's a good notation which indicates numbers that have a fixed upper bound space, for example four byte numbers which are always 00000000 - FFFFFFFF and you can see the /scale/ of the number within the bound much more easily than if you used decimal.
@jimbert504 жыл бұрын
I was also going to mention this until I saw your comment. Both octal and hexadecimal work very well with binary systems, being very easy to switch representations. However, hex ultimately wins out because most computers have word lengths that are multiples of 4 bits. And a byte, which is a very commonly used term in the computer world, is simply 2 "hexits", if that's a word. Some calculators are able to do simple (4 function) math operations as well as logical functions in binary, octal, and hex and can convert representations to any of these formats, plus to/from decimal. I once used a calculator that was even able to do floating point operations in hexadecimal. It was useful for my job at the time. The history of math, and math itself, are very interesting subjects.
@marian-gabriel95184 жыл бұрын
@@jimbert50 The "hexits" you are inventing are called nibbles (or alternative spellings: nybbles and nybles) :) But I do like the sound of hexit to be honest :)
@adamkendall9974 жыл бұрын
Hex is just used so available bits don't get wasted.
@GrandActionPotential4 жыл бұрын
@@adamkendall997 All representations are a form of information compression. Some are more efficient than others using a given media.
@VitruvianSasquatch4 жыл бұрын
That Greek "mathematical alphabet" at the time of inception was the commonly used Greek alphabet, a reminder that sometimes additional symbols weren't needed, just additional context.
@jackpower44573 жыл бұрын
Braille numbers are similar, they are simply letter symbols with additional context markers
@danieldibenedetto1267 Жыл бұрын
Same thing applies for Roman numerals. Symbols taken straight from the Latin Alphabet.
@skaruts4 жыл бұрын
*Me:* _"Can you calculate the height of that building from here?"_ *Mathematician:* _"Sure. It's 1x."_
@1FatLittleMonkey4 жыл бұрын
Reminds me of the story of a mathematician doing a careers talk for a local school and a student asked "How many digits of Pi have you memorised?" He thought for a moment, then replied, "Well, one, I guess."
@comradepeter874 жыл бұрын
My height is EXACTLY 1.00 Vivek long.
@totally_not_a_bot4 жыл бұрын
Using a sextant, a laser range-finder and some trig, yes.
@dev_time4 жыл бұрын
lmao
@sharonjuniorchess4 жыл бұрын
Use quadrature for measurement. It fits in with Euclid.
@kckph42644 жыл бұрын
i thought the music was too loud in the intro but also it was really familiar, then i realised i still had minecraft open
@upandatom4 жыл бұрын
hahahaha
@Supremedalex4 жыл бұрын
That’s too good
@Nessolfte4 жыл бұрын
My god. Up and Atom controls our hearts *AND* Minecraft games? Something must be done.
@The4114 жыл бұрын
Lol, This kinda sums up the Internet.
@JohnnyThousand6054 жыл бұрын
This is such a human thing to do, thank you, you made me giggle =)
@BennettScottMusic4 жыл бұрын
I actually invented a new number system and alphabet around when Covid Quarantine began and I just found this video and feel so validated with everything I created. I made it for a fantasy book I’m writing so sadly not sure anyone will ever see it, as I’m not a very talented writer. But it’s nice to know it works in ways other people can easily understand. Thank you!!
@nicklockard2 жыл бұрын
What is your number system? Sounds pretty cool!
@balu.922 жыл бұрын
You can always write a separate blog post or explainer video about it on KZbin. Exposing it won't reveal anything critical about your book's storyline.
@BarbeqdBrwniez2 жыл бұрын
I mean that sounds interesting as hell. Im a HUGE fan of fantasy books that get a lil "crunchy" with how stuff works in the universe!
@SamBrickell2 жыл бұрын
Keep it up! The only way to become a better writer is to keep writing! :)
@vijaysridhar3512 жыл бұрын
Is there a blog or a video explaining your number system
@HungryGuyStories4 жыл бұрын
_"There are 10 types of people in the world: those who understand binary, and those who don't."_
@ShawnNac4 жыл бұрын
That's as simple as 1, 10, 11.
@VK-sp4gv4 жыл бұрын
"There are 3 types of mathematicians: those who can count, and those who can't."
@alancode21474 жыл бұрын
I bet 2/1 of all people that read that won't get it since they can't even do simple fractions.
@wingjaigaming82404 жыл бұрын
"there are 10 types of people in the world: those who understand binary, those who don't, and those who didn't expect this number to be in base 3" I learnt this from Numberphile
@ecchidragon80384 жыл бұрын
lol!
@paulg73024 жыл бұрын
I, for one, like Roman numerals. (Stewart Francis)
@choochbrigadier4 жыл бұрын
"I, for one, like Roman numerals. (Stewart Francis)" (Paul G)
@valentinfernandezcejas65904 жыл бұрын
""I, for one, like Roman numerals. (Stewart Francis)" (Paul G)" (Brigadier Chooch)
@WisdomFolly4 жыл бұрын
How X is ten -tial of you.
@RSPikachuAlpha4 жыл бұрын
“How X is ten -tial of you.” (Richard Cerasi)
@RCassinello4 жыл бұрын
Aye aye, there's two of them now.
@anieldayyanelday17714 жыл бұрын
'There are 360 degrees in a circle" Mathematicians: "We don't do that here"
@jonathanlange13394 жыл бұрын
There are two pies in the circle and they are delicious
@AllanDaemon4 жыл бұрын
Sorry. There is just one tau
@AxcelleratorT4 жыл бұрын
That's rad.
@jonathanlange13394 жыл бұрын
But can you eat a tau?
@TheYahmez4 жыл бұрын
@@AllanDaemon As there is also; the one great Tao.
@MultivectorAnalysis4 жыл бұрын
“You have learned the difference between a mathematical concept and its representation by symbols-many mathematicians never learn that!” - Magnus Hestenes
@daltontinoco70844 жыл бұрын
Representation theory, now that was a hard class oof
@susmitamohapatra92934 жыл бұрын
Ohhh, now I get it. So even though the symbols, bases and notations we use are arbitrary, the mathematical concepts like addition, multiplication and factorization are more universal. This leads me to think, just as different civilizations came up with the same basic concepts, something about these concepts are more universal that even Aliens may come up with. It's even more likely to think of these concepts of mathematics than those of languages, since different cultures have come up with completely different systems of writing that use different concepts. Truly, mathematics is the language of the universe.
@therealctoo41834 жыл бұрын
@@susmitamohapatra9293 That's why it was used on the voyager spacecraft.
@sarahgraves67594 жыл бұрын
@@susmitamohapatra9293 it's actually deeper than the mathematical operations being something intrinsic to reality (representing a universal idea) but the numbers themselves. Since a number represents a quantity. The idea of quantization its at the root of all math. (I have one apple. Specifically one.) even decimals (I ate half the apple... I have 0.5 apples) are representative of a concept that goes beyond even ideas. They can be thought to be an intrinsic part of our subjective reality. Obviously I'm a fan of the Platonic view of numbers.
@KaiHenningsen4 жыл бұрын
That boggles my mind. To me, that is such a fundamental concept that I hardly ever even think about it, and it applies to much more than math. Hell, they talk about confusing the map with the territory, and here you're telling me that there are people who confuse the specific printing with the map?!
@snoopyjc4 жыл бұрын
As an old school programmer, I’m still partial to base-16
@aniksamiurrahman63654 жыл бұрын
Base 16 is boring. It's like base-10 but a computer will always pick the hexa-girl you are fancying in the end.
@colleenforrest79364 жыл бұрын
Let's kick it old school and go back to base12!
@Wtfinc4 жыл бұрын
500 = 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 111110100 = 1 1 1 1 1 0 1 0 0 This is because I got confused when I expected to see 500 displayed as 000001010000000000000000
@EriknocTDW4 жыл бұрын
@@aniksamiurrahman6365 What does that even mean, "pick the hexa-girl you are fancying"? Hexadecimal is not boring, it's a fun base to work in. It's also a short-hand for every 4 bits (binary digits).
@aniksamiurrahman63654 жыл бұрын
@@EriknocTDW It means computer circuits can actually read Hex. For decimal, they are just mimicking. Besides, I do read Hex.
@adamev4 жыл бұрын
The assumption I make when I see the number 42 is that it's the answer to life, the universe and everything.
@farpointgamingdirect3 жыл бұрын
So long, and thanks for all the fish...
@yannickhufschmid58833 жыл бұрын
hey, thoughty2 here
@Mikigami3 жыл бұрын
Like 23?
@raffaelevalente78113 жыл бұрын
42 is definitely NOT a random number!
@arkaitor3 жыл бұрын
4, 8, 15, 16, 23 and... 42!!
@grr1943027273854 жыл бұрын
Your videos were always great, but there's been a noticeably big leap in quality. You're really throwing yourself at this thing. Keep up the good work
@upandatom4 жыл бұрын
Thank you I'm so glad you noticed!
@ETALAL4 жыл бұрын
@@upandatom I agree with OP. I really enjoyed this one and am looking forward to the next video. 🥇 🕊❤🤗🙏👉🌻
@thejimmydanly4 жыл бұрын
With how infrequently Michael uploads, I'm just gonna start pretending this channel is VSauce now.
@upandatom4 жыл бұрын
That is the compliment of the century Michael is my idol
@samarendra1094 жыл бұрын
Up&Atom and VSauce are different channels. But are they? . VSauce music plays.
@cubing72764 жыл бұрын
@@samarendra109 Vsause basically covers everything but up and atom is around math and science
@lonestarr14904 жыл бұрын
@@upandatom Michael, you, Grant from 3Blue1Brown, Tom Scott, Hank Green, Matt O'Dowd from PBS Space Time, Henry Reich from minutephysics, and Derek Muller - that would be my choice of colleagues to science around. Of course, I would be the one who provides the coffee.
@LonesomeTwin4 жыл бұрын
@@lonestarr1490 You're lucky, in that company I am unworthy to make the coffee.
@klaxoncow4 жыл бұрын
It's not just that duodecimal has more factors - 2, 3, 4 and 6 - but it also has useful "semi-factor" relationships with the numbers 8 and 9 (as 2 * 4 = 8, and 3 *3 = 9 - so though not factors themselves, they are related to factors). The number one less than base - 11, in this case - always has nice arithmetical tricks you can employ (true in any base). 10 is more awkward, but it's two less than base or 4/5ths of 12, so there are tricks. 5 is half that. So, the truth is, duodecimal does have the most factors, but it's also has a couple of "semi-factors" and, when you get familiar with its use, a bunch of tricks to handle 10 and 11. Leaving just 7 as the awkward black sheep. That supposedly lucky and magical prime number. Can't do much useful with it. I mean, we all know and use decimal. It'll do, and we might as well keep on with that, as everything's already working in that system. But if we were starting from scratch and designing, with some mathematical foresight, how our numbers ought to work, then you should totally go for 12. (The Babylonians multiplied that 12 by 5 - to get 60 - as that then added 5 to the factors. So every number up to 6 - 1, 2, 3, 4, 5, 6 - is a factor of 60. Thing is, 60 symbols is, I reckon, on the "bit too many" side.12 gets you a nice number of factors - and fairly easily calculated relationships with a few more - without going overboard on the digits.)
@jonadabtheunsightly4 жыл бұрын
"That said, it seems unlikely that we'd go through all the trouble of completely changing our number system, unless there were some kind of new discovery that fundamentally changed the way we do math." There was such a discovery, in the twentieth century. It was called the "transistor,",and its importance rivals that of paper. Nonetheless, we didn't change our everyday-use number system. We just developed a minor subculture of technically-inclined people who have basic knowledge of an additional number system (usually represented as base 16, though it corresponds fairly directly with the base-2 system that computers themselves use) that they only use when reasoning about or interacting with computers in a technical capacity.
@jessejordache18694 жыл бұрын
Boolean algebra and predicate calculus can and were completely represented by logic gates: i.e., wires and switches. That's where base 2, and its more concise cousin, base 16 come from. Transistors are much more complicated because they can hold multiple voltages, throwing your base 2 number system out the window. Rather than reinvent the wheel, transistors were instead used as a way to shrink the room-sized computers made of copper wire and various switches. The telegraph is base 2. The transistor is essentially orthogonal to number bases.
@manuell35054 жыл бұрын
@@jessejordache1869 All base systems that are an exponent of 2 are naturally compatible. A transistor is a automated switch. The only complicated thing about it is the behaviour of electrons in a semiconductor.
@therealpbristow4 жыл бұрын
@@manuell3505 Um, no. A transistor is more like an automated *valve* . It is a fundamentally *analog* device, capable of letting any amount of current flow (within limits) depending on the voltage present at the base. In order to build logic gates, and thus binary computers, we deliberately *force* the transistors to swing to either their maximum or minimum output value, switching as quickly and cleanly as possibly between the two. The most common early applications of transistors were in fields of analog audio and radio, and soon after video (the good old "transistor radio" boom of the 1960s, then compact portable TVs) - all strictly analog technologies at the time.
@manuell35054 жыл бұрын
@@therealpbristow What "um no"? You don't argue anything...
@walteralter90614 жыл бұрын
@@jessejordache1869 I see orthogonal in a sentence and I swoon before the face of equilibrium.
@michaeldean47124 жыл бұрын
I wonder if Roman numeral X was two Vs back to back.
@rlrfproductions4 жыл бұрын
Holy crap
@AgentOccam4 жыл бұрын
Don't be silly. No one can handle two Vs back to back. It's way too much Guarana and caffeine.
@Nudnik14 жыл бұрын
Try algebra with xv+ iv exp i =xi....solve for x.... lol
@patrickc17924 жыл бұрын
Should have used W instead...
@anothervanwinkle4 жыл бұрын
Interesting idea! Maybe one day the missing link will be found, which might have been a W, that evolved to X for efficiency reasons. Chisseling an X is way more convenient than VV.
@BillPalmer4 жыл бұрын
Base 16, hexadecimal (0-F) is also widely used in computer programming as it closely correlates to binary but is 4 times more compact
@honorsprenvg10914 жыл бұрын
to expand on that: hex has 3 factors: 2,4, and 8. Not as nice as base 12, but it has other advantages, as you stated, such as it's easy relation to binary octets (bytes).
@yosefmacgruber19204 жыл бұрын
@@honorsprenvg1091 It only takes 2 characters in hexadecimal to express the contents of a byte. (Plus perhaps an optional space for separation.) A common programming trick for very short machine code subroutines was to encode them into a text string of hexadecimal numbers, poke the characters into the input buffer, and then call the Monitor which was a ROM-based programming tool on the Apple ][ computers skipping the first part where it displays the "*" prompt and awaits a command to be entered, so it thinks that the string was just typed by the user, and it would place the machine code into memory without having to load from a separate Binary program file. It wasn't too bad for efficiency, as it only required 3 characters (or bytes) per byte of code. It might look something like, "300:5F 69 20 ...". Please do not ask me to remember actual opcodes. But I used to use that trick often back decades ago. Binary octets? Octal? Base 8? Wouldn't that be a byte (8 bits) is made of 2 4-bit nibbles? 0000 becomes 0. 1111 becomes F.
@trien304 жыл бұрын
Base 16 is better especially when using hexadecimals to write webpages with multiple colors and can convert to binary numbers easily.
@NotN82 жыл бұрын
Hex is awesome, but imagine if it replaced widely used decimal we'd need new words too. Like how would you say "5C% of the 88,4E5,C22 people agree". Fifty-see percent? Lol you can't say ayty-eff for AF b/c too similar to eighty-eff. It's possible, just need new words
@thenewnew199710 ай бұрын
It is only useful in binary context (like rgb which is one octet each (octet not octal, for those who are trigger happy about correcting people))
@keisorestis64874 жыл бұрын
4:15 That pun was so smooth it's just great
@gavinknight85604 жыл бұрын
I taught my eldest son binary at the same time as I taught him to count. It confused the hell out of his grade one teacher. Of course, he became an engineer.
@quill4444 жыл бұрын
I taught all of my kids in Base Seven; they're basically unemployable. - j q t -
@camrouxbg4 жыл бұрын
More of an indictment on the teacher and education system than anything. Early years teachers are usually (not always) afraid of math and don't understand what is actually going on.
@WeAreSoPredictable4 жыл бұрын
@@camrouxbg Be fair. They're often _just as afraid and lacking knowledge_ in science and English as well. :)
@timobrien21144 жыл бұрын
ha! I did the same thing. I taught our 11 kids binary. Our eldest became an engineer and the others are both rooming together in med school.
@Not.Your.Business4 жыл бұрын
@@timobrien2114 I guess that 66% of them don't enjoy math so much
@TaiFerret4 жыл бұрын
I would imagine Roman numerals aren't all that difficult to read once you're used to them. I feel like I'm getting better at them the more I try to read them. A pure positional system may actually be more difficult to read occasionally; that's why we use separators, like in 1,000,000 or short hand symbols, like k and M. As for different bases, I think base 6 is really good. It is a relatively small base, but not too small, and the multiplication table is really easy. The multiplication table of base 12 is much larger and therefore more difficult. There are also some larger bases that have interesting characteristics, such as base 120 and base 5040, but you have to use sub-bases in order to use them practically.
@MedlifeCrisis4 жыл бұрын
Absolutely loving seeing the beautiful new backdrop (great colour choice) and Indiana Jades. Dusting for those ancient artefacts was awesome! Any truth to Hindu numerals using 10 because we have 10 fingers? As you pointed out, the phalanges divide into 12 and as a kid I was taught to count on the lines on the fingers (giving 16 per hand). Trivia: the duodenum is so named as it was meant to be 12 finger-breadths in size. Oh and thank you for the slooowwww Nebula crawl over my videos haha!
@upandatom4 жыл бұрын
Yep we use 10 because it's the number of fingers! Pretty primitive reason, but luckily 10 works pretty well. Just another system could have worked better. I'm not seeing 16 lines on my fingers...
@MedlifeCrisis4 жыл бұрын
@@upandatom sorry, that system includes the tips of the fingers
@haroldthomas94234 жыл бұрын
You could do base-14 using your thumb 😄
@nienke77133 жыл бұрын
@@haroldthomas9423 base-14's usefulness would likely be similar to base-10, just swapping out factor 5 for factor 7
@SvenSimonsen3 жыл бұрын
@@upandatom If you count lines and spaces on fingers you get 20 per hand. Another number used as a base in some counting systems.
@afewspokesloose26994 жыл бұрын
Did the numbers "1984" and "42" get selected as nods to SciFi nerds?
@71Antarex4 жыл бұрын
LoL
@rambiss894 жыл бұрын
Fiction? What fiction?
@ThisCanBePronounced4 жыл бұрын
Yet truest of true nerds know 42 adjusted for inflation is 47.
@rambiss894 жыл бұрын
@@ThisCanBePronounced Everyone knows that 42 is a multiple of 3 primes and primes are not subject to inflation. Not even into another prime
@StevenBrydle4 жыл бұрын
Drinking Game: Take a shot every time the parchment curls up.
@DJMusic-un9yo3 жыл бұрын
I'm dead bro.
@DJMusic-un9yo3 жыл бұрын
@Smee Self I wish you were with me right now, so we both can be plastered.
@Roonasaur3 жыл бұрын
This is absolutely not the thing i need to hear right now with my life . . .
@DeclanMBrennan4 жыл бұрын
0:30 Tell me about it. Now that I'm getting ancient, it takes me nearly a minute to say my age in unary.
@rmsgrey4 жыл бұрын
I'm sure you could cut that down significantly. People generally speak at 4-5 syllables a second, so the oldest living person could give their age in around 30 seconds... Of course, the real trick is knowing when to stop...
@DeclanMBrennan4 жыл бұрын
@Animator&Fidd1er :-)
@DeclanMBrennan4 жыл бұрын
@@rmsgrey That's the same problem kids often have with spelling banana.
@swinbtr4 жыл бұрын
@@DeclanMBrennan dont you mean banananananananana?
@parthasarathyvenkatadri4 жыл бұрын
Archeologist jade is so ....cool!!!
@amehak19224 жыл бұрын
parthasarathy Venkatadri she got even hotter
@lonestarr14904 жыл бұрын
@@amehak1922 I always try not to objectify. So let's say she's appealing in all respects.
@LonesomeTwin4 жыл бұрын
You failed so hard at not saying hot :)
@alveolate4 жыл бұрын
cos she looks like a cowgirl? :D
@k0lpA4 жыл бұрын
all jade are cool
@IznbranahlGoose3 жыл бұрын
This video got me interested in the quater-imaginary base and .. it's super weird to work in. Addition, subtraction, and multiplication are 'different' but aren't bad. Division, however, that's really tricky. Once you accomplish it, however, you're essentially doing division of complex numbers without calculating a complex conjugate (which is good because I always thought having to take a complex conjugate was kind of silly). Another difficulty with the quater-imaginary base is that there's no nice way of saying any particular number is greater than or less than any other number. This is what makes division difficult.
@jadoo168151253906254 жыл бұрын
She fails to mention that the decimal system came from India and that the key problem with most early number systems was the absence of 0. You can't write 42= 4x10 + 2x1 unless you have a notion of 0 and the understanding that '10' represents something other than '1', even though the '0' on its own represents a null quantity.
@BobArmstrong_CoSy4 жыл бұрын
Yes . She should have mentioned the importance of 0 .
@hxyzazolchak4 жыл бұрын
actually you could because you dont necessarily need a 0 to write a 10 like the roman numerals x which is a 10
@nin24944 жыл бұрын
@@hxyzazolchak but the 0 was needed for place notation, and that's what makes the base-10 numeral system easy and more digestable in comparison to the tally and Roman numeral system.
@hxyzazolchak4 жыл бұрын
@@nin2494 true
@carlosa.37034 жыл бұрын
She mentioned the mayans. They used 0
@josephciaravino41154 жыл бұрын
Your props, costumes, and sets make your awesome teaching even better. So fun to watch!
@YourAverageLink4 жыл бұрын
My favorite alternate base is base 6, it's like base 12 but with better fifths and sevenths, easier arithmetic, it fits on your hands without using finger segments, and the square base (base 36) fits on the 10 numerals and 26 letters, making it easy to compress.
@janicenelson4235 Жыл бұрын
NO READING pnS
@mc44444 жыл бұрын
Boltzmann's entropy formula, Euler's identity, Einstein field equations, Schrödinger equation. Are you creating your own Stony Brook Wall? Btw. this video was 🔥
@padraiggluck56334 жыл бұрын
Well, one thing is clear: we won’t be drawing a martini glass to represent one.
@Kokurorokuko4 жыл бұрын
This video gave me hope and then ruined it
@018FLP4 жыл бұрын
Nem party coin unlocked: The Martini
@achtsekundenfurz78764 жыл бұрын
TL;DW version of the video: "What if we wrote numbers differ... Subscribe to our BS streaming platforms!"
@cashaww4 жыл бұрын
That is because one can not have just one martini.
@achtsekundenfurz78764 жыл бұрын
@@cashaww It would be "one Martinus" if we could.
@User-ot6jd3 жыл бұрын
the number system we use is directly derived from devnagari system of India but there is no mention of that,only negative point of the video rest video was fantastic!
@Uncle-Mike4 жыл бұрын
With their innate base-8 thinking, I'm expecting octopods to produce some really good music one day. In fact, I'm counting on it.
@spb11794 жыл бұрын
Base 16 would be better
@kckph42644 жыл бұрын
@@spb1179nah, base 512
@d.l.74164 жыл бұрын
@@spb1179 Nah base 6 Like actually, the fractions are a lot nicer
@bokkenka4 жыл бұрын
Are you sure it would be base-8? We have four limbs but don't use base-4. We have a total of twenty small appendages at the ends of those four limbs but don't use base-20. Unfortunately, it's a moot point because octopods can't hear very well.
@louisvictor34734 жыл бұрын
@@bokkenka We actually have used base 20 many times (see parisian French for a culture and language that still hs vestiges of it).
@leavealoner4 жыл бұрын
Artifexian also has a great video on a base 20 counting system, that is actually being used. It also makes a lot of maths very easy. The video was called "This is the best counting system" or something like that!
@d.l.74164 жыл бұрын
not as good as base 6 tho
@CompilerHack4 жыл бұрын
The kaktovic inupiaq numbers kzbin.info/www/bejne/e6q2Z3mcmN97ZrM You could easy use the notation in base twelve (use 4 as sub-base instead of 5 for instance), that'd be like a super saiyan fusion of number systems
@chippysteve45243 жыл бұрын
It was the Sumerians who created the base 60 number system. This was later borrowed/adopted by the Babylonians. The reason for base 60 is that it makes division,ratios(i.e. geometry + trig),etc much easier than decimal and much more precise because 60 is divisible into many factors thus leading to precise answers that decimal can only dream of.
@h2_4 жыл бұрын
No talk of hexadecimal? Why skip that one?
@eomoran4 жыл бұрын
It's far too unruly for everyday operation. A base-6 is really the best anyways
@sharank4 жыл бұрын
Hexadecimal sucks
@jasonhowell77634 жыл бұрын
Hex is great, and octal is also worth considering
@joshuarosen62424 жыл бұрын
For everyday use having lots of factors, especially of both two and three, is really useful. 6, 12 and 60 pass that test. 16 doesn't but I do agree that it makes repeated halving and doubling easy.
@glumbortango71824 жыл бұрын
@@eomoran If we can use Base 20, I think we can use Base 16 just fine.
@antoinesavage93864 жыл бұрын
8:20 in the computer programming world, we basically have to retrain ourselves to count in binary and hexadecimal to make arithmetic easier
@theliamcooke4 жыл бұрын
This was the most frustrating bit of my computer science degree
@Berkeloid04 жыл бұрын
I still remember the argument long ago that led to an agreement that multiples of 10 would always be read as digits, like 60 being read as "six zero" ... "Sixty? No six dee. I put sixty in and it's not working! Not sixty, six dee. I said sixty! Do you mean sixty or six dee? What are you talking about"
@tiagorodrigues37304 жыл бұрын
@@Berkeloid0 You'd still get bee and dee confused, and probably cee as well. You're better off using something like NATO alphabet: *alfa, bravo, charlie, delta, echo, foxtrot.* Though in my native Portuguese I tend to use words that we used to quote multiple choice question answers in exams: _água, bola, casa, dado, escola, feixe._
@yosefmacgruber19204 жыл бұрын
Binary is kind of cool. I think actually twice in my hobby programming, I put a 70-character text string lookup table into my program, so as to tell my number-drawing subroutine how to draw numbers without having to resort to writing a font. My text string had 70 characters, because each digit has 7 segments to draw, and there are 10 possibilities for each digit. 7•10 = 70. As on a squarish-number digital clock, a 1 means to draw the segment, a 0 means to not draw it. So I had "11111010011000011011100111111011010..." well that is the first half of it, for encoding how to draw digits 0 through 4. I sent the number and the x,y screen position to the subroutine, and it separated the digits and drew the number. Note that a "0" uses 6 of the 7 segments so 6 of the 7 first characters are 1s. Imagine how much more code I would have to write, if I had to independently program all 10 separate ways to draw a digit. The lookup table was far more efficient.
@EmoryM3 жыл бұрын
If we’re switching to anything in the future I’d bet on hexadecimal - it’s compatible with classical computers, we have symbols assigned & accepted and non-mathematicians use it all the time.
@alexander130943 жыл бұрын
I was thinking about hex but quantum computers could change everything. I guess they are not binary.
@userhome36013 жыл бұрын
base 103 is more efficient, but multiplying is problematic.
@Veraux4 жыл бұрын
This is the first time I've watched any of your videos and I love the effort you put into making them, this is quality content.
@vishva8kumara4 жыл бұрын
When you apply a 2D texture on a 3D (to 2D transformed) rendering - like for games or vfx, it is helpful to have those textures in squares of 64, 128, 256, 512 or 1024 pixels - so the rendering looks smooth.
@acejace003 жыл бұрын
Base-16 is the best numbering system, despite what Asimov said. Still much smaller/simpler than the English alphabet, but can show much larger numbers with fewer digits, and less need for scientific notation in our increasingly tech world. ie 1 million can be expressed with 5 digits rather than 7. It also keeps many of the benefits of binary, which is in a sense base-16 itself. Have you ever started with a round number like 100 and tried to divide it into parts? 50/50, 25/25/25/25... and that's as far as you can go. With base-16, you can always break it into equal parts all the way down to 1. Want to arrange 10 things easily in a box? All you can do is a 5x2 grid. A 4x4 grid is so much easier, and additionally breaks further into four 2x2 grids.
@heidirichter4 жыл бұрын
I personally like the Hexadecimal numbering system, it shares some of the advantages of the Duodecimal, and it's a system I'm very used to using from computer programming.
@HotelPapa1004 жыл бұрын
There's 10 kinds of people. Those who understand Hexadecimal, and F the rest.
@jamesrawlings84934 жыл бұрын
@@HotelPapa100 There are 10 kinds of people, those who understand binary and those who don't I believe is the original statement.
@sponge1234ify4 жыл бұрын
@@jamesrawlings8493 You're close, there's the other kind who doesn't expect a ternary joke.
@jamestheotherone7424 жыл бұрын
Traveller forced me to love hex before I had to use in in programming.
@Mark734 жыл бұрын
@@sponge1234ify I'm the kind who knows that it works in any base.
@cyberfeedforward40324 жыл бұрын
Jade didn't mention the hexadecimal system, essential in computer science.
@QuantenMagier3 жыл бұрын
Hexadecimal is basically just a shorthand binary for humans.
@mathiaslist67053 жыл бұрын
it's just used to save space .... probably that's why she did not mention it
@5omebody3 жыл бұрын
@@mathiaslist6705 while that's true... i still do prefer hexadecimal to octal. mainly because 2^3 is a whole lot less nice than 2^2 or 2^2^2
@TinusBruins3 жыл бұрын
It's because it doesn't fit the balance, going higher then base 10 makes it harder to multiply and divide as the table becomes to large, only base 12 because of it's perfect alignment could be a better option.
@5omebody3 жыл бұрын
@@TinusBruins "too large" is definitely subjective. if anything, i'd argue base 10 is too large too, so why not use base 6 instead? (aka base 12 but better? relevant: kzbin.info/www/bejne/p3qnY3VqgrBqj5I) (or even base 4!) but also "perfect alignment" is also arguable. maybe it's ok for factorization and terminating fractions, but other than that it's quite an arbitrary choice imo.
@Redox94063 жыл бұрын
Firstly, You completely missed out the representation of zero. Grouping and all is okay but without zero grouping cyclically is difficult. Its actually a very big invention which changes a lot of things. Decimal, binary, Octal, Hex etc are all using it. And simple conversions will fall apart when zero is not there. Secondly, similar to the roman numericals, the spreadsheet columns use a system that don't have a zero and the conversion changes and becomes less intuitive.
@alicesmith53613 жыл бұрын
Jan Misali has sold me on seximal, which combines the nice parts of duodecimal with the added convenience of a smaller base. I also feel like 6 is just a better fit for the human world than 10. I'm not sure why exactly, but it seems like it's easier to have a handful of six objects in most cases than ten, and the powers of ten grow just so quickly. The only downside is that there's not quite as easy a finger-counting method for six as for ten or twelve, but in the end I feel like that's a convenience we don't need.
@Doping12344 жыл бұрын
And I thought you were gonna talk about peano axioms. Fun fact: Even in late medieval europe roman numerals were sometimes mandated for merchants because they were harder to forge than arabic numerals.
@scotthix29264 жыл бұрын
Positional notation also gives you the zero which is a very powerful concept not seen in a tally system.
@bandyandy4903 жыл бұрын
I use imaginary numbers when I give my kids their allowance.
@deltakyy38949 ай бұрын
💀
@deltakyy38949 ай бұрын
💀
@rubiks63 жыл бұрын
I'm old school. In 5th grade, they taught us duodecimal to instill in us the place number concepts. Even in 4th grade, our times table went up to 144 ... 12 × 12. In 6th grade, we traded all that in for algebra. Thanks for the nostalgia, Jade 😊.
@sbyrstall3 жыл бұрын
Fifth grade? That's late. We were doing 12 x 12 back in second grade. No wonder kids have a hard time with basic math these day. shesh.
@rubiks63 жыл бұрын
@@sbyrstall - I took algebra 1, algebra 2 and began trigonometry and analytical geometry in 7th grade. What were you doing? I've taught mathematics. Normal children learn to multiply beginning in 3rd grade, even back in the 70s. A good student might even learn the entire times table (which went to 12 × 12) by the end of the school year. Save your horseshit scoffing for someone else.
@peteranon8455 Жыл бұрын
@@sbyrstall That's nothing, back in my day they had us memorize binary to build our own calculators and input systems so we could stack our own program cards, and all that before we were in 1st grade.
@ibperson77653 жыл бұрын
8:02 In Sumerian markets/auctions they would display bids by putting their right thumb on one of those twelve places, and the other hand putting fingers for how many twelves. So 41 would be three fingers on left hand (36) and also right hand with right thumb pressed where you wrote 5. Both hands overhead.
@ishaanvatus35364 жыл бұрын
Stay sane during the quarantine guys!
@George49434 жыл бұрын
Stay? Um, y'see, ... before ...
@Olodus3 жыл бұрын
That knot number system looked really interesting. Will need to look deeper into that one.
@vishalmishra30464 жыл бұрын
Hexa-decimal system is so common in the software world (bit-splitting is easier due to the use of base-16 (2^(2^2)=2^4=16) system. If that's not compact enough, base-64 encoding is more compact and very popular in the web-technology world. Same in bio-informatics and genetics world (e.g. base-4 (DNA/RNA bases) and base-64 (codons => amino-acids/proteins) from genetic-code (transcription/translation and gene-expression etc.) to protein-folding problems (Check out Alpha-Fold ML).
@sk8rdman4 жыл бұрын
I've been a big fan of Dozenal (duodecimal) number systems for a while, for the reasons you explained. Multiplication and division can become much simpler in more common situations when calculating from base 12. Alas, I'm afraid there's already too much of a cultural and infrastructural barrier that prevents us from likely ever making the transition to base 12. A very impactful and widespread change would have to happen in favor of base 12 in order for us to make that leap. I don't think the powers that be in the modern or future world will see the benefits of base 12 to be worth the massive shift in the way the majority of people think about and use numbers. One last thing I'd like to point out is the distinction between numbers and numerals. Numbers exist in the abstract; they are quantities, independent of the systems used to express them. Numerals, on the other hand, are those systems and symbols. 2 is not a number, it is a numeral. It's the idea of two that is a number; its value or quantity. The value of two can not change, no matter what numerals you use to express it. This semantic distinction gives us an answer to your question of whether numbers are invented or discovered. Numbers are discovered, because quantities exist independent of our ability to express and articulate them. Numerals, on the other hand, are a human invention. They are the tool we use to express numbers in a way that our minds can interface with more easily.
@tuttebelleke3 жыл бұрын
Finally found an other fan of the Dozenal system. I am prepared to switch tomorrow! But new symbols should be designed for A and B. The reason why so many people stick so hard to the inch unit is because the decimal doesn't have the same nice fractions
@NoirpoolSea2 жыл бұрын
"Number vs Numbers." I have but one thumb (base 0?) to give to your excellent answer! Might give an edge to the question of whether mathematics or logic is discovered or invented also - which can take on a slightly theological flavor. I believe that Godel has something to say in that particular matter though.
@BarbeqdBrwniez2 жыл бұрын
The last bit is exactly what I came to the comments to say! The reason different cultures have different numeral systems for the same numbers is the same reason they have different words for "rain," it's just a language for numbers instead of other things. Different words (numerals), same concepts.
@callejondorado2 жыл бұрын
The only issue I have with base 12,16,24 etc numbers is the use of alphabet letters to fill the gap. That would generate problems latter on at mixing alpha with numeric codes. It would be better to come out with different symbols, and there are plenty of them out there.
@higgsbosonberg4316 Жыл бұрын
Yep, I've always thought this too. Maybe dig out some old disused letters like yogh or thorn. Well maybe not yogh, since it looks like 3.
@polkad3v4 жыл бұрын
Base 2 is cool in the sense that you can count up to 1023 on your fingers (including thumbs). As a plus you also get to make offensive gestures at certain numbers, 4 is the single middle finger and 132 is both middle fingers. Also 6 and 390 for putting the v's up with one hand and both respectively. I've left out the single hand gesture on the opposite hand of course, but I'm left handed and it's easy to work out the single righthanded gestures if anyone can be bothered. Thumbs up 513.
@PaulPaulPaulson4 жыл бұрын
Warning: This video contains factors of ten! It is not suitable for american viewers!
@clarkkent16164 жыл бұрын
Paul Paulson i’ll have you know a yard is a very useful unit of measurement ! (it isn’t, we suck lol)
@Nudnik14 жыл бұрын
We do use S.I. units metric in science engineering physics.. Maybe we come help you out after this is over ...as we always do.
@silkwesir14444 жыл бұрын
@@clarkkent1616 well, at least a yard is close to a meter, so it's kinda easy to compare. but you seem to use feet mostly instead of yards, which makes it much more complicated.
@GH-oi2jf4 жыл бұрын
Paul Paulson - This is just an ignorant remark about the use (or nonuse) of the Metric System. In fact, Americans use metric units a great deal, and not only scientists. We are far better with metric units than Europeans are with U. S. Customary units.
@gredangeo4 жыл бұрын
@@GH-oi2jf That's because no one in the right mind would want to use to US customary units. There's no benefit to do so. It's a weaker outdated system that should have died at least a century ago.
@defenestrated234 жыл бұрын
"1+1 still equals 2" except in some binary finite fields, where 1+1=0 (xor). although arguably 2=0 in this field, since the only elements are 0 and 1
@jaypaans34714 жыл бұрын
Or, 1+1=10. When you're a computer.
@CrazyBeardedGamer4 жыл бұрын
You forgot NAND and NOR.
@lstearns76394 жыл бұрын
When learning musical harmony, I rewired my counting circuits to use base-12 (duodecimal). It was convenient to have one symbol per pitch class. C as 0, C# as 1... A as 9, Bb as T, B as L. (being an english speaker Ten and eLeven were chosen instead of the customary A and B, it would have caused confusion when switching back and forth between duodecimal and tradition note names. After a few days, it was easy to quickly reckon that moving up 7 semitones (distance) from Ab was Eb (8 + 7 = 13) or work out in real time that G# Mixolydian starting in the 3rd octave is { 38 3T 40 41 43 45 46 48 } or simply { 8 T 0 1 3 5 6 8 }. This also worked well when intervallic relationships were considered (the distance between adjacent notes in a scale < 2 2 1 2 2 1 2 >. There were a few mental glitches afterwards when working in base ten for everyday math ($16 + $11 does not equal $25) but now switching back and forth is 2nd nature.
@antoinebugleboy68644 жыл бұрын
It’s probably a good idea to employ completely new symbols for a duodecimal system to avoid confusion with documentation written in decimal.
@allanrichardson90812 жыл бұрын
Hexadecimal uses the ten decimal digits plus the letters A-F: A=10, B=11, C=12, D=13, E=14, F=15. But each hexadecimal digit also represents a group of four binary digits, or bits. Programmers have been using “hex” for over sixty years with no problems!
@antoinebugleboy68642 жыл бұрын
@@allanrichardson9081 Here's my problem with recycling Arabic numerals. Let's say we adopt duodecimal or hexadecimal. Later, you see "15" with ambiguous or no context. Is it fifteen or is it twenty-one? It won't happen all the time, but it will happen often enough that we should head it off in this imaginary scenario where the whole world agrees to completely change our numbering system. ;)
@huawafabe4 жыл бұрын
The base 12 system has a lot of advantages about fractions. 1/3 wouldn't be an infinitely recurring decimal like 0.3333..., but actually 0.4 (because a third of 12 is 4). 1/4 would be 0.3 and 1/5 would be the first one being a long decimal 0.2497... but it's not as commonly used as 1/3. 1/6 is short again (0.2 instead of 0.1666...)
@KrasBadan2 жыл бұрын
I think that dozenal is actually worse in fractions than decimal. Yeah, it can write 1/4 as 0.3, but it isn't really necessary, because if base is even, then 1/4 will always be written with 2 digits maximum, because it's just a half of a half. 1/3 in dozenal is 0.4, and in decimal it's 0.(3), which is worse than dozenal, but still pretty good. Because it's just 3/(10-1), it's just 1 digit recurring. Every fraction of 9 can be represented as one digit recurring. In dozenal 1 recurring digit is a fraction of B (decimal 11). You still can write 1/11 as 0.(09) in decimal tho, because it's 1/(10+1). Similarly, 0.(0B) in dozenal is 1/11 (decimal 13). But 1/5 is absolutely awful now, it's 0.(2497), you just can't use it anymore. Dozenal makes thirds, fourths and thirteens be written a little simpler in cost of absolutely destroying fifths. It's just a bad idea. Also, there's a base that makes thirds easier while making fifths possible, it's base six! Actually in it you can write sevenths as well. 1/5=0.(1) and 1/11=0.(05). I think this is the best base in fractions that is smaller than tridecimal, which is base 2*3*5.
@christopheroliver1482 жыл бұрын
But then 1/5 doesn't have a non-terminating expansion.
@huawafabe2 жыл бұрын
@@KrasBadan thirds and fouths are like a hundred times more common than fifths, so I think that's fair. Especially for thirds
@KrasBadan2 жыл бұрын
@@huawafabe the thing is that it's already pretty simple to write thirds and fourths. Two digits and one digit recurring. In dozenal it's one less digit for fourths and isn't recurring digit for thirds. But it's 3 more digits recurring for fifths. 5 is the third most common prime, so while not being as common as 3, still really important. Decimal makes it possible to write both of them relatively simple and dozenal chooses only one. And yeah, it's more common, but not nearly a 100 times.
@tiov30013 жыл бұрын
I like that base 12 gives you a counter clicker automatically in your hands. Use thumb to count "ones" on left hand by counting joints of fingers, there's 12 of them, use right hand to count dozens same way, when you have a dozen dozens you have a gross, mark down and start over.
@aledirksen014 жыл бұрын
Pissed at youtube for not forcing this channel sooner in my face... Thanks for the video and community that you have built.
@theramendutchman4 жыл бұрын
Same here, to be honest
@flick226014 жыл бұрын
Could you please do a more in depth video on a number system that deals with imaginary numbers. I have written several computer programs that have to use them (convert from latitude-longitude to Universeral Mercador Coordinates) and I wonder if there isn't an easier method.
@orbismworldbuilding84283 жыл бұрын
I made a number system that is easily expanded into representing imaginary numbers but it's more a system for math than it is for counting and amounts of things. It's also usable to describe euclidean vs spherical vs hyperbolic space pr atleast 2 dimensional ones (it probably could do more I'm just not very good at math). But in its most basic form it's similar to the use of i to map out spaces, i presume it might just be a strange way of doing those same things if expanded upon
@SerunaXI4 жыл бұрын
While it's not used as much these days, the American standard for measurements largely is rooted in base-12 and base-16. Easy for fractions, and at certain points the base 12 and base 16 translate to one-another fairly well. This is why a teaspoon is 1/3 a tablespoon while tablespoon and up are x/(n*4).
@MrCardeso4 жыл бұрын
Jade's soothing voice was all I needed now. Thanks!
@DavidLindes4 жыл бұрын
I wasn't going to like this comment... until I got to the end of the video, and got the connection. :)
@amchourasia4 жыл бұрын
I like the fact you used the babylonian notation in your thumbnail to represent one. No doubt the representation was amazing too.
@richarddeese19913 жыл бұрын
Thanks. @4:22 - I have that exact clock! (The black one with 6x2 at the 12 o'clock position) Awesome! It's hanging in my living room, and serves as a genuine nerd badge (of which I have many.) I had the pleasure of going to a private school for 6th & 7th grades. They taught us a whole range of things that were never, ever mentioned when I got back to public school from the 8th grade on! We learned how to create a numbering system (as you discussed somewhat); we learned to diagram every word of complex, compound sentences. I learned to type (that was an elective). I learned about computers & memory storage (microfiche, magnetic spools, etc. - which was also an elective.) I never used any of that knowledge in public school; not once. It's really amazing what kids can learn, and it's sad that we're not teaching them these things. At least there are people like yourself, who are dedicated to learning & knowledge - both for practical reasons, and for their own beauty! tavi.
@prettycoolguy32064 жыл бұрын
I don't know why KZbin recommendations brought me here but I'm glad I learnt some fun stuff about numbers.
@DerTaran3 жыл бұрын
You should have mentioned Hexadecimal as well. It is used a lot in computer science because it corresponds great with the binary numbers.
@glenfoxh4 жыл бұрын
There is the base 16 system called HEX. It uses A-F for 10-15. F being 4 bit , 1111 BIN, a nibble, and 15 in decimal. 10 in HEX is 16 in decimal. FF is 8 bit or a bite, and 255 in decimal. You may know, PC colors range in 0-255 for Red, Green, and Blue for a total of 254 values of gray. 0,0,0 is black, and 255,255,255 is wight. For a grand total of 16,581,375 colors. Otherwise known as our 16 million color set. There is also something that is an alpha value added to the color values, ranging form 0-255 too. This has many uses. It's mostly used as a gray scale transparency mask value. An 8 base system is an OCT. So 10 in OCT is 8 in decimal. The HEX number FFFF is 16 bit and a Word or 65,535 in decimal. And FFFF FFFF is 32 bit and a D-Word or Double-Word. A base 12 number system might be OK to have, but it clashes too much with binary. Something used a lot with computers. A base 12 number system would be 0-B or 1011 BIN. Not very PC friendly. It's not anymore PC friendly than the base 10 decimal system is. If we really want a good and modern number system, we should be using the base 16 HEX system we are already using for PC programing values.
@Thrawnmulus4 жыл бұрын
I don't know how comfortable I am with this much energy and bounciness in math.
@kunstderfugue4 жыл бұрын
Blow your mind: the Roman X is 2 Vs, opposite each other.
@incoherentproductions9924 жыл бұрын
Actually, it's the other way around: V was formed by cutting X in half. This video is a great explanation on how Roman numerals originated: kzbin.info/www/bejne/f5yXqp-leNitj9E
@MirorR3fl3ction3 жыл бұрын
Base-12 is easily the best number system imo, plus we already use it for time keeping and its compatible with radial degrees. If metric, or some successor to it, were to be base-12 it would bring all other units in line with time keeping units and have the benefits of 12 being the most divisible smallest number.
@thebaccathatchews4 жыл бұрын
Imagine Count von Count counting in binary: 1! One cookie! 1-0! Two cookies! 1-1! Three cookies! Ah-ah-ah!
@marvinhuth44874 жыл бұрын
Todays episode was brought to you by the number e.
@notarealperson1099 Жыл бұрын
So hard to watch this with the left hand, because my right hand is making notes
@stephenbenner43533 жыл бұрын
Who else really likes Jade’s hat? Every time she wears it in a video I’m always staring at the laces and the grommets they go through.
@jamesha1753 жыл бұрын
i like her map of the world @5:06
@JesseTheGameDev4 жыл бұрын
Memorizing times tables isn't really efficient. Better to have a system that is easy to do the calculation with mentally. I'm not really a fan of the memorization tactic.
@marccolten98014 жыл бұрын
We had to memorize times tables in school. That worked great right until someone asked how many hours there are in a year.
@henrikljungstrand20363 жыл бұрын
Since fixed base number systems, regardless of whether we use different tally marks or a positional system of numerals, are about the idea of repeatedly multiplying a constant base to a number and then add another number, having a limit on how many similar numbers you may add before carrying over to the next place (342 = (3*10 + 4)*10 + 2 e.g.), i have been toying with the idea of a number system based on exponentiation from a constant base, and otherwise summing, also having a limit on how many similar terms you may add without carrying over. So we can have a number that looks like 3*10^0 + 5*10^(2*10^0) + 8*10^(4*10^(7*10^0)) + 6*10^(9*10^0 + 8*10^(1*10^0)) for example. Which might be written as 3,5{2},8{4{7}}},6{9,8{1}}, or we may use a two dimensional notation in order to show the difference between summing and taking (a multiple of) the base to the power of a sum. All exponentiations terminate in 0 eventually so we don't need to write that part. Also we never need to use the numeral 0, but we need to use sums of very mixed things, and have sums in the exponents recursively. This will still work in any base, so in base 2 exponential we would have the first natural numbers (except zero) as 1 1{1} 1,1{1} 1{1{1}} 1,1{1{1}} 1{1},1{1{1}} 1,1{1},1{1{1}} 1{1,1{1}} etc where 1{1} is 2, 1{1{1}} is 4, 1{1,1{1}} is 8, 1{1{1{1}}} is 16, 1{1,1{1{1}}} is 32, 1{1{1},1{1{1}}} is 64, 1{1,1{1},1{1{1}}} is 128, 1{1{1,1{1}}} is 256, 1{1,1{1,1{1}}} is 512 etc. In base 3 exponential we would have 1 2 1{1} 1,1{1} 2,1{1} 2{1} 1,2{1} 2,2{1} 1{2} 1,1{2} 2,1{2} 1{1},1{2} 1,1{1},1{2} 2,1{1},1{2} 2{1},1{2} 1,2{1},1{2} 2,2{1},1{2} 2{2} 1,2{2} 2,2{2} 1{1},2{2} 1,1{1},2{2} 2,1{1},2{2} 2{1},2{2} 1,2{1},2{2} 2,2{1},2{2} 1{1{1}} etc where 1{1} is 3, 1{2} is 9, 1{1{1}} is 27, 1{1,1{1}} is 81, 1{2,1{1}} is 243, 1{2{1}} is 729, 1{1,2{1}} is 2187, 1{2,2{1}} is 6561, 1{1{2}} is 19683 ... while 1{1{1{1}}} is 3^27 = 7625597484987 etc. Of course this number system notation would only be particularly useful if we found pretty straightforward ways to add, multiply and hopefully exponentiate such numbers. Adding them is mostly straightforward, although it's a little bit tricky when we must carry over. Multiplying them makes it necessary to sum over all terms we get by multiplying two sums, although multiplying two such terms is merely the same as adding their exponents and multiplying their digit multiplyers, of course we need to carry over sometimes as well.
@Saitama621814 жыл бұрын
I'm so old, I knew at a glance the number written in Roman numerals! ;-)
@tiagorodrigues37304 жыл бұрын
It's a simple matter of being used to them. If you use them enough, you'll immediately pick up the groups of numbers that correspond to the powers of ten like *M CM LXXX IV.* What I felt that she could have done a mention of _romana computatio,_ which was the traditional Roman finger-counting system. Using both hands you could represent any number from zero (yes, zero) to 9 999. It was fairly popular in the _tabernae_ of antiquity down to the great international fairs of the Middle Ages until they were displaced (like the abaci) by the Indo-Arabic numerals in the late Middle Ages. Here is a link to an article which explains _computatio_ in some detail: penelope.uchicago.edu/Thayer/E/Journals/CJ/47/2/Roman_Elementary_Mathematics*.html
@deth30214 жыл бұрын
Bet you watched the BBC?
@noobmaster259723 жыл бұрын
I get frustrated why nobody mentions the role of Hindu Civilization in mathematics. Modern number system along with trigonometry originated from India. Western civilizations has presented these ideas as 'Original Greek or Roman discoveries.
@scheimong4 жыл бұрын
Just like how QWERTY keyboard is still the standard long after typewriters, decimal system is going to stay in fashion for as long as there isn't an overwhelming advantage to using something else. Going back to the keyboard example, I learned Dvorak five years ago and have had no regrets. It is a superior layout for full-size keyboards due to the lessened finger movement, which makes learning it significantly easier. However, since everything was built around QWERTY, and everyone has been trained with QWERTY, the benefits of Dvorak is just not enough to convince the world to switch over.
@anujarora04 жыл бұрын
9:43 one plus one equals two Or does it? (Up and atom music starts to play)
@NourSelim04 жыл бұрын
one plus one is a phone :D
@anujarora04 жыл бұрын
@@NourSelim0 hahaha good *one*
@bokkenka4 жыл бұрын
One plus one equals three for very large values of one.
@dlxpro93423 жыл бұрын
Secret of Decimal number system is ZERO .
@ArtoPekkanen3 жыл бұрын
An example: I made this mod for a game called Neverwinter Nights 2, and I needed a system to store large numbers into the character properties so that it would carry over from save file to the next. The game itself made this very hard, because arbitrary variables stored on the game objects would not be stored in saved state at all. However, the game has a skill-system, and each skill slot is a number from 0 to 101. You can have maximum of 255 skill slots for each player character, most of which are hidden/unused, yet they can be used as counters. These skills slots are serialized into the saved state! So basically, I used removed/hidden skill slots per character to store numbers in a base-102 notation, with a piece of code that used multiplication and addition to encode and decode a number into as many skill slots as was required to store a number of specific size. That's base-10 to base-102 conversion, basically :)
@HotelPapa1004 жыл бұрын
6:33 "Which we'll borrow from the English alphabet" Romans: "are we a joke to you?"
@Hello-qg4yk3 жыл бұрын
"Yeah lol"
@QuantenMagier3 жыл бұрын
She's maybe American; they are not taught European history in Merica. xD
@theprinceofdarkness46793 жыл бұрын
@@QuantenMagier She's a Brit I guarantee it
@theprinceofdarkness46793 жыл бұрын
Yeah Romans are a joke That Roman Empire thing Nothing but a myth Julius Caesar Just a figment of someone's imagination Everyone knows that the English invented the alphabet and spread it to the whole world The British Empire has existed for 5000 years
@kodegadulo2 жыл бұрын
@@QuantenMagier Dude, she is Australian!
@cScottD3 жыл бұрын
I remember when i first discovered that different number bases were possible (and existed). I found the idea terribly exciting, and immediately started playing around with it. I was fascinated by Base12 and found it worked better than Base10 in a lot of ways. Then I discovered computers, which led to Base2 (binary), Base8 (octal), and my ultimate favourite Base16 (hexadecimal). I absolutely loved hexadecimal and quickly learned how to do a variety of mathematical functions in Base16, as well as converting back-and-forth between hexadecimal and decimal.
@TheBasikShow3 жыл бұрын
That’s really cool! Did you learn hexadecimal multiplication? If so, did you memorize the entire multiplication table, or do you just do the calculation in base 4 or even binary?
@cScottD3 жыл бұрын
@@TheBasikShow I memorised the "easy" ones and then added or subtracted from them to do the others. I even played around a little with Base16 Algebra, which can be pretty bonkers. Great fun though.
@damianborkowski74294 жыл бұрын
I saw it somewhere else on youtube. That creative method with numbering finger segments was actually a sumerian invention they would count segments in a right hand with their thumb up to 12 rising a finger in a left hand every time they would start over giving system base of 12 x 5 = 60
@mtranchi4 жыл бұрын
2:08 so you were born in 1984? Or are you an Orwell fan?
@NuntiusLegis3 жыл бұрын
Or a fan of the phenomenal 1984 Tull album Under Wraps, which has songs about astronomy and space flight.
@geoffsecombe4 жыл бұрын
...and, naturally, the number 42 figures prominently. Douglas Adams was onto something. 😉
@shiprapaul20333 жыл бұрын
2:30 Mam, i would like to draw youn attention on the matter of fact that that thing was used much earlier in India and other asian countries. Please look into it.
@mastibaji4 жыл бұрын
Just started watching your videos, pretty cool. Do you know of Vedic mathematics from ancient India?
@AnkurShah_CS3 жыл бұрын
These westerners will never mention anything related to our country until they had a better version of it! This topic demands the mentioning of 0 as being invented by India but no, she take names of all other cultures but us!
@NotBigSurprise4 жыл бұрын
The amounts have always existed. Mathematics is just the way we represent them.
@EstrellaViajeViajero4 жыл бұрын
That sounds backwards. Most numbers cannot be represented in reality, as there are always less amounts than numbers. It's probably be better to say that numbers don't exist or not exist, and the amounts that correspond to some of those numbers have begun to exist only a relatively short time ago.
@Nickelodeon814 жыл бұрын
What's an amount of i (sqrt(-1)) then?
@NotBigSurprise4 жыл бұрын
@@Nickelodeon81 I didn't know i could be the base of a number system. Please, do show me what are the numbers in base-i.
@Nickelodeon814 жыл бұрын
@@NotBigSurprise go to 8:40
@NotBigSurprise4 жыл бұрын
@@Nickelodeon81 Fair. I had forgotten about that.
@Wilkins_Micawber3 жыл бұрын
New number system? If the wheel isn't broke, don't fix it!
@Skeithization4 жыл бұрын
Finally a good math video that I was able to understand :).
@eliseuantonio66524 жыл бұрын
0:46 I guessed 37, there were 33. Proud of my guessing skills