An article in the Onion from 1907 reported that a record breaking number of American children are staying in school beyond third grade. They are learning advanced skills such as multiplication, which we are told, is a powerful form of adding, resulting in numbers so large that three or even sometimes four figures are required to write them.
My 7th grade algebra teacher would only whisper of dividing by zero because it would “upset the calculator gods”. He was one of my favorite teachers ever.
For the "why does it return Error in a computer" question, the division assembly instructions (at least for x86) are designed to generate an interrupt when the divisor is zero. In other words, they are told to error out.
@@Xnoob545 Presumably it would attempt that forever. It'd never find its result, and the part that tells it to stop has been chopped off, so it'll just never stop
@@Xnoob545 cpu would hang at 100% usage trying to compute the result of what cant be computed, until you restarted it. therefore safety instruction/lock was added to prevent such.
in high school I was doing a problem on the blackboard in an algebra class and I was finishing it fast so I was writing both sides of the equation (my way of doing it) and the teacher saw it and yelled "algebraic sacrilege!!!!" and that scared me lol and everyone else in the classroom. I swear that we almost hear thunders falling on us. Sufficient to say that I never had the opportunity to explain to him that I was still writing my answer, so I just completed the answer as a "correction".
@@circuit10 I meant that when you start writing it, you begin with the right side, you finish writing that side and then move on to the right side. I was doing both sides at the same time.
An accountant, an engineer, and a mathematician are asked how much is 1 + 1: Mathematician: "1 + 1 is 2 and I can prove it" Engineer: "Well, 1 + 1 is anything between 1.8 & 2.1" Accountant: "It depends. How much do you want 1 + 1 to equal?"
Now, I had always been taught that X/0 was "undefined", while 0/0 was "indeterminate". The logic behind this is that the denominator (or "divisor") should always be able to be made equal to the numerator, by multiplication with some factor. So, for example, 1/2 = .5, thus 2 can be made equal to 1 by multiplication with.5. However, in the case of X/0, there is no factor that can make 0 = X, since 0 times ANYthing is always 0. So, there is no correct answer, therefore, the problem is "undefned". On the other hand, in the case of 0/0, literally ANY factor will make 0 equal to itself, so there is no INcorrect answer. Thus, in essence, any value is equal to any OTHER value, which is impossible. Therefore, the problem is called "indeterminate", since one cannot determine what value best solves the problem.
I know you said this is what you were taught, but it bears mentioning that this is just incorrect. There is no such a thing as "indeterminate" in mathematics, and people need to stop using this word forever. 0/0 does not exist. Period. That is all there is to it. And there is a very simple reason it does not, but it just has to do with what division itself is. Division is just multiplication: multiplication by the reciprocal, to be exact. 0 has no reciprocal. So one cannot divide by 0.
@@angelmendez-rivera351 because in calculus, 0 is not exactly 0, 0 can be 0.0002 or -0.00001, numbers are not exactly their values. That’s why there is indeterminate
@deaf I fail to see how those points connect. 0*x = 0 for all values of x is a true statement. I don't see how this implies that 0/0 = 1 any more than it does any arbitrary number.
@@angelmendez-rivera351 Yes, in terms of numerical value, indeterminate forms are considered undefined. But they are very useful in calculus because of how they affect limits. (f(x+h) - f(x))/h = 0/0 when h=0, so it's undefined. But the limit as h approaches 0 is very much defined (when f(x) is continuous), and is in fact the definition of the derivative. If 0/0 is just undefined, derivatives don't exist, and calculus doesn't work. That's why we have indeterminate forms, at least when working with limits
Do not touch the operational end of The Device. Do not submerge The Device in liquid, even partially. Most importantly, under no circumstances should you divide The Device by zero.
There's a video around of an old mechanical calculator which gets stuck in a loop when trying to divide by zero, and the operator has to press the abort button to stop it running. Nothing bad happens - it just keeps subtracting zero and counting how many times it subtracts zero and it never finishes.
@@coulombicdistortion1814 Here's the thing about multiplying by zero: anything multiplied by zero is zero. So 0(1/0=2/0) (1*0)/(0*0)=(2*0)/(0*0) 0/0=0/0
Travis Ryno I have been stuck on this since last evening. My 13 yr old told me exactly this, and then used Banach-Tarski model to say that 1+1=1 is mathematically possible. I don’t know right now whether to believe his hypothesis or continue to say x/0 is undefined.
And that all the while glossing over X^X for negative X looking really strange (it's jumping all over the complex plane and is basically discontinous everywhere). That is not a function for which you want to find a limit. The complex version must be just as bizarre.
When you asked the old Sinclair calculator from the 70s to divide by zero, it actually tried! It would give you multiple answers one after the other until eventually it spat the dummy, showed all the decimal points and locked the screen.
There's some great footage on TH-cam of mechanical calculators, oldschool ones, dividing by zero. No programmed-in "Math Error" there, the things just spin forever making a racket, they're probably subtracting zero over and over but maybe some of them are failing in a more clever way.
6:10 Yes, computers are taught not to divide by 0. The reason is because bitwise math operations are only add and subtract. Multiplication is just repeated adding, while division is repeated subtracting. If you divide by 0, you are telling the computer to subtract 0 from the original until the value of the original is
@@jathebest2835 That doesn't matter since the sign of the quotient is determined by the dividend. So are you going to get it as infinity or negative infinity? Since the answer is undefined anyways, is there a point in computing it?
I met this channel a while ago, when i was in highschool and used to watch every video. Now, as i'm graduating in mathematics i come back and rewatch the same videos, but now in a different perspective. Numberphile was one of the main reasons i decided to study math in college, despite all flaws.
Multiplication and division are the next iteration of addition and subtraction. The iterations beyond those are exponents and roots. When you get beyond that, it gets really hairy. Layered exponents (also known as "towers") and roots (just the reciprocal of towers) are as far as most people dare to go. But you can technically go as far as you want, and Knuth invented a special notation to explain the weird realm beyond layered exponents/roots. It was used to create one of the largest numbers ever conceived, Graham's number.
I think it's implemented at OS level. And older operating system just tried to subtract 0 from the number forever, forcing you to turn off the power and turn it on again.
@@DanCojocaru2000 If you actually think that applications call the OS to perform calculations then you haven't got a clue what an operating system actually does and doesn't do. Division is not a system task, it can be performed by any application that is directly using the processor (CPU) at user level. Actually, most CPU's have division build right into them...sometimes incorrectly, check the Pentium bug (for floating point division).
Edit: I made a mistake in my original post, and I apologize. A divide-by-zero will return a "not a number" (NaN) result for a floating-point division. I don't know off the top of my head what result an integer division returns - this is something I should either look up or simply test - but the divide-by-zero register is still set, which can be queried to determine if an exception should be thrown. Floating point values may contain infinity and negative infinity as actual values, and if you want, you can treat a divide-by-zero as infinity, and I have in fact seen API's that do this, but generally speaking, you don't want a divide-by-zero to ever be a valid operation. Original post: @@majormalfunction0071 Intel CPU's will happily divide by zero and return either infinity or negative infinity, depending on the sign of the operation - they also differentiate between zero and negative zero; the sign is simply a bit in the return value. They will, however, as Number_055 noted, also set a "divide by zero" register notifying the application requesting the operation that a division by zero occurred, which the application may then treat any way it likes, including treating the operation as an exception and possibly crashing itself. I wholly agree that "infinity" is not a valid return value for a divide-by-zero, but the IEEE standards committee had to settle on something that would work from a technical standpoint.
6:14 the answer for the calculator is defined by IEEE floating point standards and generally requires that software implement exception handling such that when the processors encounters a divide instruction with a zero operand it generates the divided-by-zero exception so the software can decide what to do.
I consider 0/0 to be a feature, not a bug. Simple Algebraic Rearrangement tells us: If Anything * 0 = 0, Then 0 / 0 = Anything. Intuitively, 0 / 0 represents the question "what number can you multiply by 0 to get 0", to which the answer is clearly "Anything".
MumboJ the square root symbol like that that is a function. when you use the square root symbol like that you are taking the principle root which is always positive. You mean to right x^2=1 which has to possible solutions that make that statement true. If you want the negative value you have to put the negative sign in front.
Which is exactly how 0/0 works. It is a rearrangement of 0x=0, to which anything is a solution. Function Symbols are often used to represent this concept, and the phrasing I used was not incorrect.
MumboJ a square root of a number can be either positive or negative. Its because both positive squared and negative squared are positive. Example: √1=±1 √4=±2 √2≈±1.414
The computer is actually taught to not divide by zero. There are many situations in software where dividing by zero is caught and protected against. My brother used to work in a hardware store and he had a computer that gave a 'divided by 0' blue screen. According to the story, he laughed insanely laud at that blue screen. Usually that doesn't happen but the computer had a defect RAM which fed corrupted data into the processor as it fetched the information to execute the micro programs. The processor actually had a build in protection to prevent dividing by zero, it stopped the operation and 'breached' away from its micro instruction to the error handling of windows which on its term showed the blue screen. In short, the computer doesn't even attempt to divide by zero. If you were to try and do it it would probably try to apply a form of implemented long devision which would obviously fail and I have no clue what it would return.
Robert sorry TH-cam isn't letting me post my own comments one thing I would note for the people at number phile is it's as easy as defining 0*y=0 y in the complex plane but not =0 so 0 divided by 0 makes no sense since you can turn it into y*0/y1*0 the 0's can be seen to cancel and then you get y/y1 for any values y,y1 and therefore can take on any of any infinite values.
***** Actually, I think that algorithm doesn't quite simulate a division by zero because, for any value you insert as a divisor (if you swapped "int(n) - 0" for ,say, "int(n) - 3", for example), you'd still have an infinite loop (because the condition for the while loop will always be true and there is no condition for it to actually stop). A true general algorithm for a division of integers would be something like that: ----------------------------------------------------------------------------------------------- n = int(raw_input("Insert the dividend: ")) m = int(raw_input("Insert the divisor: ")) c = 0 result = n while True: result -= m if result < 0: remainder = result + m break c += 1 print c print "%d/%d = %d with a remainder of %d"%(n,m,c,remainder) -------------------------------------------------------------------------------------------------- If you insert 0 as the divisor, the "c" values will explode into infinity on the screen until you hit that close button, however, inserting other positive integer values would return normal division results. :D (also written in Python, because screw it, i'm on that lazy train too \o/)
Robert Dividng is reverse of multiplyin so: 4/3 is 4 * (1/3) and a proof of this is that: (4/3) * 3 = 4 (a/b) * b = a so: if b = 0 and a is any N then a =/= a which as answer is not in set N because any a in this set is equal to itself (4/0) * 0 = 0 ==> 4=0 The result of this nonsene came from the set. Any result on the corpus of N must result in the corpus of N and 0 is not in even in the set of N.
Robert Fennis Set dosent include result. Need a larger set with algebra over biger corpus with a diferent ring and more dimensions. And of course problem is solved, directX is working perfectly without gimbal lock on this wee issue of dividing by zero.
I recently learned what the actual name for 0/0 is in Calculus. It's called an indeterminant, because it can give any answer. If we want to solve it, we need to know the function that created the 0/0, as they show. Then we take the derivative of the top and the bottom (separately), and try to divide again. We repeat until we don't get a 0/0
That’s not quite accurate. An indeterminate form like 0/0 is entirely meaningless on its own and fundamentally can not be “solved” unless you’re talking about in terms of a limit. Furthermore, 0/0 isn’t the only such form, so your use of L’hopital often isn’t applicable.
@@cpotisch Fair enough. Most of the time, the indeterminate form can be converted into a form usable with L'H. Although, you can just use the fact that e^x grows faster than x to get a quick answer
Oh c'mon, it's usually the otherway round. Unlike mathematicians, engineers are too boarged down with deadlines and budget constraints that they hardly have any luxury to play with theories and concept. Otherwise the boss would show them the door 😅
From the software engineering perspective I'd say that I highly doubt that any commonly used calculator uses iterative process to get an answer for X/0. It's just a check in the code: if operation is division and second argument is 0 then print "Error". So, the first guess is much closer to reality
Definitely more likely. Calculators only really do addition and subtraction so if you tried to divide by zero it would keep subtracting by zero an infinite amount of times, just like they demonstrated in the video. Its gotta be programmed to check for a non zero number to keep it from entering an infinite loop, that seems like the best solution
It's normally an exception, stopping your execution. If you have a divide by zero in your equation and you don't stop, you're in la-la land. CPUs handle integer division (which give division by zero and overflow), languages have standard libraries for floating point. The standard is to have zero, NaN (Not a number), Inf, and -Inf as distinct results. Most calculators now have this as well (processors are very cheap). NaN is different than infinity. Infinity normally means it encountered a number which exceeded the maximum value (e.g. 300 factorial), and infinity times zero is zero. Any math operation using NaN gives you NaN as a result. You also can have exceptions for overflow/infinity, and there may be cases where you want to know when you underflow (if you have x and y, which are not zero, but you get zero because the number is too small.. that's not normally one you worry about). A difficult problem in programming is when you have a one-off problem, where it goes into la-la land, and takes a few steps before it dies. Math is one of those things.
Unless someone forgets to tell the computer not to attempt the subtraction, in which case the computer may crash, which happened to an American warship, computers down for a day
But all division does is count the subtractions that took place to reach the number. Therefore, it isn't infinity or the number you started with. It's 0. 20 / 4 = 5 (Five Subtractions) 20 - 0 = 20. No subtraction took place. 20 / 0 = 0 (Zero Subtractions)
@@Vespyr_ No, that is horribly incorrect. Firstly, that is not how division actually works: division is not repated subtraction, and multiplication is not repeated addition. Secondly, even if division did work that way, your answer is still wrong, becaue 20/0 would be equal, by your definition, to the number of times you have to subtract 0 from 20 to achieve 0. The problem is that, even if you subtract 0 an infinite amount of times from 20, you still do not achieve 0. The answer is not 0, nor is it an infinite number. It is just impossible to achieve 0 via such repeated subtractions, hence 20/0 is undefined. Nevermind this, because as I explained firstly, division is not repeated subtraction. The reason division by 0 is problematic is because, in order for division by a quantity A to be possible, you need to have the following property: if A·x = A·y, then x = y. This does not occur with 0. 0·1 = 0·(1 + 1), but 1 = 1 + 1 is false, in general. So division by 0 is hopeless.
@@angelmendez-rivera351 I think you missed the point of glorified subtraction but that idea does work, 28 divided by 4 is just 28 minus 4 over and over till its 0, which is when it's been subracted 7 times
@@thefloormat3297 No, dude, I literally addressed it within my first sentence. Maybe you do not know how to read. Also, I already explained how subtraction does not work. You cannot subtract 0 over and over from 20 until you get 0. It is impossible.
Lots of people do this. You pick up handwriting habits like this so you can more easily distinguish between symbols that look the same. x and the symbol for cross products, for example, look similar and will confuse people unless you draw the letter x as half circles.
This is a relatively common convention tbh. It was specifically adopted so that 'x' would be more readily distinguishable from the multiplication symbol in mathematical proofs and textbooks. A common alternative was to use * as the multiplication symbol, as most scientific calculators do.
6:25 totally agree with that. I know that when I do a really intense calculation on Desmos, the calculator displays to me a message saying "definitions are nested too deeply"
I think James' first description is pretty much perfect. You just keep subtracting a number until you get to zero. If you did 20 - 0 an infinite number of times, you'd still end up with 20, because every step leaves you with 20. So infinity essentially has no effect on subtracting (or dividing by) zero.
I still remember that day when I was in the middle school. Our math teacher, let us use 1 divide some positive numbers smaller and smaller, than we found the results bigger and bigger. Then we use negative numbers bigger and bigger, and the results were smaller and smaller. On that day all of us remembered we cannot use some numbers simply to divide 0.
I did not say that infinity is any number.I said 0x(infinity) is an undefined number so you dont know whether it is equal to 1 or not , therefore you can not say that 0x(infinity)=1 is an impossible equation, it is an undefined equation. And you can do operations on infinity. For example: (1/infinity)=0 and: (+infinity)(-infinity)=-infinity
If I understand my computer science right, computers' physical arithmetic processing units throw errors when they're ordered to divide by zero, which would cause horrible breakage. In practice, though, the command to divide by zero is intercepted by stuff like the operating system long before it actually manages to reach the hardware.
"\" will be square root. 2\-1 doesnt work (2 numbers the same, multiplied together are always positive: -1*-1=1 but 3\-1=-1. if the "n" is odd it will be -1. if its even, it equals nothing (exept perhaps 0^0)
I always hated math and no one I know likes it, but it is nice to see people with a real passion and love for maths/numbers to make it more interesting
@@areadenial2343 but zero is defined, its when there is nothing. But infinity is undefined, because no value can represent it. "Oh, the biggest number is 10^99999", "well, what if i add +1?".
@@Ph0n3numb3r You're half right... no *finite* value can represent it. Because you can't represent an infinite value with something finite, who would have thought? Really, infinity is the opposite of zero. Zero represents nothingness, a lack of value. Infinity represents eternity, a never ending value. So, a 1 followed by a never ending trail of zeroes. It just keeps going, forever.
To get 1/0 = 2/0 into 1 = 2, you multiply by 0 on both sides, which we currently say is well defined. To get 1/0 = 2/0 into 1 = 2, you divide by 0 on both sides, which we see we cannot define unless we throw out multiplication by 0. A lot of things seem like nonsense if you don't pay attention in class.
And this is simply because infinity and 0 are both concepts, not numbers. It is present in mathematics because it is quite useful, such as algebra but to an extent. The very first number systems didn't include a zero at all, some argue that this is why the Roman Empire has fallen.
Usually the way I explain it to people is that almost the entirety of calculus is an attempt to simulate dividing by zero. There's that entire branch of mathematics (which most people find too complicated to be worth learning) that is pretty much just answering this question, and it's still a fuzzy and imperfect answer. So if you wanna see why you can't divide by zero, a basic overview of calculus often will do the job if it's being explained well.
I know it was a joke, and it's funny, but I feel impelled to point out that you simply divided 1 by the number of bites you took, and if there were no leftovers, then zero is the remainder, not the number you divided by.
The intuitive way I think about division by zero not being infinity: treat division like the number of subtractions from a number to get to zero (like in the video). Keep in mind that there are infinite processes that give sensible answers, like Sum of 1/2^n from 0 to infinity equals 2. However, even if you take away zero from a number an infinite number of times you still wouldn't get to zero. Therefore, there can't be an answer to a number divided by zero. Similarly, 0/0 can be interpreted as any number for the same reason.
"You"? Which "you"? There's 2 people we see in the video, which one are you talking about? ...Or do you mean the plural "you" and combined both of them?
Jay Jeckel Come to think of it I think he does it on purpose. Because in the end it serves the same purpose and it's just a formality, he probably does it for fun to get under his mathematician friends skin.
Ivo Wilson I always assumed it was because he is from the UK and they do some things weird over there, like calling math 'maths' and sports 'sport'. Could be easier drawing on a chalk board or what you said. Either way, he does some great videos and his channel is worth checking out if you haven't already.
Here's a simpler explanation of why n/0 is impossible and 0/0 is undefined. I use it in my 6th grade classes in Italy using numbers instead of letters. 1) division is the inverse operation of multiplication. Calculating a/b means finding a number (let's call it "c") that multiplied by b gives a (in other words, c*b=a is basically the same thing as a/b=c, you're just reading it backwards. For example: 6/3=2 and 2*3=6 are basically the same thing, you're just reading it backwards). 2) if b=0, then you get a/0, which is impossible because there's no number that multiplied by 0 gives a. In fact, a/0=c means c*0=a, and there's no number "c" that multiplied by 0 gives a. Since the operation a/0 doesn't have a result, it's impossible. 3) if a=0 and b=0, then you get 0/0, which is undefined because any number multiplied by 0 always gives 0. In fact 0/0=c means c*0=0, which is always true, no matter what number "c" you choose. Since the operation 0/0 doesn't have one single result (it has infinite results), it is undefined. I hope this can be helpful.
I have a few thoughts, though I may be wrong about a few things here. Why is it that when you approach 0 from the negative side of the function 1/x, it goes to negative infinity? Doesn't that imply that 0 is a positive number, since a negative number multiplied/divided by a positive number equals a negative number? Even if we have -0, it would just be "corrected" to just 0. What gives? :P
(1) Because as you approach 0 from the left, x will always be less than 0 (definition of negative). Since 1 is positive, a positive divided by negative is a negative. Since you're taking a limit, you never actually get to 0, but the closer you get, the more negative the number becomes, so you say it approaches negative infinity. (2) No, because by the definition of limits, you don't actually reach the point you're approaching. Limits are used when there are singularities in math (values for which something undefined or impossible happens). You're absolutely not allowed to plug that number into your expression and get a value, so you take a limit...you get really close and see if it's approaching a value. (3) Zero is neither positive nor negative, so the rules of positives and negatives don't apply. In fact, by definition, it couldn't be positive or negative even if you wanted because it's part of the definition of *both* positive (greater than 0) *and* negative (less than 0). The reason that +0 = 0 = -0 is because of how you can turn a unary operator into a binary operator. For example, -0 (unary because there's only one term) is the same operation as 0 - 0 (binary, two terms), which of course is 0. +0 is the same operation as 0 + 0, which is still 0. Neither unary operator (when converted into an equivalent binary operator) had any affect, so 0 must be special in that respect.
0 is not negative nor positive, it is a point. Saying '-0 and +0' is like saying '-axis and +axis.' The reason X (of 1/X) approaches -∞ from the left is because it is being divided by infinitely smaller negative numbers, not 0. The definitions of positive and negative are literally 'greater than and less than 0' respectively; there is no definition for '0 = 0' other than, well, 0.
when you say it approaches to 0 from the negative side. It means that x is not 0 but very close to 0 so in this case x= -0.00000......1 so you can't correct the negative sign.
But it never does reach negative infinity. You CANNOT divide by zero. As you get closer to zero from the positive direction, it goes positive infinity, and you get closer from the negative direction, it goes negative infinity, but at 0, there is no value (and no it doesn't cancel out to 0 either! That'd be equally as troublesome as it equalling infinity).
+Marcus Johnson - You sound like a guy back in the 17th Century, "0 is nothing"??????????? Just...wow... I laughed quite a lot when i read that... You made my day XD
0/0=0 and 1/0= 10^infinite 0. If you want me to explain i am more than happy to. Another theory is that anything divided by 0 actually equals itself. ( 1/0=1 )
If anything divided by 0 = 42 and 42 is the answer to the ultimate question, then anything divided by 0 (x\0) IS the ultimate question. That means that the answer to x\0 is the meaning of life and everything else. Come to think of it, lim x->0 = infinity (positive or negative) but never reaches 0 itself - it's composed of everything in the universe except for a point where there is nothing. Oh man, I don't know, if you catch my drift. I'll call it Caldoon-Adams-Julekmeister's Law of Relative Existence :)
I'm not a mathematician (more of a moral philosopher) and my favourite part is at 7:11... "people argue (to be honest) different ways depending on what they need..."
So a lot of these arguments are akin to the arguments used against imaginary numbers, basically saying "it doesn't make sense." But, like imaginary numbers, why can't we just say, "okay, sure, they don't make sense," and declare that they exist, just to see where it takes us? We did it with numbers larger than infinity (see that long and mindnumbing VSauce video), so why not with "supernihlic" numbers?
Because zero has no value, working only with zeros makes no sense. 0^0 is the same as saying 0/0 which is, in actuality, I have nothing and I don’t divide it what’s the answer. See? That’s totally nonsensical. Lol
If you look at zero in terms of inversion, zero is essentially "neutral infinity", in a way. If you take the inversion of zero with any base radius, you will get a variation of infinity as the answer.
I think you're confused in that you are making weird calculations based on our imperfect, artificially created interpretation of mathematics. Doing a bunch of maneuvers isn't proof that nothing is equal to everything, it's just a flaw in the math we created.
I laughed when you said -- when dealing with the different values towards which 1/x tends when you start with positive vs negative one -- that maybe the value wraps around the entire world, such that positive infinity connects to negative infinity, because that is exactly how my high-school teacher explained tangents.
Matt is very smart for a guy who writes infinity as double zeroes instead of a laying eight
What if he writes eight the same way?
And X as two C having each other's back
@@marzi_kat It's treason, then.
@@rorschak47
Well that’s cause it’s a cursive x
@JZ's Best Friend They would put him in a room with a quadratic floor and call it the Parker Square.
"BUT, if I am naughty..." Oh baby, talk nerdy to me~
LOL
+James Lynn Savage
+James Lynn
Rounding to the first decimal place also counts as naughty. Computing ∫e^x dx makes one horny.
+James Lynn oh my lord
pearl you're smart, what's the real answer here to 1/0
"glorified adding" is the best description of multiplying ever
would that mean exponents are extra glorified adding?
@@BasicEndjo glorified multiplication
@@shnob4916 yeah and multiplication is glorified adding. then exponent is *extra* glorified adding
An article in the Onion from 1907 reported that a record breaking number of American children are staying in school beyond third grade. They are learning advanced skills such as multiplication, which we are told, is a powerful form of adding, resulting in numbers so large that three or even sometimes four figures are required to write them.
This is what I told my 2 grader. “Fast addition”
My 7th grade algebra teacher would only whisper of dividing by zero because it would “upset the calculator gods”. He was one of my favorite teachers ever.
Great anecdote
My math teacher said he could taste numbers
@@malteepmeier Ah, Synesthesia!
@@malteepmeier mine snorted cocaine in class and offered some to us.
@@cones914 Disgusting! Where is that teacher located? So I can avoid it
"Only a nerd would tell you differently."
*cuts to Parker* - Sooo, first of all [...]
Even better "... and that's when you cut to Matt telling them differently."
i clicked the [...] in ur comment wtf wrong with me lol
"And then we cut to a nerd telling you differently."
exploshi I clicked the [...] on yours😂
thatsthejoke.jpg
I suggest we define 1/0 = blue
Jonathan Tanner
Look at me
Jonathan Tanner make a petition
1÷0=blue. The newest axiom in mathematics.
x/0 = blue(x+1)
@@bsm239 1÷0=Blue×1+1=Blue×2=2Blue
A video featuring both Matt and James is such a lovely treat. They are infinitely different.
i see what you did there hahah
Gosh you can’t say that
"The problem is it's a dangerous number and a lot of things can go horribly wrong with 0"
"Mom I got 0 in maths"
*UH OH*
Lol
if it was art, it would’ve been better
@@boncoderz1430 you mean nice zero?
@@tenplusten1116 Especially if you're from Austria...
@@leyyesuh oh…
For the "why does it return Error in a computer" question, the division assembly instructions (at least for x86) are designed to generate an interrupt when the divisor is zero. In other words, they are told to error out.
What would happen if they werent?
@@Xnoob545 Presumably it would attempt that forever. It'd never find its result, and the part that tells it to stop has been chopped off, so it'll just never stop
@@Xnoob545 setcomputeronfire.exe would initiate and well... You get the idea.
@@y-ax2-bx-c5 its like a minecraft world made out of sand
Just falls fprever amd uses exponentaially more power
@@Xnoob545 cpu would hang at 100% usage trying to compute the result of what cant be computed, until you restarted it. therefore safety instruction/lock was added to prevent such.
*Santa:* You don't get presents this year because you were naughty
*Mathematician:* What! Why?
*Santa:* You used infinity as an answer
in high school I was doing a problem on the blackboard in an algebra class and I was finishing it fast so I was writing both sides of the equation (my way of doing it) and the teacher saw it and yelled "algebraic sacrilege!!!!" and that scared me lol and everyone else in the classroom. I swear that we almost hear thunders falling on us. Sufficient to say that I never had the opportunity to explain to him that I was still writing my answer, so I just completed the answer as a "correction".
@@marilynman You're supposed to write both sides?
@@circuit10 I meant that when you start writing it, you begin with the right side, you finish writing that side and then move on to the right side. I was doing both sides at the same time.
X/0 = santa
@Eero Naughty boy. Now you cannot wish to Santa anymore. Even finding out the meaning of life and solutions to infinity.
An accountant, an engineer, and a mathematician are asked how much is 1 + 1:
Mathematician: "1 + 1 is 2 and I can prove it"
Engineer: "Well, 1 + 1 is anything between 1.8 & 2.1"
Accountant: "It depends. How much do you want 1 + 1 to equal?"
Democrat: 1 x 0 = transgender
Republican: 1 + 1 = homophobe
Quantum physicist: i don't know until i actually calculate it
Surrealist: yes
Communist: 1/2 for me, 1/2 for you, and 1 whole for the state
It depends whether we sell or buy.
How to make a million dollours on paper with 50
Numberphile: Imma head out
Now, I had always been taught that X/0 was "undefined", while 0/0 was "indeterminate". The logic behind this is that the denominator (or "divisor") should always be able to be made equal to the numerator, by multiplication with some factor.
So, for example, 1/2 = .5, thus 2 can be made equal to 1 by multiplication with.5. However, in the case of X/0, there is no factor that can make 0 = X, since 0 times ANYthing is always 0. So, there is no correct answer, therefore, the problem is "undefned".
On the other hand, in the case of 0/0, literally ANY factor will make 0 equal to itself, so there is no INcorrect answer. Thus, in essence, any value is equal to any OTHER value, which is impossible. Therefore, the problem is called "indeterminate", since one cannot determine what value best solves the problem.
@Vikas Bhardwaj what if we define 0/0 as equal to 0
I know you said this is what you were taught, but it bears mentioning that this is just incorrect. There is no such a thing as "indeterminate" in mathematics, and people need to stop using this word forever. 0/0 does not exist. Period. That is all there is to it. And there is a very simple reason it does not, but it just has to do with what division itself is. Division is just multiplication: multiplication by the reciprocal, to be exact. 0 has no reciprocal. So one cannot divide by 0.
@@angelmendez-rivera351 because in calculus, 0 is not exactly 0, 0 can be 0.0002 or -0.00001, numbers are not exactly their values. That’s why there is indeterminate
@deaf I fail to see how those points connect. 0*x = 0 for all values of x is a true statement. I don't see how this implies that 0/0 = 1 any more than it does any arbitrary number.
@@angelmendez-rivera351 Yes, in terms of numerical value, indeterminate forms are considered undefined. But they are very useful in calculus because of how they affect limits. (f(x+h) - f(x))/h = 0/0 when h=0, so it's undefined. But the limit as h approaches 0 is very much defined (when f(x) is continuous), and is in fact the definition of the derivative. If 0/0 is just undefined, derivatives don't exist, and calculus doesn't work. That's why we have indeterminate forms, at least when working with limits
12:49 "we could make it anything we want it to be depending on the angle we come at it from"
sound life advice right there
Don’t expose them to sunlight, don’t let them eat after midnight, don’t get them wet, and never divide by zero
I understood that reference!
But it’s always after midnight...
Do not touch the operational end of The Device. Do not submerge The Device in liquid, even partially. Most importantly, under no circumstances should you divide The Device by zero.
AND NEVER EAT PEARS!
… And those are the rules for math gremlins.
Plot twist; the entire Numberphile series is a promotion for Sharpie.
vihart???
Andrew Jones - And brown paper.
I can smell the sharpies.
And the brown paper
DUN DUN DUN
"Divide"
-No
"GlOriFieD SuBsTrAcTioN"
- *YES*
Substraction?
That is like roblox ad...
Thank me for i was the 69th to like
Jk
@@niccolopaganini1782 hello paganini
0/0 = calculus
1/0 = blue the secret is out
Lol.
Oh deah, it's a poblem
He used a 1/0 Sharpie.
Shhh, You're not supposed to tell anybody
Are you talking to Blue the Dog about the secret?
I love these numberphile videos because you can litterally notice how they get high on math as the video goes 😂
i see much enthusiasm :D I suggest "a hole in a hole in a hole" :D
Math makes me horny
It's the only way to fly.
That's what happens when you inhale sharpies.
*Meth
3:05 Noooooooooo!!!
Draw infinity as a continuous loop not two circles!!!
It's ugly
@Al Gee Writing it as a continuous loop has a more comfortable flow than two separate circles
two circles are not a lemniscate!
Yeah, the entire point of the symbol is being a literal neverending loop
haha infinity go oo
There's a video around of an old mechanical calculator which gets stuck in a loop when trying to divide by zero, and the operator has to press the abort button to stop it running.
Nothing bad happens - it just keeps subtracting zero and counting how many times it subtracts zero and it never finishes.
1÷0= infinity
2÷0= Double infinity
There I Fixed it
@Interesting Numbers Wait a minute, then you can multiply both sides by 0 and get 1=2. I think the Illuminati must be at work here. -lol
@@coulombicdistortion1814 Here's the thing about multiplying by zero: anything multiplied by zero is zero. So 0(1/0=2/0)
(1*0)/(0*0)=(2*0)/(0*0)
0/0=0/0
Travis Ryno I have been stuck on this since last evening. My 13 yr old told me exactly this, and then used Banach-Tarski model to say that 1+1=1 is mathematically possible. I don’t know right now whether to believe his hypothesis or continue to say x/0 is undefined.
@@annoyinglyfast5972 He is saying that the logic is wrong
@Travis Ryno therefore 0/0=0
The way he smiles when he brings in the complex numbers...
And that all the while glossing over X^X for negative X looking really strange (it's jumping all over the complex plane and is basically discontinous everywhere). That is not a function for which you want to find a limit. The complex version must be just as bizarre.
When you asked the old Sinclair calculator from the 70s to divide by zero, it actually tried! It would give you multiple answers one after the other until eventually it spat the dummy, showed all the decimal points and locked the screen.
spat the dummy? that isn't a phrase
Ben P it is in Straya
There's some great footage on TH-cam of mechanical calculators, oldschool ones, dividing by zero. No programmed-in "Math Error" there, the things just spin forever making a racket, they're probably subtracting zero over and over but maybe some of them are failing in a more clever way.
Error; task completed successfully 😂
When i was a child. I thought 0 and -0 were different numbers, and i kept counting wrong when going from positive to negative or negative to positive
In IEEE 754 format they *are* different numbers. They behave very much alike, though.
What's bigger, zero minus zero, or zero minus negative zero? Lol just kidding.
@@p.as.in.pterodactyl1024 Who is bigger, Mr. Bigger or Mr. Bigger's baby? The baby, because he's a little bigger.
Original commenter: You were born with what is called "Ones' complement"! I guess you were upgraded to "Twos' complement" since then.
@@ΝίκοςΙστοσελίδα What is that?
"Maybe this line goes all the way around and wraps around the entire universe and things come back up here"
I'm having vertigo
Not surprising if you know the history of the projective plane...
@@digitig *flashbacks
I've always interpreted it as being positive and negative infinity and every possible number in-between.
Not sure if that's valid though.
@@StevenAyre1 yes, 1/0 is every number ever to be thought of at the same time...
7:44
"We're gonna slide it in and, in fact, we're gonna have to do it from both directions"
O___0
Liam Dienemann
“more than a numberphile”
An Infinityphile XDXDXDXD
There's a reason why infinity is drawn as two circles.
Nice
6:10 Yes, computers are taught not to divide by 0. The reason is because bitwise math operations are only add and subtract. Multiplication is just repeated adding, while division is repeated subtracting. If you divide by 0, you are telling the computer to subtract 0 from the original until the value of the original is
≤ not
Happy New year sir
But Javascript gives back Infinity..
@@jathebest2835 That doesn't matter since the sign of the quotient is determined by the dividend. So are you going to get it as infinity or negative infinity? Since the answer is undefined anyways, is there a point in computing it?
@@mdsharfuddinmd5710 hi you too
"We can no more say that 1 divided by 0 is equal to blue"
I lost it
"we can no more say that *than* [that] one divided by zero is equal to blue"
you missed a "than"
@@meta04 ?
I divided 1/0 in my calculator and now it runs Super Mario 64.
if I divide by 0 on my smartphone, can my smartphone calculate a rocket launch?
@@farisakmal2722 Probably
I divided zero on my table and now it can shoot lasers and fly
ok............
I inputted 1/0 into a sideways 8 and now every time I draw an 8, it Runs fortnite
I met this channel a while ago, when i was in highschool and used to watch every video. Now, as i'm graduating in mathematics i come back and rewatch the same videos, but now in a different perspective. Numberphile was one of the main reasons i decided to study math in college, despite all flaws.
Multiplication and division are the next iteration of addition and subtraction. The iterations beyond those are exponents and roots. When you get beyond that, it gets really hairy. Layered exponents (also known as "towers") and roots (just the reciprocal of towers) are as far as most people dare to go. But you can technically go as far as you want, and Knuth invented a special notation to explain the weird realm beyond layered exponents/roots. It was used to create one of the largest numbers ever conceived, Graham's number.
"We have to slide it in, from both directions." - Phwoar........
stop. lets keep it PG
+Sarah Cartwright Hi Sarah!
+John Yyc zero ain't PG mate. Zero is a dirty boy.
+Sarah Cartwright "So you say, 'Well, if it doesn't matter which side we're coming in from... surely we can just call it one.'"
+John Yyc Even PG movies are allowed brief adult moments.
÷0 looks like a screaming person
Yep
Fitting
It's screaming at you for trying to destroy the universe.
Thats the reason you cant devide by zero.
But you can devide zero.
Or like a key
0 is my favorite number because it has no value, just like me.
I read this and I laughed. Thank you very much for that laugh.
:)
ᎢᎻᎬᎠᎾᎠᎾ ᎬNᎢᎻᏌᏚᏆᎪᏚᎢ jokes on you, our numbers don't work without a concept of zero
ᎢᎻᎬᎠᎾᎠᎾ ᎬNᎢᎻᏌᏚᏆᎪᏚᎢ CRAWLING IN MY CRAWL
Bad day?
Ooh ..hope that was limited to being a joke.
A decade later and still a fantastic video!
Ten, meaning one, zero. Coincidence? I think not!
Most CPU's have a specific return code for "Divide by Zero Error", meaning it doesn't attempt to calculate as the error is handled at the CPU level.
Number_055 return 0;
I think it's implemented at OS level. And older operating system just tried to subtract 0 from the number forever, forcing you to turn off the power and turn it on again.
@@DanCojocaru2000 If you actually think that applications call the OS to perform calculations then you haven't got a clue what an operating system actually does and doesn't do. Division is not a system task, it can be performed by any application that is directly using the processor (CPU) at user level. Actually, most CPU's have division build right into them...sometimes incorrectly, check the Pentium bug (for floating point division).
Specifically, it's a hardware trap (ie. hardware exception) generated by the CPU at the time of division, at least on x86 / x86-64.
Edit: I made a mistake in my original post, and I apologize. A divide-by-zero will return a "not a number" (NaN) result for a floating-point division. I don't know off the top of my head what result an integer division returns - this is something I should either look up or simply test - but the divide-by-zero register is still set, which can be queried to determine if an exception should be thrown. Floating point values may contain infinity and negative infinity as actual values, and if you want, you can treat a divide-by-zero as infinity, and I have in fact seen API's that do this, but generally speaking, you don't want a divide-by-zero to ever be a valid operation.
Original post:
@@majormalfunction0071 Intel CPU's will happily divide by zero and return either infinity or negative infinity, depending on the sign of the operation - they also differentiate between zero and negative zero; the sign is simply a bit in the return value. They will, however, as Number_055 noted, also set a "divide by zero" register notifying the application requesting the operation that a division by zero occurred, which the application may then treat any way it likes, including treating the operation as an exception and possibly crashing itself. I wholly agree that "infinity" is not a valid return value for a divide-by-zero, but the IEEE standards committee had to settle on something that would work from a technical standpoint.
"And people will yell at me if i say its infinitely different" i lost it
For some reason, the way Matt writes his "x" is deeply unsettling to me.
Shouldn't be allowed to work as a mathematician if you write x like he does LOL
How else would you do it? Like a normal written x?
@@clarkeysam yes, you cross two lines like a respectable human being.
Tauno Kekkonen no, that x is anti calculus.
You want a nice, curvy and sexy x.
He writes it just like how you learn to write your x in cursive in second grade
11:23 Even the painting is interested in mathematics.
lOL
6:14 the answer for the calculator is defined by IEEE floating point standards and generally requires that software implement exception handling such that when the processors encounters a divide instruction with a zero operand it generates the divided-by-zero exception so the software can decide what to do.
Joke's on you, I divided by zero and got an answer. I put 1/0 in my calculator, and got "Error". So, 1/0=Error.
Jude Pelaez makes sense lol
basically, you get something, what programmer wrote. And of course he lies.
Jude Pelaez 0 divided by 0=error
Jude Pelaez So 1/0 is the guy from Zelda 2? Brilliant!
Jude Pelaez but what about 0 divided with 'error'?
I consider 0/0 to be a feature, not a bug.
Simple Algebraic Rearrangement tells us:
If Anything * 0 = 0,
Then 0 / 0 = Anything.
Intuitively, 0 / 0 represents the question "what number can you multiply by 0 to get 0", to which the answer is clearly "Anything".
If 0/0=1 and 0/0=2 then 1=2 by the transitive property. If you allow that, the you can say that every number is equal to each other.
The transitive property doesn't always work that way.
√1 = 1 and √1 = -1, but 1 ≠ -1
MumboJ the square root symbol like that that is a function. when you use the square root symbol like that you are taking the principle root which is always positive. You mean to right x^2=1 which has to possible solutions that make that statement true. If you want the negative value you have to put the negative sign in front.
Which is exactly how 0/0 works.
It is a rearrangement of 0x=0, to which anything is a solution.
Function Symbols are often used to represent this concept, and the phrasing I used was not incorrect.
MumboJ a square root of a number can be either positive or negative. Its because both positive squared and negative squared are positive. Example: √1=±1
√4=±2
√2≈±1.414
2:25Mathematicians definition if “naughty” and “evil” - “Ooh, what if I said 1/0 = infinity? Ooooooh”
2:20 - 2:30 But 1/0 is equal to blue.
The computer is actually taught to not divide by zero. There are many situations in software where dividing by zero is caught and protected against. My brother used to work in a hardware store and he had a computer that gave a 'divided by 0' blue screen. According to the story, he laughed insanely laud at that blue screen. Usually that doesn't happen but the computer had a defect RAM which fed corrupted data into the processor as it fetched the information to execute the micro programs. The processor actually had a build in protection to prevent dividing by zero, it stopped the operation and 'breached' away from its micro instruction to the error handling of windows which on its term showed the blue screen.
In short, the computer doesn't even attempt to divide by zero. If you were to try and do it it would probably try to apply a form of implemented long devision which would obviously fail and I have no clue what it would return.
Robert sorry TH-cam isn't letting me post my own comments one thing I would note for the people at number phile is it's as easy as defining 0*y=0 y in the complex plane but not =0 so 0 divided by 0 makes no sense since you can turn it into y*0/y1*0 the 0's can be seen to cancel and then you get y/y1 for any values y,y1 and therefore can take on any of any infinite values.
***** Actually, I think that algorithm doesn't quite simulate a division by zero because, for any value you insert as a divisor (if you swapped "int(n) - 0" for ,say, "int(n) - 3", for example), you'd still have an infinite loop (because the condition for the while loop will always be true and there is no condition for it to actually stop).
A true general algorithm for a division of integers would be something like that:
-----------------------------------------------------------------------------------------------
n = int(raw_input("Insert the dividend: "))
m = int(raw_input("Insert the divisor: "))
c = 0
result = n
while True:
result -= m
if result < 0:
remainder = result + m
break
c += 1
print c
print "%d/%d = %d with a remainder of %d"%(n,m,c,remainder)
--------------------------------------------------------------------------------------------------
If you insert 0 as the divisor, the "c" values will explode into infinity on the screen until you hit that close button, however, inserting other positive integer values would return normal division results. :D
(also written in Python, because screw it, i'm on that lazy train too \o/)
Robert
Dividng is reverse of multiplyin so:
4/3 is
4 * (1/3)
and a proof of this is that:
(4/3) * 3 = 4
(a/b) * b = a
so:
if b = 0 and a is any N then a =/= a which as answer is not in set N because any a in this set is equal to itself
(4/0) * 0 = 0 ==> 4=0
The result of this nonsene came from the set. Any result on the corpus of N must result in the corpus of N and 0 is not in even in the set of N.
Szloma Josif Point being?
Robert Fennis
Set dosent include result.
Need a larger set with algebra over biger corpus with a diferent ring and more dimensions.
And of course problem is solved, directX is working perfectly without gimbal lock on this wee issue of dividing by zero.
I divided by zero and my calculator transformed into Optimus Prime and rolled out
my calculator prints out the entirety of Romeo & Julie and then splits into several people and performs it.
@@bsm239 XD
So lame
Greetings Mortal So lame
I recently learned what the actual name for 0/0 is in Calculus. It's called an indeterminant, because it can give any answer. If we want to solve it, we need to know the function that created the 0/0, as they show. Then we take the derivative of the top and the bottom (separately), and try to divide again. We repeat until we don't get a 0/0
L'Hopital's!
That’s not quite accurate. An indeterminate form like 0/0 is entirely meaningless on its own and fundamentally can not be “solved” unless you’re talking about in terms of a limit.
Furthermore, 0/0 isn’t the only such form, so your use of L’hopital often isn’t applicable.
@@cpotisch All the other indeterminate forms can be turned into a 0/0 or inf/inf form, in which L'H can then be applicable
@@gamerdio2503 e^x-x as x goes to infinity?
@@cpotisch Fair enough. Most of the time, the indeterminate form can be converted into a form usable with L'H. Although, you can just use the fact that e^x grows faster than x to get a quick answer
Mathematician: "you can't divide by zero"
Engineer: "Just watch me!!!"
That must be what Denny Pate, the designer of the FIU bridge did, and then the Boeing engineers that designed the 737MAX followed his lead.
Oh c'mon, it's usually the otherway round. Unlike mathematicians, engineers are too boarged down with deadlines and budget constraints that they hardly have any luxury to play with theories and concept. Otherwise the boss would show them the door 😅
From the software engineering perspective I'd say that I highly doubt that any commonly used calculator uses iterative process to get an answer for X/0. It's just a check in the code: if operation is division and second argument is 0 then print "Error". So, the first guess is much closer to reality
Definitely more likely. Calculators only really do addition and subtraction so if you tried to divide by zero it would keep subtracting by zero an infinite amount of times, just like they demonstrated in the video. Its gotta be programmed to check for a non zero number to keep it from entering an infinite loop, that seems like the best solution
This is how most applications work, most of the time its baked into the compiler (Roslyn)
It's normally an exception, stopping your execution. If you have a divide by zero in your equation and you don't stop, you're in la-la land. CPUs handle integer division (which give division by zero and overflow), languages have standard libraries for floating point. The standard is to have zero, NaN (Not a number), Inf, and -Inf as distinct results. Most calculators now have this as well (processors are very cheap).
NaN is different than infinity. Infinity normally means it encountered a number which exceeded the maximum value (e.g. 300 factorial), and infinity times zero is zero. Any math operation using NaN gives you NaN as a result. You also can have exceptions for overflow/infinity, and there may be cases where you want to know when you underflow (if you have x and y, which are not zero, but you get zero because the number is too small.. that's not normally one you worry about).
A difficult problem in programming is when you have a one-off problem, where it goes into la-la land, and takes a few steps before it dies. Math is one of those things.
Unless someone forgets to tell the computer not to attempt the subtraction, in which case the computer may crash, which happened to an American warship, computers down for a day
Happy New year sir
If I had numberphile as my math professor, Vsauce as science, I would top the school.
I don't think Vsauce knows curriculum science. He is only interested in the abstract and ambiguous topics of science.
Also, it can’t be infinity, because even if you subtract it an infinite amount of times your still going to have the number you started with.
But all division does is count the subtractions that took place to reach the number. Therefore, it isn't infinity or the number you started with. It's 0.
20 / 4 = 5 (Five Subtractions)
20 - 0 = 20. No subtraction took place.
20 / 0 = 0 (Zero Subtractions)
@@Vespyr_ No, that is horribly incorrect. Firstly, that is not how division actually works: division is not repated subtraction, and multiplication is not repeated addition. Secondly, even if division did work that way, your answer is still wrong, becaue 20/0 would be equal, by your definition, to the number of times you have to subtract 0 from 20 to achieve 0. The problem is that, even if you subtract 0 an infinite amount of times from 20, you still do not achieve 0. The answer is not 0, nor is it an infinite number. It is just impossible to achieve 0 via such repeated subtractions, hence 20/0 is undefined.
Nevermind this, because as I explained firstly, division is not repeated subtraction. The reason division by 0 is problematic is because, in order for division by a quantity A to be possible, you need to have the following property: if A·x = A·y, then x = y. This does not occur with 0. 0·1 = 0·(1 + 1), but 1 = 1 + 1 is false, in general. So division by 0 is hopeless.
The answer is super existence, a level above every number
@@angelmendez-rivera351 I think you missed the point of glorified subtraction but that idea does work, 28 divided by 4 is just 28 minus 4 over and over till its 0, which is when it's been subracted 7 times
@@thefloormat3297 No, dude, I literally addressed it within my first sentence. Maybe you do not know how to read. Also, I already explained how subtraction does not work. You cannot subtract 0 over and over from 20 until you get 0. It is impossible.
Drawing X as two half circles?
Classic Parker Square.
Lots of people do this. You pick up handwriting habits like this so you can more easily distinguish between symbols that look the same. x and the symbol for cross products, for example, look similar and will confuse people unless you draw the letter x as half circles.
This is a relatively common convention tbh. It was specifically adopted so that 'x' would be more readily distinguishable from the multiplication symbol in mathematical proofs and textbooks. A common alternative was to use * as the multiplication symbol, as most scientific calculators do.
That looks more like a khi
@@Bignic2008 thats actually pretty cool. Definetivly reasonable. 👍
@@smockboy makes sense and is smart 👍
I divided by 0 and my paper set on fire
Yea, I tried it on my Samsung 8 and it exploded
BEANS
No that is what 2 beans add 2 beans is
That is actually some beans
Or a really small casserole
OH GOD NO... He's gonna divide by zer....................
+Sarge!!! BOOOM
Dewey russian kh/ch -Хх
hey i heard someone divided by zero. is everyone okay?
(Bomb explodes)
⚫️
6:25 totally agree with that. I know that when I do a really intense calculation on Desmos, the calculator displays to me a message saying "definitions are nested too deeply"
11:50 I see what you did there, NAUGHTy
Freaky Fred :)))))
Who said that mathematicians can't be naughty?
I think James' first description is pretty much perfect. You just keep subtracting a number until you get to zero. If you did 20 - 0 an infinite number of times, you'd still end up with 20, because every step leaves you with 20. So infinity essentially has no effect on subtracting (or dividing by) zero.
These numberphilr videos with multiple interviewees are among the best!!!
I still remember that day when I was in the middle school. Our math teacher, let us use 1 divide some positive numbers smaller and smaller, than we found the results bigger and bigger. Then we use negative numbers bigger and bigger, and the results were smaller and smaller. On that day all of us remembered we cannot use some numbers simply to divide 0.
This is my favorite video on this channel. Makes me chuckle every time.
If 1/0 equals infinity, the that means infinity times 0 equals 1, which is not possible.
0χ(+-infinity) is an undefined number so it can be 1 as well
You can't just treat infinity as any other number. It is an idea, not a value you can do operations on.
I did not say that infinity is any number.I said 0x(infinity) is an undefined number so you dont know whether it is equal to 1 or not , therefore you can not say that 0x(infinity)=1 is an impossible equation, it is an undefined equation. And you can do operations on infinity. For example: (1/infinity)=0 and: (+infinity)(-infinity)=-infinity
+Tomas Cena I was refering to the main comment :)
DrDerp42
This is a dangerous subject
That is the craziest way to write "x"
The way he writes Infinite Haunts me 3:07
If I understand my computer science right, computers' physical arithmetic processing units throw errors when they're ordered to divide by zero, which would cause horrible breakage. In practice, though, the command to divide by zero is intercepted by stuff like the operating system long before it actually manages to reach the hardware.
for x^x, doesn’t -1^-1 equal -1 or am i missing something?
@Mika Hamari That makes sense since X^-n is equal to 1/X^n and when n is even you get a positive number
Yes you are right it's equal to -1
Nope. You are correct.
Yea it does
Correct. But matt's sketch was terrible as it didn't require that detail.
Can you talk about rooting negative numbers?
victor sodéus i think they have videos on complex numbers. if not there is a really great 13 part series by another youtuber.
"\" will be square root.
2\-1 doesnt work (2 numbers the same, multiplied together are always positive: -1*-1=1
but 3\-1=-1. if the "n" is odd it will be -1. if its even, it equals nothing (exept perhaps 0^0)
Bacon Grease, i^2= -1 by definition. Creates the Complex Numbers and you can have a square root of a negative number.
no real number squared will be negative. ever. if you square any number, by deffinition it becomes positive. i said real numbers.
Bacon Grease nowhere in your comment did you say real numbers though.
I always hated math and no one I know likes it, but it is nice to see people with a real passion and love for maths/numbers to make it more interesting
Infinity is not a numbah...
It can't be treated like a numbah...
I love that guy 😂😂😂
Infinity is certainly not here but it is certainly over yonder.
In many cases, zero can't be treated like a number either. So should we just say it's not a number and call it a day?
@@areadenial2343 but zero is defined, its when there is nothing. But infinity is undefined, because no value can represent it. "Oh, the biggest number is 10^99999", "well, what if i add +1?".
@@Ph0n3numb3r You're half right... no *finite* value can represent it. Because you can't represent an infinite value with something finite, who would have thought? Really, infinity is the opposite of zero. Zero represents nothingness, a lack of value. Infinity represents eternity, a never ending value. So, a 1 followed by a never ending trail of zeroes. It just keeps going, forever.
*number
Dividing by zero is such a Parker Square move.
lol, only numberphile fans will get this.
He draws graphs with arrows on both sides of the same axis. Would rather divide by 0
Why is this so far down!!! Goddamnit that irritates me
Yeah. Because the graph of rational numbers goes in both directions
@@Dragongaga yeah and that's correct i guess
I don't understand, I draw my graphs like that
yes thats by definition correct where on earth did you. go to school that they didnt teach you that, have you never drawn a graph before?
5:50 The look you get, when you're on a date with a mathematician
he’s rizzing us up 💀
But if you push too hard...even numbers got LIMITS
that because they set a limit in the first place, they set it to zero, if i don't set any limit, it would go forever
Salvador Allende those limits are "errors" (paradoxes) in the system we made
He's quoting a Mos Def song called Mathematics.
If you don't know, now you know...
What about odd numbers, they got limits too?
1 / 0 = infinity
2 / 0 = infinity
1 = 2
Nonsense, right?
1 * 0 = 0
2 * 0 = 0
1 = 2
Yep. Nonsense.
To get 1/0 = 2/0 into 1 = 2, you multiply by 0 on both sides, which we currently say is well defined. To get 1/0 = 2/0 into 1 = 2, you divide by 0 on both sides, which we see we cannot define unless we throw out multiplication by 0. A lot of things seem like nonsense if you don't pay attention in class.
***** I agree, ( lim x→|∞| ∀x[∞] →∃x[x/0=|∞|] )
And this is simply because infinity and 0 are both concepts, not numbers. It is present in mathematics because it is quite useful, such as algebra but to an extent. The very first number systems didn't include a zero at all, some argue that this is why the Roman Empire has fallen.
PureAwsomeness thank you, i agree entirely.
I hate when people say that. All numbers are "ideas", and zero and infinity are numbers the same way 3 is a number.
This video:
"You can't say something is equal to infinity!"
Other video:
"1-1+1-1+... is totally 1/2, no problem here, guys!"
"anything divided by zero is counting to infinity."
Vsauce: *how to count pass infinity*
Division by non-existence?
It makes no sense.
3:16 infinity is actualy a duble zero :D Was that on purpos???
Usually the way I explain it to people is that almost the entirety of calculus is an attempt to simulate dividing by zero. There's that entire branch of mathematics (which most people find too complicated to be worth learning) that is pretty much just answering this question, and it's still a fuzzy and imperfect answer. So if you wanna see why you can't divide by zero, a basic overview of calculus often will do the job if it's being explained well.
But u can
see me divide this cake into zero pieces!! NOM NOM NOM
The cake is a lie!
You aren't dividing the cake, you are 'subtracting' it.
I agree with you. See my comment.
I know it was a joke, and it's funny, but I feel impelled to point out that you simply divided 1 by the number of bites you took, and if there were no leftovers, then zero is the remainder, not the number you divided by.
20-0=20, 20÷0=20 and cake÷0=cake just like cake-0=cake
The intuitive way I think about division by zero not being infinity: treat division like the number of subtractions from a number to get to zero (like in the video). Keep in mind that there are infinite processes that give sensible answers, like Sum of 1/2^n from 0 to infinity equals 2. However, even if you take away zero from a number an infinite number of times you still wouldn't get to zero. Therefore, there can't be an answer to a number divided by zero. Similarly, 0/0 can be interpreted as any number for the same reason.
The way you write the 'X' and the 'Infinity symbol' is so weird!
"You"? Which "you"? There's 2 people we see in the video, which one are you talking about? ...Or do you mean the plural "you" and combined both of them?
Typo No idea, the one who does it wrong.
Jay Jeckel Come to think of it I think he does it on purpose.
Because in the end it serves the same purpose and it's just a formality, he probably does it for fun to get under his mathematician friends skin.
Ivo Wilson I always assumed it was because he is from the UK and they do some things weird over there, like calling math 'maths' and sports 'sport'. Could be easier drawing on a chalk board or what you said. Either way, he does some great videos and his channel is worth checking out if you haven't already.
Jay Jeckel Absolutely, I did check it out and even though I'm not a maths guy I fell in love with it
I tried 1/0 on wolfram and it gave me
This Wolfram|Alpha server is temporarily unavailable.
lol
@TalkingTomKittyKatFan2021 Aka BAC Klapof No, it says it's complex infinity which is different.
Here's a simpler explanation of why n/0 is impossible and 0/0 is undefined. I use it in my 6th grade classes in Italy using numbers instead of letters.
1) division is the inverse operation of multiplication. Calculating a/b means finding a number (let's call it "c") that multiplied by b gives a (in other words, c*b=a is basically the same thing as a/b=c, you're just reading it backwards. For example: 6/3=2 and 2*3=6 are basically the same thing, you're just reading it backwards).
2) if b=0, then you get a/0, which is impossible because there's no number that multiplied by 0 gives a. In fact, a/0=c means c*0=a, and there's no number "c" that multiplied by 0 gives a. Since the operation a/0 doesn't have a result, it's impossible.
3) if a=0 and b=0, then you get 0/0, which is undefined because any number multiplied by 0 always gives 0. In fact 0/0=c means c*0=0, which is always true, no matter what number "c" you choose. Since the operation 0/0 doesn't have one single result (it has infinite results), it is undefined.
I hope this can be helpful.
I noticed this many times that 0/0 tends to be anything in different cases but today i understood its real reason
I have a few thoughts, though I may be wrong about a few things here.
Why is it that when you approach 0 from the negative side of the function 1/x, it goes to negative infinity? Doesn't that imply that 0 is a positive number, since a negative number multiplied/divided by a positive number equals a negative number? Even if we have -0, it would just be "corrected" to just 0. What gives? :P
(1) Because as you approach 0 from the left, x will always be less than 0 (definition of negative). Since 1 is positive, a positive divided by negative is a negative. Since you're taking a limit, you never actually get to 0, but the closer you get, the more negative the number becomes, so you say it approaches negative infinity.
(2) No, because by the definition of limits, you don't actually reach the point you're approaching. Limits are used when there are singularities in math (values for which something undefined or impossible happens). You're absolutely not allowed to plug that number into your expression and get a value, so you take a limit...you get really close and see if it's approaching a value.
(3) Zero is neither positive nor negative, so the rules of positives and negatives don't apply. In fact, by definition, it couldn't be positive or negative even if you wanted because it's part of the definition of *both* positive (greater than 0) *and* negative (less than 0). The reason that +0 = 0 = -0 is because of how you can turn a unary operator into a binary operator. For example, -0 (unary because there's only one term) is the same operation as 0 - 0 (binary, two terms), which of course is 0. +0 is the same operation as 0 + 0, which is still 0. Neither unary operator (when converted into an equivalent binary operator) had any affect, so 0 must be special in that respect.
0 is not negative nor positive, it is a point. Saying '-0 and +0' is like saying '-axis and +axis.' The reason X (of 1/X) approaches -∞ from the left is because it is being divided by infinitely smaller negative numbers, not 0. The definitions of positive and negative are literally 'greater than and less than 0' respectively; there is no definition for '0 = 0' other than, well, 0.
when you say it approaches to 0 from the negative side. It means that x is not 0 but very close to 0 so in this case x= -0.00000......1 so you can't correct the negative sign.
But it never does reach negative infinity. You CANNOT divide by zero. As you get closer to zero from the positive direction, it goes positive infinity, and you get closer from the negative direction, it goes negative infinity, but at 0, there is no value (and no it doesn't cancel out to 0 either! That'd be equally as troublesome as it equalling infinity).
0 Is actually considered a positive number.
0^0=Spaghetti
Hm I thought it was banana
+Bearboy03
No, 0^Spaghetti is Banana. You were close, though. :)
+Naveek Darkroom 0^0 = 0
+Marcus Johnson Lol - Unless you are having fun, 0 ^ 0 is not 0 :P it's.............................1
+Marcus Johnson - You sound like a guy back in the 17th Century, "0 is nothing"??????????? Just...wow... I laughed quite a lot when i read that... You made my day XD
0/0=0 and 1/0= 10^infinite 0.
If you want me to explain i am more than happy to.
Another theory is that anything divided by 0 actually equals itself. ( 1/0=1 )
0 *exists*
Numberphile: It's free real estate.
1/0=Blue... i'm going to write that next time i write a calculator program..
Programmer here.
Divide by zero is the original buffer overflow, we hard limit it.
@@samardehal Buffer overflow = it overwhelmed the computer, so they had to add an exception to prevent that happening.
anything divided by zero = 42
come on people! don't you know your DNA?
You must be descended from the telephone sanitizer;)
so zero = life?
ATBPjako Since 0 can be defined as Nothing or None, 0 = 42 could mean "You have no life"
If anything divided by 0 = 42 and 42 is the answer to the ultimate question, then anything divided by 0 (x\0) IS the ultimate question. That means that the answer to x\0 is the meaning of life and everything else. Come to think of it, lim x->0 = infinity (positive or negative) but never reaches 0 itself - it's composed of everything in the universe except for a point where there is nothing. Oh man, I don't know, if you catch my drift. I'll call it Caldoon-Adams-Julekmeister's Law of Relative Existence :)
Even the number of likes on your post has been divided by zero
I'm not a mathematician (more of a moral philosopher) and my favourite part is at 7:11... "people argue (to be honest) different ways depending on what they need..."
So a lot of these arguments are akin to the arguments used against imaginary numbers, basically saying "it doesn't make sense." But, like imaginary numbers, why can't we just say, "okay, sure, they don't make sense," and declare that they exist, just to see where it takes us? We did it with numbers larger than infinity (see that long and mindnumbing VSauce video), so why not with "supernihlic" numbers?
Lol the calculator on my phone says 0^0 is, quote, "Undefined, or 1."
Same for my phone, and honestly, it's the best answer I've ever seen a calculator give, considering what mathematicians say about 0^0.
Mine says both 0/0 = ∞ and 0^0 = 1. I think this isnt the best phone calculator.
Because zero has no value, working only with zeros makes no sense. 0^0 is the same as saying 0/0 which is, in actuality, I have nothing and I don’t divide it what’s the answer. See? That’s totally nonsensical. Lol
I got *Error* on a MacBook and 0 on my android phone
@Milan Duchevski 1/0 is 1.
5:51 extremely bored mathematician with presumably banal question
5:59 Increasingly interested mathematician who's now ready to do you some maths
still no
i hate maths
sorry if u are a maths lover
i just hate it
propably cause i dont pay attention in maths class
I love how old this video is in terms of how different Matt Parker is
What if 1=2 is true and we have been doing it all wrong.
Is 2=4 then? If so, that means 2*1 = 2*2 but since 1=2 then 1*1 = 1*1 so 1=1 and 1=2 at the same time? That is just crazy.
That's basically saying a lawnmower is a cat.
I think you're right. Remind me to loan you £1000 for a day ;)
I'm saying
By using that logic then that mean that all number are equal
Have you guys done anything on 1/infinity? Or is that even allowed (since "infinity should be considered as an idea not a number)?
If you look at zero in terms of inversion, zero is essentially "neutral infinity", in a way. If you take the inversion of zero with any base radius, you will get a variation of infinity as the answer.
I think you're confused in that you are making weird calculations based on our imperfect, artificially created interpretation of mathematics. Doing a bunch of maneuvers isn't proof that nothing is equal to everything, it's just a flaw in the math we created.
I laughed when you said -- when dealing with the different values towards which 1/x tends when you start with positive vs negative one -- that maybe the value wraps around the entire world, such that positive infinity connects to negative infinity, because that is exactly how my high-school teacher explained tangents.