Problems

Age
Difficulty
Found: 3051

What’s the sum of the Fibonacci numbers F0+F1+F2+...+Fn?

We have a sequence where the first term (x1) is equal to 2, and each term is 1 minus the reciprocal of the previous term (which we can write as xn+1=11xn).

What’s x57?

Let n be a positive integer. Can n777 ever be a Fibonacci number?

There is a very, very fast way of computing the greatest common divisor of two positive integers. It was in fact known even to the Greeks two thousand years ago. This procedure is called the Euclidean algorithm, named after Euclid, a famous ancient Greek mathematician.

The algorithm works as follows. Take two positive integers a,b. Let’s say ab.

  1. Calculate the remainder of a when divided by b. Call it r1.

  2. Calculate the remainder of b when divided by r1. Call it r2.

  3. Calculate the remainder of r1 when divided by r2. Call it r3.

  4. Continue to divide the remainder from two steps prior by the remainder from the last step, until...

  5. The remainder rn is divisible by rn+1. The Euclidean algorithm stops now and rn+1 is gcd(a,b).

Show that there is indeed some natural number n such that rn is divisible by rn+1, so that the Euclidean algorithm must stop eventually. Furthermore, show that rn+1 is actually gcd(a,b) (otherwise it is all in vain!).

Cut a deck of 4 cards. Are any of the cards in the same place as they were before?

We have a deck of 13 cards from Ace to King. Let Ace be the first card, 2 the second card and so on with King being the thirteenth card. How can you swap 4 and 7 (and leave all other cards where they are) by only switching adjacent pairs of cards?

How many permutations of 13 cards leaves the third card where it started?