Earlier quoted context omitted.
Correct me if I'm wrong, but I infer that you're using "we made it all up" as a pejorative toward mathematicians. Of course mathematicians invented the terminology, notation, and methodology, but that's not a bad thing. It's a great thing, just like it's great that engineers "make up" bridges, chemists "make up" pharmaceuticals, writers "make up" novels, etc.
Mathematicians are engaged in a dramatically different kind of project than almost any other human discipline. Mathematical details emerge from definitions, but they appear exactly the same way for everyone else using the same definitions . And what's really surprising is how robustly those purely rational results compare to messy empirical reality. There is no good reason to believe that this should be the case! In…
0^0
91–100 of 256 posts
Re: 0^0
#92Earlier quoted context omitted.
> It is [arbitrary]. We invented the arabic numerals because... Then it's not arbitrary; chosen at random or on a fleeting whim, without reference to a reason or system. It was invented to fill a specific need based on certain limitations.
But it is arbitrary; subject to individual will or judgment without restriction; contingent solely upon one's discretion.
It's true enough that mathematicians define certain things certain ways, but they generally have reasons for doing so that tie into other aspects of whatever system they're working within at the time, or with particular areas of investigation: 'If I alter this rule, or make this assumption, what does it do to the system as a whole? Does it let me find some answer more easily than another way? Does it preserve consistency/truth values? Under what conditions?'
That's far from being dependent solely on their individual whim, the decisions they make in that regard, and the answers they will get, are strongly influenced by the form the system has taken and it's uses and limitations.
Of course if you want to maintain that maths as a whole is arbitrary because you could make whatever you liked up and say you were doing maths... well, I won't argue you're not, but it seems to me you've made the objection general enough that it could safely be ignored. Anyone doing something purposeful could simply assert: 'Your's, maybe. We're trying to do our-maths-goal.' And move on.
Re: 0^0
#93Re: 0^0
#94Earlier quoted context omitted.
The limit in 1b is 1 from below as well, right? I'm not sure how limits work with complex numbers, but the imaginary part of x^x approaches zero as x approaches zero from below, so can we say that the limit of x^x as x approaches zero from below is also zero?
Yes, but getting there steps out of the realm of "intuition" for me.
Re: 0^0
#95Re: 0^0
#96The real problem here is that x^y is a single shorthand which refers to a few fundamentally different mathematical concepts (which happen to have significant overlap with each other). First, it refers to a function f:C x N --> C, defined in terms of repeated multiplication. f(x,0) is 1 for all x != 0, and so we adopt the convention that f(0,0) is also 1. But it also refers to a function g:C x C --> C, defined as g(x,…
Naive Haskell example code (using Int for Nat):
f :: Monoid m => (m,Int) -> m
f (x,0) = mempty
f (x,n) = x `mappend` f (x,n-1)
-- or equivalently
f (x,n) = msum (replicate n x)Re: 0^0
#97Earlier quoted context omitted.
> But how does that translate to something useful in the real world? I think this is a by-product of the way we are taught maths at the very start; that it must somehow relate to real things. We start our understanding of maths by using real world objects like apples and we show how addition works and subtraction. I think perhaps it sticks in our head that everything must somehow relate to real objects and the real w…
Square roots and integrals both relate back to the real world...
[1] https://en.wikipedia.org/wiki/Banach%E2%80%93Tarski_paradox
Re: 0^0
#98Can anyone explain why this is a valid operation? http://wp.com/latex.php?latex=\lim_{x%20\to%200^{+}}%20x^{x}...
Re: 0^0
#99- "0^0. Why? Because mathematicians said so. No really, it’s true." - [Detailed explanation of the tradeoffs involved in choosing different definitions of exponentiation.] So, it's not "because mathematicians said so", it's because of a deep review of the tradeoffs of defining how exponentiation generalizes, the kind of thing that mathematicians happen to study more than other identifiable groups.
Re: 0^0
#100Perhaps a related question: How should it be defined in a math library for a programming language? Should it return 1, or throw an exception?
Why is that even a question? It should return the correct answer, of course. Edit: At the very least, that behaviour should be a configurable option for those who desire something other than what most mathematicians accept as being the correct answer.