in reply to (tye)Re2: What is zero divided by zero anyway?
in thread What is zero divided by zero anyway?

Seems to me that this is why we don't allow 0/0 = 1, or in fact, n/0 ever. Because, it doesn't work without making a lot of special cases. If 0/0 = 1, then the proof I gave before would prove that 2=1.

Here's a definition that we'd have to apply a special case to if 0/0 = 1 were allowed:

0 * x = 0 (except when x = n/0)

If we simply say that n/0 is not a number, all these special cases go away.

I think the examples of continuous functions that seem to work when the denominator goes to 0 is conflating division by 0 with taking the limit as the denominator goes to 0. I'm not sure, as I'm no expert in math, but I believe that these are all examples of functions whose values are approximations represented by infinite series. In such cases, you would have to examine the infinite series to understand what's really going on.

Replies are listed 'Best First'.
Re: What is zero divided by zero anyway?
by Abigail-II (Bishop) on Oct 07, 2002 at 09:49 UTC
    The fact that 0! == 1 is a logical extension of the definition of factorial: n! == n * (n - 1)!.
    1 == 1! == 1 * (1 - 1)! == 1 * 0! == 0!
    It's not an arbitrary value, it's a logical one.

    But we can't do so for 0/0. Consider:

            0 
        lim - == 0
       x->0 x 
     
    but,
    
            x
        lim - == 1
       x->0 x
       
    
    It would also mean the function x / 0 is undefined, except for the case x == 0.

    Abigail

      The fact that 0! == 1 is a logical extension of the definition of factorial: n! == n * (n - 1)!.

      So 0! == 0 * (-1)!, 1 == 0*(-1)!

      What is the value of (-1)! that when multiplied by 0 gives 1?