Let { a n } n ∈ Z ≥ 0 = { ( 2 5 − 1 ) n } . Furthermore, let k be a random non-negative integer. Find the probability that a k can be simplified such that no fractions are involved. Square roots are allowed, however fractions inside square roots are not. Decimal notation is also not allowed.
Examples:
a 0 = 2 0 ( 5 − 1 ) 0 = 1 1 = 1 , which clearly doesn't contain fractions.
a 1 = 2 1 ( 5 − 1 ) 1 = 2 5 − 1 , which can't be simplified without fractions involved.
Hint: First take a look at the first terms of the sequence and try to come up with a recursive formula for it.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Problem Loading...
Note Loading...
Set Loading...
A recursive formula for a n is a n = a n − 2 − a n − 1 , with a 0 = 1 , a 1 = 2 5 − 1 .
Proof . Let k ∈ Z ≥ 0 . If k ∈ { 0 , 1 } , the definition of a n already proofs the claim. Therefore, assume k ≥ 2 . It follows that a k = ( 2 5 − 1 ) k = ( 2 5 − 1 ) k − 1 ⋅ 2 5 − 1 = ( 2 5 − 1 ) k − 1 ⋅ 2 5 + 1 − 2 = 2 5 + 1 ( 2 5 − 1 ) k − 1 − ( 2 5 − 1 ) k − 1 ⇔ a k = 4 ( 5 + 1 ) ( 5 − 1 ) ( 2 5 − 1 ) k − 2 − a k − 1 = 4 5 − 1 a k − 2 − a k − 1 = a k − 2 − a k − 1 , as expected.
Now note that a k can always be written in the form 2 a + b 5 , where a , b ∈ Z , as a 0 and a 1 are in this form and a k is just the (positive) difference between a k − 2 and a k − 1 . In order to get rid of the fraction, both a and b must be even numbers.
Furthermore, it can be proven that the difference between an odd number and an even number is odd and that the difference between two odd numbers is always even (see lemma below). With this information, we can see that if a k = 2 a + b 5 with a , b even numbers and a k + 1 = 2 c + d 5 with c , d odd numbers, then a k + 2 = 2 a − c + ( b − d ) 5 = 2 e + f 5 , where e , f are both odd. We can, applying the same method, also see that in this case a k + 3 = 2 c − e + ( d − f ) 5 = 2 g + h 5 , where g , h are both even and that a k + 4 = 2 g − e + ( h − f ) 5 = 2 i + j 5 , where i , j are both odd. Notice that the pattern will now repeat itself, as it has returned to the situation it was in the beginning. The pattern should therefore be like even, odd, odd, even, odd, odd, ... Also, notice that a 0 and a 1 have the properties which a k and a k + 1 have, respectively.
As stated earlier, to get rid of the fraction, we need to have for arbitrarily chosen l ∈ Z ≥ 0 that a l = 2 l 1 + l 2 5 , where l 1 , l 2 are both even. With the pattern even, odd, odd, even, odd, odd, ..., it should be clear that the probability of a k being fractionless after simplifying is 3 1 .
Lemma: (1) The difference between an odd number and an even number is odd and (2) the difference between two odd numbers is even.
Proof . We first proof (1). An even number can be written as 2 n , where n ∈ Z and an odd number can be written as 2 m + 1 , where m ∈ Z . Therefore their difference can be written as 2 m + 1 − 2 n = 2 ( m − n ) + 1 = 2 k + 1 , where k = m − n . The difference between two integers is an integer, so k ∈ Z and we conclude that the difference between an odd number and an even number is odd.
Now we proof (2). We can write the two odd numbers as 2 n + 1 and 2 m + 1 respectively, where n , m ∈ Z . Their difference therefore is 2 m + 1 − ( 2 n + 1 ) = 2 m − 2 n = 2 ( m − n ) = 2 k , where k = m − n . Again, the difference between two integers is an integer, so k ∈ Z and we conclude that the difference between two odd numbers is even.