Problems

Age
Difficulty
Found: 2275

In the 6×7 large rectangle shown below, how many rectangles are there in total formed by grid lines?

image

Simplify F0F1+F2F3+...F2n1+F2n, where n is a positive integer.

Let us define XOR (or addition mod 2). XOR is defined for 0 and 1 only. Here is a table recording the values of XOR:

XOR 0 1
0 0 1
1 1 0

Now we define the important concept of nim-sum. Given two natural numbers x and y, we first convert them into binary representations and then compute XOR on individual digits. The resulting number, denoted xy, is the nim-sum of x and y. Here is an example.

1 0 1 1 0
XOR 0 0 1 0 1
1 0 0 1 1

This is simply saying 225=19. Note that 22=(10110)2 and 5=(00101)2.

Verify (xy)z=x(yz), so we can speak of xyz with no ambiguity.

Show that xy=0 if and only if x=y. Remember that xy denotes the nim-sum of x and y.

Show that Nim(x,y,z) is a losing position if and only if xyz=0. Remember that xy denotes the nim-sum of x and y.

Is Nim(7,11,15) a winning position or a losing position? If it is a winning position, what is the optimal move?

Show that Nim(x1,,xk) is an losing position if and only if x1xk=0. xy denotes the nim-sum of x and y.

Imagine the Earth is a perfectly round solid ball. Let us drill from the North Pole, London and Beijing simultaneously and meet at the centre of Earth. A ball with three openings is formed. The surface of this ball is shown on the left of the picture below. Describe how to stretch this surface so that it looks like the surface of a donut with two holes as shown on the right.

image

Show that there are no rational numbers a,b such that a2+b2=3.

There are infinitely many couples at a party. Each pair is separated to form two queues of people, where each person is standing next to their partner. Suppose the queue on the left has the property that every nonempty collection of people has a person (from the collection) standing in front of everyone else from that collection. A jester comes into the room and joins the right queue at the back after the two queues are formed.

Each person in the right queue would like to shake hand with a person in the left queue. However, no two of them would like to shake hand with the same person in the left queue. If p is standing behind q in the right queue, p will only shake hand with someone standing behind q’s handshake partner. Show that it is impossible to shake hands without leaving out someone from the left queue.