Problems

Age
Difficulty
Found: 2762

Terry and Janet are playing a game with stones. There are two piles of stones, one has \(m\) stones and the other has \(n\) stones initially. In their turn, a player takes from one pile a positive number of stones that is a multiple of the number of stones in the other pile at that moment. The player who cleans up one of the piles wins. Terry starts - who will win?

Mathematical Induction is a method to prove statements that are usually true for all natural numbers. The method consists of two steps.

  • The first step, known as the base case, is to prove the given statement for the first natural number.

  • The second step, known as the inductive step, is to prove that the true statement for the number \(n\) implies that the statement for \(n+1\) is also true.

To understand how the method of induction works we look at dominoes. Have you ever seen a line of dominoes falling? How does it happen?

To prove that a line of dominoes will all fall when we push the first one, we just have to prove that:

  • The first domino falls down (base case)

  • The dominoes are close enough that each domino will knock over the next one when it falls (inductive step).

Let’s look at triangular numbers, numbers which are a sum of the first \(n\) natural numbers: \[1+2+3+\dots +n\] Show using induction that the \(n\)-th triangular number is equal to \(\frac{n(n+1)}2\).

Show using induction that \[1+3+5+\dots+ (2n-1) = n^2\] The sum of \(n\) first odd numbers is equal to \(n^2\).

Two convex polygons \(A_1A_2...A_n\) and \(B_1B_2...B_n\) have equal corresponding sides \(A_1A_2 = B_1B_2\), \(A_2A_3 = B_2B_3\), ... \(A_nA_1 = B_nB_1\). It is also known that \(n - 3\) angles of one polygons are equal to the corresponding angles of the other. Prove that the polygons \(A_1...A_n\) and \(B_1...B_n\) are equal.

Show that \(2^{2n} - 1\) is always divisible by \(3\), if \(n\) is a positive natural number.

The famous Fibonacci sequence is a sequence of numbers, which starts from two ones, and then each consecutive term is a sum of the previous two. It describes many things in nature. In a symbolic form we can write: \(F_0 = 1, F_1 = 1, F_n = F_{n-1} + F_{n-2}\).
Show that \[F_0+F_1+ F_2 + \dots + F_n = F_{n+2}-1\]

In certain country, there are \(n\) cities. Some of them are connected by roads, roads go in both directions. It is possible to get from any city to any other city using only roads, however, for any pair of cities, there is always only one way to get from one of them to the other, there are no alternative routes.
Show that there are exactly \(n-1\) roads in this country.

If \(x\) is any positive real number and \(n \ge 2\) is a positive natural number, show that \[(1+x)^n > 1+nx\]

Anna and Bob play a game with the following rules: they both receive a positive integer number. They do not know each other’s numbers, but they do know that their numbers come one after another – they do not know which one is larger. (If Anna gets \(n\), Bob gets either \(n-1\) or \(n+1\)). Anna then asks Bob – “do you know what number I have?” If Bob does know, he has to say Anna’s number and he wins the game. If he does not, he has to say that he does not. Then, he asks Anna if she knows his number. If Anna does not know, she asks Bob. This continues until one of them finds out what is the other’s number. Assuming that both Anna and Bob know mathematics sufficiently well to be able to solve this problem, find out who wins the game and how.
For simplicity let’s assume Bob always gets the odd number and Anna always gets the even number - two consecutive numbers have opposite parity!