tags:

views:

667

answers:

11

What is the usual colloquial term for a number with an exponent in English? Is there something similar to 2 times 31 for "2*31"? What would you say if you were casually talking about such a number with another developer while you are both waiting in line to grab a cup of coffee?

In German we say 2 hoch 31, but all the English forms I know (such as 2 raised to the power of 31 or the 31st power of 2) sound a bit too wordy to me. So, I am curious if there is any shorter, crisp term to communicate such a number to another developer in an informal, spoken context.

+24  A: 

"Two to the thirty one".

Paul R
This is what 90% of scientists and mathematicians would say, I think.
Will Vousden
That's what 90% of American scientists or mathematicians would say, if you're from another continent, two to the thirty first (that is, an ordinal number, not a cardinal). Either is OK in practice, this is just one of the little differences between American and Commonwealth English.
Andrew McGregor
I'll just add that I'm English (British), but I've spent a few years living and working the US, and in my experience we use the above form on both sides of the Atlantic.
Paul R
I expect Will and Andrew are right about scientists and mathematicians (I wouldn't know, I never got me no learnin'). In the general populace, you'd generally hear the word "power" in there (e.g., Space_C0wb0y's or my versions). Growing up in the States, I never heard anyone use the non-ordinal version, the "power" was always implied (by the ordinal) even if not voiced.
T.J. Crowder
I'm American, and I don't recall hearing anyone use the cardinal form. Then again, it's been a while since I last took a math class.
Michael Myers
The cardinal form is more sensible in my opinion, as it means that expressions like `x^y` can be pronounced "x to the y". It's also just more concise. Certainly in my experience (in the mathematics and physics departments of a British university), relatively few people use the ordinal form.
Will Vousden
I would agree with T.J. and mmyers - been Ameerkin all my life, and I would normally use the ordinal ("two to the thirty-first"), not the cardinal ("two to the thirty one") version.
GalacticCowboy
I've been raised on the ordinal version; "two to the thirty-first"
Justin L.
+7  A: 

Just to the power of.

Space_C0wb0y
+13  A: 

"Two to the 31st power"

T.J. Crowder
+19  A: 

"Two to the power of thirty one"

Dolph
... to the powers of ... :)) +1
mlvljr
+8  A: 

"Two to the thirty-first."

ptomato
How I say it, and how everyone I know says it.
Jimmy
+7  A: 

I would say "2147483648" or maybe "2 billion, 147 million, 483 thousand and 648", but maybe that's just me ;)

wasatz
I was **so** tempted. That or "max positive int" :-)
T.J. Crowder
I just couldn't -not- post this. I'll take any downvote I get for this with a smile :)
wasatz
@T.J. Crowder: Technically "max positive 32-bit signed int", there are some "max positive int" that are 2**32 and some other 2**16 and some other 2**15 etc. depending on the language (the question was not tagged Java nor C#) :)
Webinator
@T.J Crowder: Actually it's much worse than that, your answer is totally wrong and so one part of my comment (the one about 2**15). The max positive int is either 2**32 or 2**31-1 but NEVER 2**31. You were confused with minimal value, which is -2**32.
Webinator
A: 

2 multiplied by itself 31 times. ok fine, i dont actually say that. but i figured i'd give an original response.

zaphod
There's an off-by-one error in there somewhere. 2 multiplied by itself once is 2**2, not 2**1.
Ben Voigt
+1  A: 

You could also say,"MAX_INT + 1" or (MAX_UINT + 1) / 2

Steven
Just if you are on a 32 bit legacy OS
jsbueno
"32-bit legacy OS" LOL! I'm getting **so** old...
T.J. Crowder
+1  A: 

I'd say "about 2 billion". :)

Mark Worth
This is actually what I used to say but I always felt a bit uncomfortable with it and that's why I asked this question.
x4u
+2  A: 

2 raised to the 31st

Brian Leahy
A: 

2 pow 31. Very handy if you have a bunch of them in a sentence.

polygenelubricants
When I asked the question I expected something like this to be the top answer in a software development context. But judging from the votes it's obviously not so common place.
x4u

related questions