Why does a division by zero produce an error or undefined message?

In summary, a division by zero is a mathematical oddity, if a computer or calculator etc performs a 1\0 they would crash, the OS prevents the execution, and displays ERROR or UNDEFINED. Some versions of windows calculator display positive or negative infinity.
  • #1
AtoMick-u235
Gold Member
12
1
A division by zero is a mathematical oddity, , if a computer or calculator etc performs a 1\0 they would crash, the OS prevents the execution, and displays ERROR or UNDEFINED, , , some versions of windows calculator display positive or negative infinity, , try it

Any ideas on this ?
 
Technology news on Phys.org
  • #2
Division by zero is simply not defined. There is no need to divide by zero because it isn't part of the multiplicative group. Addition and multiplication are only connected by the distributive law. That's all you are allowed to use. Since zero belongs to addition, multiplication is simply not a question. You wouldn't ask for the inverse sine function value of two, wouldn't you? Why would you want to divide by zero? It is the same nonsense.
 
  • Like
Likes russ_watters and dextercioby
  • #3
AtoMick-u235 said:
A division by zero is a mathematical oddity, , if a computer or calculator etc performs a 1\0 they would crash, the OS prevents the execution, and displays ERROR or UNDEFINED, , , some versions of windows calculator display positive or negative infinity, , try it
In my experience, computers don't crash if a program attempts to divide by zero. Instead, the program will throw an exception; namely a divide by zero exception.

In Windows 10, both the Scientific mode and Standard mode simple display a message: "Cannot divide by zero". Which versions of the Windows calculator are you talking about?

BTW, I have moved your thread to the General Math section as it has nothing to do with relativity.
 
  • Like
Likes russ_watters, PeroK and Dale
  • #4
If ##1/x## is the number you have to multiply ##x## by to get ##1##, what would that mean for ##1/0##? No real number times zero is ##1.##
 
  • Like
Likes mathwonk and Dale
  • #5
AtoMick-u235 said:
Any ideas on this ?
It is pretty straightforward. $$x=a/b$$ means solve the following equation for ##x##:$$bx=a$$If ##b=0## then that equation has no solution. So division by zero is undefined
 
  • #6
Dale said:
It is pretty straightforward. $$x=a/b$$ means solve the following equation for ##x##:$$bx=a$$If ##b=0## then that equation has no solution. So division by zero is undefined
Hi, i understand the math:-

x = a/b so .5 = 1/2

bx = a so 2 x .5 = 1

But Infinity is not a Natural number, Integer, Rational, or even a Real Number so it cannot be represented with pen and paper, but i think in the real world with a computer the answer is 00000001 / 00000000 = infinity
 
  • Skeptical
Likes weirdoguy and berkeman
  • #7
AtoMick-u235 said:
Hi, i understand the math:-

x = a/b so .5 = 1/2

bx = a so 2 x .5 = 1

But Infinity is not a Natural number, Integer, Rational, or even a Real Number so it cannot be represented with pen and paper, but i think in the real world with a computer the answer is 00000001 / 00000000 = infinity
In the real world, the computer throws an exception. (see above)
In the mathematical world, we demand ##1\neq 0## which puts zero out of the range of multiplication. (see above)

The question has been answered on all meaningful levels so the thread is closed.
 
  • Like
Likes russ_watters and berkeman
  • #8
Apologies to my co-mentors @Mark44 and @fresh_42, but I will reopen the thread as some of the answers are incorrect/incomplete.

A floating point following the IEEE Standard for Floating-Point Arithmetic (IEEE 754) can represent a real number, but can also represent positive or negative infinity, and NaN (not a number). Following that standard, since ##\lim_{ x \rightarrow 0} a/x = \pm \infty##, division by zero should return ##\pm \infty## (the sign will depend on the sign of ##a## and the sign of ##0##, which is a signed number in IEEE 754). See https://en.wikipedia.org/wiki/Division_by_zero#Computer_arithmetic
 
  • Like
Likes russ_watters, Filip Larsen, jack action and 1 other person
  • #9
DrClaude said:
Apologies to my co-mentors @Mark44 and @fresh_42, but I will reopen the thread as some of the answers are incorrect/incomplete.

A floating point following the IEEE Standard for Floating-Point Arithmetic (IEEE 754) can represent a real number, but can also represent positive or negative infinity, and NaN (not a number). Following that standard, since ##\lim_{ x \rightarrow 0} a/x = \pm \infty##, division by zero should return ##\pm \infty## (the sign will depend on the sign of ##a## and the sign of ##0##, which is a signed number in IEEE 754). See https://en.wikipedia.org/wiki/Division_by_zero#Computer_arithmetic
IIRC, then the C++ compiler from MS throws an exception which has to be handled by the programmer or is thrown all the way up to the top, resulting in an automatic error message.

Your "can represent ##\pm \infty ## or ##NaN##" is exactly the exception handling, since the program cannot distinguish whether you tried to compute ##\lim_{n \to \pm\infty}\frac{1}{n}## or ##1/0.##

Hence we have an exception anyway. Makes sense as many IDE are written in C++.
 
  • #10
fresh_42 said:
IIRC, then the C++ compiler from MS throws an exception which has to be handled by the programmer or is thrown all the way up to the top, resulting in an automatic error message.

Your "can represent ##\pm \infty ## or ##NaN##" is exactly the exception handling, since the program cannot distinguish whether you tried to compute ##\lim_{n \to \pm\infty}\frac{1}{n}## or ##1/0.##

Hence we have an exception anyway. Makes sense as many IDE are written in C++.
There is no exception thrown when the IEEE 754 standard is followed.

Consider this code:
C++:
#include <iostream>

using namespace std;

int
main ()
{
  double a = 1.;
  double b = -1.;
  double zero_plus = 0.;
  double zero_minus = -0.;

  cout << a/zero_plus << " " << a/zero_minus << " " << b/zero_plus
       << " " << b/zero_minus << "\n";

  return 0;
}
Compiled with the gcc compiler, here is what one gets:
Code:
$ g++ div_zero.cpp
$ ./a.out
inf -inf -inf inf
As I said above, the sign of ##\infty## is determined fro the sign of the numerator and the sign of the zero, which in IEEE 754 is signed.
 
  • Informative
  • Like
Likes pbuk and jack action
  • #11
DrClaude said:
As I said above, the sign of ∞ is determined fro the sign of the numerator and the sign of the zero, which in IEEE 754 is signed.
Well, C++ has been a while since I last directly used it. And the IDE I use nowadays fortunately throws an exception since anything else is mathematical nonsense; and this thread has landed in GM.
 
  • #12
Is this thread about why the calculator does something when asked to divide by zero or is it about why division by zero is not defined?
 
  • Like
Likes Vanadium 50 and Dale
  • #13
DrClaude said:
There is no exception thrown when the IEEE 754 standard is followed.
That's correct and is something I had forgotten about.
martinbn said:
Is this thread about why the calculator does something when asked to divide by zero or is it about why division by zero is not defined?
Seems to be more about the former, although a result of either inf or -inf wouldn't be considered to be defined.
 
  • Like
Likes russ_watters
  • #14
I'm also confused about what the original questioner wanted to discuss - is it a question as to why do different OS's handle this differently or instead why it's not defined? Dividing by a number effectively asks how many iterations there are of a value in a quantity. The 'problem' seems more to have an issue with our definition of division because it does not include zero. And with an OS.. the usual computation rules attempt to strictly enforce that definition. Circular logic could enforce the execution of the rule to go on infinitely because it will never proceed with an answer (so some may return that it's infinite)... or an additional rule would be in place to not count 0 (so it's "undefined" when it's really "not included").
 
  • Like
Likes AtoMick-u235
  • #15
martinbn said:
Is this thread about why the calculator does something when asked to divide by zero or is it about why division by zero is not defined?
At the time i thought of both, but it's just a general question about "Division By Zero" errors
 
  • #16
AtoMick-u235 said:
At the time i thought of both, but it's just a general question about "Division By Zero" errors
As soon as you say "error" as soon it is a programming issue since mathematics doesn't have a division by zero.
 
  • #17
fresh_42 said:
Well, C++ has been a while since I last directly used it. And the IDE I use nowadays fortunately throws an exception since anything else is mathematical nonsense; and this thread has landed in GM.
That is also possible in C++: https://en.cppreference.com/w/cpp/numeric/fenv/fetestexcept
(Well, a floating-point exception state anyway, the actual throw is still something the programmer has to do).

And by the way, being forced to handle exceptions and/or add zero-test guards in the middle of (some) complex numerical calculations is not easy, whereas detecting NaN or floating-point exceptions after the calculation is fairly easy.
 
Last edited:
  • Like
Likes pbuk
  • #18
It kind of makes sense to separate inf from undefined.

Playing around with the C++ program of @DrClaude , the only time it returns nan is when you have a form ##\frac{0}{0}## in your equation[1].

For example, it returns the correct answer ##0## to the equation cout << 1/(2/0.); even if you do it into 2 separate equations like so: a = 2/0.; cout << 1/a;.

----------------------------------------------------
[1] ##0 \times \infty## and ##\frac{\infty}{\infty}## are just special cases of ##\frac{0}{0}##, namely ##0 \times \frac{a}{0}## and ##\frac{^a/_0}{^b/_0}##.
 
  • #19
jack action said:
It kind of makes sense to separate inf from undefined.
Well, yes. The token inf implies a result that is unbounded or large in absolute value. Values that are undefined can come from domain errors; for example, from expressions such as sqrt(-1.0) or acos(2.0). In Visual Studio, attempting to evaluate these expressions produces -nan(ind) and nan(ind), respectively -- indefinite NaNs (NaN means not a number).
jack action said:
Playing around with the C++ program of @DrClaude , the only time it returns nan is when you have a form ##\frac{0}{0}## in your equation[1].

For example, it returns the correct answer ##0## to the equation cout << 1/(2/0.); even if you do it into 2 separate equations like so: a = 2/0.; cout << 1/a;.
First off, none of these is an equation. They are all statements. As you probably know, the symbol '=' in C and other languages derived from C is the assignment operator.
Second, a program that produced 0 as the "correct answer" for these calculations would be highly suspect.
jack action said:
----------------------------------------------------
[1] ##0 \times \infty## and ##\frac{\infty}{\infty}## are just special cases of ##\frac{0}{0}##, namely ##0 \times \frac{a}{0}## and ##\frac{^a/_0}{^b/_0}##.
 
  • #20
Mark44 said:
In my experience, computers don't crash if a program attempts to divide by zero. Instead, the program will throw an exception; namely a divide by zero exception.

In Windows 10, both the Scientific mode and Standard mode simple display a message: "Cannot divide by zero". Which versions of the Windows calculator are you talking about?

BTW, I have moved your thread to the General Math section as it has nothing to do with relativity.
I am a computer technician, i have been a Motorola 68000 Assembly programmer, and have been building IBM compatibles since 1996, , , i am sure it was Windows 95\98 , , I just tried WinXP "Cannot Divide By Zero"
 
Last edited:
  • #21
I would be far more interested in the question of how it is realized. How does the program know that it should throw an exception?
 
  • #22
With Win98 calculator and errors in general, Its obvious, and simple programing, if the divisor equals zero, do not execute the command, and print "Positive Infinity" , , otherwise i still believe a computer would, crash !!
 
Last edited:
  • #23
I meant the C++ compiler, more precisely, the result it produces, not a stupid program code IF "/0" THEN. How did they tell the compiler to produce a machinery code that knows when to throw an exception?

Edit: Before someone is offended. Stupid refers to the fact that this hard-coded line has no intrinsic intelligence, whereas exception handling is not trivial in my mind.
 
  • #24
fresh_42 said:
I meant the C++ compiler, not the program code.
In all my programing over the years, i have done a lot of compiling , a "Division by Zero" is extreamly rare, my cousin has been an accountant for 40 years, i asked her, and she never encountered a "Division by Zero" ever, , ha

A copilier is a program !!
 
  • #25
AtoMick-u235 said:
In my all my programing over the years, i have done a lot of compiling , a "Division by Zero" is extreamly rare, my cousin has been an accountant for 40 years, i asked her, and she never encountered a "Division by Zero" ever, , ha
This does not answer the question of how Throw Exception Catch Exception is realized so that it can catch division by zero or any other exception. It's not always a numerical problem, but those count, too, e.g. the logarithm of a negative number or an invalid string handling.

Divisions by zero occur in the developing and testing phase of a project. I even had a PL/I compiler error because it didn't correctly handle the initialization of an integer as zero. Things happen, and hopefully, before the accountants use a program.
 
  • #26
if I remember right with the 68000, Exceptions are just a JUMP and can be operated in User or Supervisory mode. it has been exactly 30 years ago, so i'm a bit rusty, , ,
 
  • Like
Likes fresh_42
  • #27
fresh_42 said:
This does not answer the question of how Throw Exception Catch Exception is realized so that it can catch division by zero or any other exception.
This is hardware and software dependent, and may also vary for different types of operation (integer, floating point, SIMD (vector)). I will outline one way (perhaps the most common way).
  • When the CPU encounters an exception condition it executes a trap with a certain value (a trap is a special kind of interrupt, one that is generated by the CPU rather than external hardware or software).
  • The processer handles the trap like other interrupts by looking up the value in an interrupt vector which stores the address of a subroutine to call.
  • The addresses stored in the interrupt vector are set by the operating system which will default to terminating the relevant program when an exception occurs.
  • An application program may include code to handle exceptions occurring while it is executing itself. On loading it will tell the operating system about this so that instead of terminating the program the OS will call the relevant code.
  • Many high level languages include instructions to handle exceptions, typically using a ‘try…catch’ block (‘try…except’ in Python and Pascal). When the compiler encounters the ‘try’ token it inserts code to call the ‘catch’ block when an exception is encountered.
  • Most high level languages will ignore floating point divide by zero by default, allowing the program to continue with the value of + or - Infinity (or NaN for 0/0). Among modern languages used for scientific applications (including Matlab and Mathematica), Python is an outlier in this respect: it throws an exception for any division by zero.

fresh_42 said:
It's not always a numerical problem, but those count, too, e.g. the logarithm of a negative number or an invalid string handling.

The logarithm of a negative number yes, but 'invalid string handling' is not something that the CPU understands: strings are implemented in high level languages which must insert code to detect for such invalid handling and create the exception. The c++ std::string library does this whereas of course C style strings do not (and are therefore the source of many bugs and hacking exploits).

This thread probably belongs in computing rather than General Math.
 
  • Like
  • Informative
Likes Rive, Mark44, fresh_42 and 2 others
  • #28
I hate to bring this up, but there is also something called "defensive coding" - instead of throwing an exception and recovering from it, the program checks if the denominator is zero before executing the division. If it is, it can recover more gracefully.

The usual objection to that is "it's slow!". To that, I say "so are exceptions" and "it is the rare program indeed that spends most of its time dividing two numbers - will you even notice this?" And if I am grumpy, I'll say "Get the code working and bug-free, then profile it, and only then worry about speed."

pbuk said:
SIMD
I would say that's where you really, really want to do this. If you have a divide by zero in one calculation, you will have to handle not just that, but all the simultaneous good calculations in the same instruction.

Don't count your chickens before they're hatched, and don't optimize your code before its written.
 
  • Like
Likes Mark44 and Dale
  • #29
Computers also do not understand removable discontinuities; if you tell a computer to find [itex](x^2 - 9)/(x - 3)[/itex] and [itex](x - 3)/(x^2 - 9)[/itex] for [itex]x = 3[/itex] it will produce NaN for both, rather than 6 and 0 respectively. If you want the latter, youl have to catch it and handle it yourself.
 
  • Like
Likes Vanadium 50
  • #30
pasmith said:
removable discontinuities
That would be a good example of something to be handled before throwing the exception rather than as part of the recovery.
 
  • #31
If the divisor is small enough compared to the dividend that the quotient has gotten too big for its register, an "Overflow" (or maybe "Size Error" which covers a few more bases) return-code gets tossed back to the program, instead of the usual "yup, worked fine".

If you've gotten a literal "Divide by Zero" error, that's probably extra code in the software, inserted by a "helpful" compiler/interpreter. The hardware doesn't actually care, and will continue onwards unless you've coded in something to do if an error occurs.
 
Last edited:
  • #32
Lots of machine operations produce return-codes that get sent back to the program running on them whether something unusal happened or not. It's up to the programmer to choose to use them.

In the case of a Size-Error for a divide, it doesn't have to be a zero, just any number small enough (compared to the dividend) that the quotient overflows its register.

If you get a literal "Divide By Zero", that's probably some code introduced by the "helpful" compiler/interpreter, as a pre-check.

Doesn't hurt the machine ; it will just keep chugging along either way.
 
  • #33
I just looked it up. IEEE 754, which is the standard most chips use for floating point returns +INF for a/+0 and -a/-0 (where a is a positive number) and -INF for a/-0 and -a/+0. It also have two zeros, +0 amd -0. Dividing either zero by either zero gives NaN.

How the program treats this is, of course, up to the programmer.
 
  • Informative
Likes hmmm27

1. Why does a division by zero produce an error or undefined message?

Division by zero produces an error or undefined message because mathematically, division by zero is undefined. In arithmetic, division by a number means finding how many times that number fits into another. If you divide by zero, you are essentially asking how many zeros fit into a number, which doesn't make sense as zero times any number is always zero, and you cannot reach a non-zero dividend this way.

2. What happens in a computer system when a division by zero occurs?

When a division by zero occurs in a computer system, it typically results in a runtime error or exception. Most programming languages and computing environments detect this situation and halt the execution of the program, displaying an error message. This is to prevent any undefined behavior or incorrect results from corrupting data or leading to unpredictable outcomes in software applications.

3. Is division by zero ever allowed in mathematical equations or computer programming?

In standard arithmetic and most areas of mathematics, division by zero is not allowed as it leads to undefined results. In computer programming, trying to divide by zero will usually throw an exception or error. However, in certain theoretical or specialized contexts, like in the study of limits in calculus, the concept of approaching division by zero can be explored under controlled conditions.

4. How do calculators and computer programs typically handle division by zero?

Calculators and computer programs typically handle division by zero by displaying an error message such as "Error," "Cannot divide by zero," or "Undefined." This is implemented through error handling mechanisms within the software that detect the division by zero attempt and prevent the operation, alerting the user to the invalid input.

5. Can division by zero ever produce a valid result in any context?

In conventional arithmetic, division by zero cannot produce a valid result and is considered undefined. However, in certain advanced mathematical contexts, such as algebraic structures like wheels or the projectively extended real numbers, division by zero can be defined in a way that is consistent within those systems. Additionally, in the field of complex analysis, the point at infinity can sometimes be considered a result of division by zero, but this is a highly abstract concept.

Similar threads

  • General Math
2
Replies
47
Views
3K
  • Programming and Computer Science
Replies
29
Views
3K
Replies
28
Views
4K
  • Programming and Computer Science
Replies
8
Views
3K
Replies
3
Views
2K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
8
Views
1K
  • Programming and Computer Science
Replies
8
Views
3K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
1
Views
2K
  • Programming and Computer Science
Replies
8
Views
12K
Back
Top