N00b question about Infinity and Float

K

Kedar Mhaswade

Folks,

A new user. Please be kind. I have checked
http://www.ruby-forum.com/topic/74141#new, but could not find what I was
looking for.

See following irb session:

start

irb(main):004:0* google=10**100
=>
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
irb(main):005:0> googleplex=10**google
(irb):5: warning: in a**b, b may be too big
=> Infinity
irb(main):006:0> google.class
=> Bignum
irb(main):007:0> googleplex.class
=> Float

end

This was nice! But, I expected googleplex.class to be BigNum. Is
Infinity a Float?

Why?

Thanks in advance,
Kedar
 
B

Bertram Scharpf

Hi,

Am Mittwoch, 31. Dez 2008, 12:12:55 +0900 schrieb Kedar Mhaswade:
irb(main):004:0* google=10**100
=>
10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
irb(main):005:0> googleplex=10**google
(irb):5: warning: in a**b, b may be too big
=> Infinity
irb(main):006:0> google.class
=> Bignum
irb(main):007:0> googleplex.class
=> Float

This was nice! But, I expected googleplex.class to be BigNum. Is
Infinity a Float?

I like this kind of questions. A weird example, though; I would
prefer an exception. BigNum * BigNum may not result in a Float.
Hit me with your refutations.

Bertram
 
M

M. Edward (Ed) Borasky

Bertram said:
Hi,

Am Mittwoch, 31. Dez 2008, 12:12:55 +0900 schrieb Kedar Mhaswade:

I like this kind of questions. A weird example, though; I would
prefer an exception. BigNum * BigNum may not result in a Float.
Hit me with your refutations.

Bertram
Hmmm ... "google" is a Bignum (multi-precision integer). "10" is an
Integer. So you are raising an Integer to a Bignum power. So it boils
down to how Ruby raises an Integer to a Bignum power. Now if this were
an "ideal machine", it would perform some kind of exact, and very long
running, exponentiation routine. Clearly it didn't ... it looked at the
numbers and said, "Whoa!" :)

Yeah ... it should have returned an exception, not a Float. But there
are plus and minus Infinity in the IEEE floating point number spec, so I
guess it makes sense to return that. But in theory, given enough memory
for the digits and enough compute time, it could return a Bignum. An
estimate of the amount of memory required is left as an exercise for the
student. :)

Incidentally, the correct spelling is "googol", not to be confused with
the search engine or the Russian author. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,995
Messages
2,570,230
Members
46,819
Latest member
masterdaster

Latest Threads

Top