View Full Version : Peculiar


Pete
08-28-03, 02:36 AM
(1 + &radic;2)<sup>n</sup> approaches integer values for large n.

eg
(1 + &radic;2)<sup>20</sup> = 1331713.9999992...
(1 + &radic;2)<sup>45</sup> = 4940866263896162.0000000000000002...

The number of 9s or 0s after the decimal point just keeps on growing.

Peculiar!

James R
08-29-03, 12:10 AM
(1+sqrt(2))<sup>n</sup>
=(sqrt(2))<sup>n</sup>(1 + 1/sqrt(2))<sup>n</sup>

As n gets large, (1 + 1/sqrt(2))<sup>n</sup> becomes very close to

1 + n/sqrt(2)

so (1 + sqrt(2))<sup>n</sup> approaches

(sqrt(2))<sup>n</sup>(1 + n/sqrt(2))

Again, as n gets large, this is approximately:

n(sqrt(2))<sup>n-1</sup>

If n is odd, then this is clearly an integer.

I'm working on the n is even case...