Loading [MathJax]/jax/element/mml/optable/BasicLatin.js

Saturday, December 6, 2014

Where is my umbrella? (Tuklas Vol. 16, No. 5 - December 6, 2014)

WHERE IS MY UMBRELLA?

Everyday life is full of random phenomena, be it rolling dice, winning or losing pusoy dos, or even just the chance of rain on a cloudy day. In this article, we will talk about an object that behaves randomly in a rather odd way: its future behavior only depends on the past through present. We call this object a Markov process. Simply put, we can think of a Markov process as a memoryless process: what will happen in the future does not depend on the past. That is, the future event is dependent only on the current event. For instance, if A1,A2,A3,,A10 are events of a Markov process, then the probability that the next event A11 happens will depend only on A10. The rest, they say (quite appropriately), is history.

Let us talk about the weather. We give an example that always bothers students on a weekday morning. Suppose that in a certain city, there is a 60% chance that when it is sunny today it will also be sunny tomorrow. When it is rainy today, there is an 85% chance that it will also be rainy tomorrow. Of course, we are making simplistic assumptions here to illustrate the case of Markov processes. However, we can also use this example as an excuse when we are too sleepy to get out of bed on a weekday morning!

We can make a nice diagram called a chain, which can look like something below. The terms sunny and rainy are called states. Arrows represent the transition from one state to another with the corresponding probability values. From the problem, when it is rainy today, there is 0.85 chance that it will also be rainy tomorrow. This also means that there is a 0.15 chance of the weather being sunny tomorrow. Also, when it is sunny today, there is 0.6 chance of sun and 0.4 chance of rain tomorrow.



Diagrams like chains are useful in summarizing given data. Of course, mathematicians would prefer a more compact and powerful tool where calculations can be made, so they make use of matrices to describe the problem. A standard matrix representation of the problem would look something like the one below:P=[sunnyrainysunny0.60.4rainy0.150.85]The matrix P is called a transition probability matrix or simply a transition matrix. Notice that the rows add up to 1. We can also write rainy instead of sunny first and the mathematics will not change. I prefer the order above.

So let us say that it is sunny today. What is the probability that it will be sunny tomorrow? What is the probability it will be sunny two days from now?

For a simple Markov process like this, the transition matrix two time steps from now is given by the product of the matrix P with itself, or P2. We have P2=[sunnyrainysunny0.420.58rainy0.21750.7825].This means that two days from now, there is a 42% chance of being sunny if it is sunny today, and a 78.25% chance of the weather being rainy if rains today. To get the weather n days from now, you can compute Pn

After some diligence and hard work, something interesting happens to Pn:P3=[sunnyrainysunny0.33900.6610rainy0.24790.7521]P10=[sunnyrainysunny0.27300.7270rainy0.27260.7274]P20=[sunnyrainysunny0.27270.7273rainy0.27270.7273]P50=[sunnyrainysunny0.27270.7273rainy0.27270.7273]Any guesses on the probability of rain or shine 70 days from now? 

Notice that as the powers go larger and larger, the probabilities do not change anymore. The probability of sunshine 20, 40, 50, and even 100 days from now is about 27% whether or not it is rainy or sunny right now. This Markov process is said to have a limiting distribution or a steady state distribution.

It is important to note that Markov processes have intricate subtleties that are prone to misinterpretation. Our example above involves some simplifications. A more rigorous treatment of Markov processes can be found in college probability textbooks.

ABOUT THE AUTHOR:
Clark Kendrick Go is an Instructor at the Ateneo de Manila University. He is currently taking his graduate studies in the Nara Institute of Science and Technology in Ikoma, Japan.

OLYMPIAD CORNER
from the Colombian Mathematical Olympiad, 1997

Problem: We are given an m×n grid and three colors. We wish to color each segment of the grid with one of the three colors so that each unit square has two sides of one color and two sides of a second color. How many such colorings are possible?


Solution: 
Suppose the three colors are blue, red and green. Let an be the number of such colorings of a horizontal 1×n board given the colors of the top grid segments. For n=1, assume WLOG the top segment grid is given and is colored blue. That means there are three ways to choose the other segment that will be colored with colored blue, and then two ways to choose the colors of the remaining two segments. This gives us a total of 6 colorings, and hence a1=6.
We now find an+1 in terms of an. Given any coloring of the 1×n board, assume WLOG that its rightmost segment is colored blue. We now add a unit square to the right side of the board to make a 1×(n+1) board, where the top color of the new square is known.
  1. If the new top segment is colored blue, then there are two ways to choose the colors of the remaining two segments.
  2. If the new top segment is not blue, then there are also two ways to choose which of the remaining segments is colored.

In other words, given the color of the top segment for the (n+1)-th square, there will always be two ways to color the remaining. This means that an+1=2an, and so an=32n.

Going back to the given problem, note that there are 3n ways to color the top edges, and 32n ways to color each successive row. Hence the total number of colorings is 3n(32n)m=3m+n2mn.

SOLUTIONS
(for November 22, 2014)
  1. Show that if 2n1 is prime, then n must be prime. (Converse of Mersenne Prime Conjecture)
    (partial credit for Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Suppose n is not prime. Then n=ab, where a,b>1. So we have2n1=2ab1=(2a)b1=(2a1)((2a)b+(2a)b1++2a+1).By our definition of n, we can see that 2a1>1, and also, ((2a)b+(2a)b1++2a+1)>1. This means that 2n1 has proper divisors, which means it is not prime, which is a contradiction.

  2. Given a positive integer n, let p(n) be the product of the nonzero digits of n. Determine the value of p(1)+p(2)++p(999)+p(1000). (AIME 1994)
    (partial credit for Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Define a function m such that m(0)=1 and m(x)=x, for x0. Note that if x=an10n+an110n1++a0, then p(x)=m(an)m(an1)(m1)(m0).Specifically, since we are looking at 3-digit numbers,p(100h+10t+u)=m(h)m(t)m(u).This means thatp(0)+p(1)+p(2)++p(999)=m(0)m(0)m(0)+m(0)m(0)m(1)++m(9)m(9)m(8)+m(9)m(9)m(9)=(m(0)+m(1)++m(8)+m(9))3=(1+1+2++8+9)3=463.So,[p(1)+p(2)++p(999)]+p(1000)=[4631]+1=97336.
  3. In ABC, D, E are on BC and CA respectively, and BD:DC=3:2, AE:EC=3:4. AD and BE intersect at M. Given that the area of ABC is 1, find the area of BMD.
    (solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Define N on BC such that EN is parallel to AD. The complete figure is shown below.


    By Triangle Similarity, DNNC=AEEC=34.Because of this,[ABE]=37[ABC]=37.Consequently,[BEC]=47.
    Note that BDDN=72,DNNC=34.so BD:DN:NC=21:6:8. This means BNNC=278,BDBN=79.Moreover,BNBC=2735and[BEN]=2735[BEC]=273547.Finally, by Triangle Similarity,[BMD][BEN]=(79)2[BMD]=7292(273547)=415.

Tuesday, November 25, 2014

Change of schedule for PEM 2014

Please take note of the following changes in the schedule for PEM:

November 29 (unchanged):

CLASSVENUE
TeachersSEC-A304
Provincial (1st-2nd)CTC102
Provincial (3rd-4th)F-AVR

December 6 (originally scheduled on November 29):

CLASSVENUE
Grade 7SEC-A203
Grade 8SEC-A205
Grade 9Escaler Hall
Grade 10 (A)SEC-A303
Grade 10 (B)SEC-A304

December 13 (originally scheduled on December 6):

EVENTVENUE
PEM OlympiadEscaler Hall
PEM Closing SessionLeong Hall Auditorium

Please be guided accordingly.

Saturday, November 22, 2014

Origami Math (Tuklas Vol. 16, No. 4 - November 22, 2014)

ORIGAMI MATH

Origami and Paper Folding
Origami is the traditional Japanese art of paper folding. It involves transforming a piece of paper using only folds and creases. There are no cutting and gluing in strict origami. It is amazing how different geometric shapes and three-dimensional figures can be made just by folding papers. One can discover lines, polygons and lines inside an origami model.

But did you know that, aside from geometry, algebra is also present in paper folding? Without the goal of forming a three-dimensional model, simple paper folding can help one solve various equations.

Let us look at how paper folding can be used to form various geometric concepts. We will also construct two origami models and discover the beautiful pattern inside our models. Finally, we show how simple paper folding is used to solve a cubic equation (a polynomial of degree 3).

Basic Geometric Shapes Using Origami
Geometric concepts are clearly present in origami and simple paper folding. Everyone knows how to fold a piece of paper in half or even in quarters just by simply folding a folded paper in half. For that matter, one can fold in any powers of 2: 18, 116, etc. But do you know how to fold a paper in exactly 3 parts? Moreover, you may easily divide an angle into 2 equal parts by simple paper folding, but can you trisect an angle (divide the angle into 3 equal parts)?

(Folding a paper in thirds using a square)
1.
2.
3.
4.
5.
6.
7.

(Folding a paper in thirds using a rectangle)
1.
2.
3.
4.
5.
6.

7.

(Trisecting an angle)

1.
2.
3.
4.

More Origami

It is fun to construct different figures by paper folding. We will do simple origami. What's so special about them? When we unfold the figure, we will reveal beautiful patterns (unintentionally?) arising from our paper folding.

(Yacht)
1.
2.
3.
4.
5.
6.
(Reverse Fold)
7.
8.
9.

(Bird)
1.
2.
3.
4.
5.
6.
7.
8.


Solving Real Roots Using Paper Folding
Consider x3+bx2+cx+d=0where b, c, dR. This is a polynomial of degree 3 (also called a cubic polynomial).
To get the real roots using paper folding:
  1. Let P denote (0,1), and Q denote (b+d,c).
  2. Make a single fold that simultaneously places P on a point P on y=1 and places Q on a point Q on x=bd. This can be done in different ways, especially if the cubic polynomial has 3 real roots (in that case, 3 possible folds can be done).
  3. The x-intercept of the fold line is a root of x3+bx2+cx+d=0.

As an example, consider the equation x32x2x+2=0.Thus, b=2, c=1 and d=2.
  1. The points are P(0,1) and Q((2)+2,1)=Q(4,1).
  2. Place P on a point P on y=1 and Q on a point Q on x=(2)2=0.
  3. The possible folds are as follows:



Conclusion
Origami and paper folding are fun to do. There are numerous complicated figures that one can make using this traditional Japanese paper art. But as we have seen, there is more to folding paper than meets the eye. Perfect geometric figures may be formed and discovered when paper are folded accordingly. Moreover, who knew that paper folding can be utilized to solve a cubic equation? These things surely put the fun in math!

ABOUT THE AUTHOR:
Patrick Vincent N. Lubenia is an Instructor at the Ateneo de Manila University. He obtained his B.S in Mathematics and M.S. in Applied Mathematics at the University of the Philippines Diliman in 2008 and 2012, respectively. He is currently finishing his M.S. in Finance in the same university.

OLYMPIAD CORNER
from the International Mathematical Olympiad Shortlist, 2010

Problem: Find the least positive integer n for which there exists a set {s1,s2,,sn} consisting of n distinct positive integers such that (11s1)(11s2)(11sn)=422010.
Solution: 
Suppose that the desired numbers exist for some n. We may assume without loss of generality that s1<s2<<sn.Note that s1 should be an integer greater than 1, otherwise 11s1=0. This implies that 2s1s21sn(n1)therefore sii+11si1i+111si11i+1for each i=1,2,,n.

Moreover, since the denominator of 422010=7567 is divisible by 67, some of the si's should be divisible by 67, and hence snsi6711sn1167=6667.This means that422010=(11s1)(11s2)(11sn1)(11sn)(112)(113)(11n)(6667)=(12)(23)(n1n)(6667)=6667nthereforen(2010)(66)(42)(67)=3307>47and hence n48.

Now we are left to show that there exists a set s1,s2,,s48 that satisfies the equality. Consider the set {2,3,,32,33,36,37,,50,67}which contains exactly 48 numbers. Then (112)(1133)(1136)(1150)(1167)=[(12)(3233)][(3536)(4950)](6667)=(133)(3550)(6667)=7335=422010.The least positive integer n is therefore equal to 48.

PROBLEMS
  1. Show that if 2n1 is prime, then n must be prime.
  2. Given a positive integer n, let p(n) be the product of the nonzero digits of n. Determine the value of p(1)+p(2)++p(999)+p(1000).
  3. In ABC, D, E are on BC and CA respectively, and BD:DC=3:2, AE:EC=3:4. AD and BE intersect at M. Given that the area of ABC is 1, find the area of BMD.
We welcome readers to submit solutions to the problems posed below for publication consideration. Solutions may ONLY be submitted online via vantonio@ateneo.edu. Solutions must be preceded by the solver's name, school affiliation and year level. The deadline for submission is 12:30 PM November 29, 2014. 

SOLUTIONS
(for November 8, 2014)
  1. Let a, b, c be positive integers with the properties: a3 is divisible by b, b3 is divisible by c, c3 is divisible by a. Show that (a+b+c)13 is divisible by abc. (Taken from Polish and Austrian Mathematical Olympiads 1981-1995 by M. Kuczma and E. Windischbacher)
    (solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Note that each of the terms in the expansion of (a+b+c)13 has the form albmcn, where l, m, and n are nonnegative and l+m+n=13. Our goal is to show that each of the terms is divisible by abc.

    If l,m,n1, then this is trivial. Let us consider the case when one of l,m,n=0.

    Suppose l=0. This means we have bmcn, where m+n=13.
    CASE 1:
    If m=13, n=0, then we have b13=bb3b9=b(cp)(c3p3) for some integer p, since b3 is divisible by c. Moreover, b13=b(cp)(c3p3)=b(cp)(aqp3)for some q, since c3 is divisible by a. This means that the product a0b13c0 is divisible by abc.

    CASE 2:
    If 10m12, 1n3, then we have bmcn=bcb9(bm10cn1), which is divisible by by abc (since, based from the previous case, b9 is divisible by a).

    CASE 3:
    If 1m9, 4n12, then we have bmcn=bcc3(bm1cn4), which is divisible by abc (since c3 is divisible by a).

    \textit{CASE 4:}
    If m=0, n=13, then we have c13=cc3c9=c(ar)(a3r3), for some integer r. Since a3 is divisible by b, we can see that c13 is divisible by abc.
  2. In all cases, we see that bmcn is divisible by abc. We can proceed with a similar proof for when m=0, and for n=0. This means that (a+b+c)13 is divisible by abc.

  3. An exam with k questions is presented to n students. A student fails the exam if he gets less than half the answers right. We say that a question is easy if more than half of the students get it right. Decide if it is possible that
    • All students fail even though all the questions were easy.
    • No student fails even though no question was easy.
    (Estonia 2007)
    (solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    • For the first case, if all questions were easy, then more than n2 students are able to to get each of the k questions right. So T>kn2 (note that this is a strict inequality).

      On the other hand, if each of the n students failed, then all of them got less then k2 questions right. This means that T<nk2 (again, a strict inequality). Combining the two conditions makes the first case impossible.
    • For the second case, if no question was easy, then at most n2 students got each of the k questions right. So Tkn2.

      Now, if no student fails, then each of the n students got at least k2 questions right. Then Tnk2. Combining the two conditions, we have nk2Tkn2, which means T=nk2, where n and k are both even.

      Specifically, if a labeling will be implemented on the students (1,2,,n) and questions (1,2,,k), then student m should answer l questions, where m and l have the same parity.
  4. 2014 points are given on a circle. They are split into 1007 pairs and each pair is joined by a segment. Find the probability that no two of these segments intersect. (Taken from Problem-Solving Methods in Combinatorics by Pablo Soberon)
    (solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    First, we count the number of ways to split the 2n points without considering the intersections. We choose n points first, then choose which of the remaining n points will be paired up with the initial group. Note that in choosing the pairs, the order matters. So this can be done in (2nn)n! ways. However, we still need to consider that in each segment, the order in which the vertices were chosen does not matter. So, upon incorporating the double count for each segment, we have (2nn)n!2nways of pairing the 2n points.

    Now, we introduce a sequence of numbers an, where an is defined to be the number of ways to connect 2n points on a circle where the connecting segments will not intersect. For the purpose of completeness, we define a0=1. In addition, we label the points on the circle with 1,2,,2n.

    We connect 1 with any vertex k. The segment will divide the circle into two sections. Note that the remaining 2n2 vertices should still be paired up, and if k is odd, then there will be one section (the one between 1 and k) with an odd number of points, which means that one point in that section will have to be connected to one point on the other section, and the segment formed will intersect with the initial segment. This means that k must be even.

    So 1 must be connected to 2p. Then the remaining 2p2 points between 1 and 2p must be paired up between themselves (same is true for the other section, which contains the points 2p+1 to 2n, a total of 2n2p points). By our definition, there are ap1anp ways that this can be done. So, upon doing this for all p, we get a0=1an=an1a0+an2a1++a0an1,which follows the definition of Catalan numbers. The closed form of numbers in this sequence is given by an=(2nn)n+1.Thus, the probability of pairing the 2n points and forming non-intersecting segments is given by (2nn)n+1(2nn)n!2n=2n(n+1)!.In our case, we just have n=1007, so the probability is 210071008!.

Tuesday, November 11, 2014

Counting Beyond Your Fingers (Tuklas Vol. 16, No. 3 - November 8, 2014)

COUNTING BEYOND YOUR FINGERS

This article focuses on countable sets. For a discussion of uncountable sets (such as the set of real numbers R) and a different perspective on countable sets, read Counting Infinity.

Cardinality
We know sets as collections of elements of a particular nature. These elements could be tangible - apples, cars, socks, or whatever else you have seen or touched or both - and need only be recalled, not imagined (though one can put forth a case for, say, unicorns). They could also be intangible or conceptual---numbers, colors, and other abstractions - and require more from thought than anything else.

Regardless of the nature of what it contains, a set can be measured by its cardinality, which is simply the number of elements in it. The set \(A = \{\text{red}, \text{orange}, \text{yellow}\}\), for example, has a cardinality of 3, while the set B={2,4,7,12} has a cardinality of 4. There are multiple notations for cardinality, but for this article, we will use the pound sign (#) - that is, #A=3 and #B=4.

A and B above are finite sets because, as the name implies, they each have a finite number of elements. Owing to how the natural numbers are ordered (1<2<3<), it is easy to compare the cardinalities of finite sets, but what happens when we focus on infinite sets (sets that have infinitely many elements)?

The Set of Perfect Squares
Consider the set N={1,2,3,...} of natural numbers and the set S={1,4,9,...} of perfect squares. Working with the fact that S is a subset of N, it seems natural - pun sort of intended - to say that #N>#S. N contains the elements of S and more; is that not enough for us to say something about the relationship between their cardinalities?

Consider Table 1 below. As you can see, we can match the elements of N with those of S (so we have 12=1,22=4,32=9, and so on) and establish what we call a one-to-one correspondence between the two sets. Two sets are in one-to-one correspondence if each element of one can be matched with exactly one element of the other (in other words, partnerships are formed, and nothing gets left behind). By virtue of this matching, we are able to show that #N=#S.


N
1
2
3

S
1
4
9

This result is counter-intuitive and the method used above may leave you feeling cheated, but you have to concede that the argument has some sort of elegant brilliance going for it. Arguments made in relation to the infinite often do.

The Set of Integers Z
We have shown that N and one of its subsets share the same cardinality. It only seems fair to consider a set N is a subset of. Let us look at the set of integers Z.

The trouble with Z is that unlike N, it does not have a smallest element. We can, however, reorder the elements of Z in a way that allows us to establish a one-to-one correspondence between N and Z (see Table 2 below) and ultimately show that #N=#Z.
N
1
2
3
4
5

Z
0
1
1
2
2

The Set of Rational Numbers Q
Finally, we consider the set of rational numbers Q. This set contains all fractions, the numerators and denominators of which are integers. Since every integer can be expressed as a fraction with a denominator of 1, N and Z are subsets of Q. Could it be that the cardinality of this much larger - at least according to our intuition - set equals that of N?

As a matter of fact, it does.

Note that we can order the rational numbers in the following manner: 11,12,21,13,22,31,14,23,32,41,The rational numbers in each box are ordered from least to greatest. The first box contains all rational numbers, the numerator and denominator of which (disregarding signs) add up to 2. The second contains all rational numbers, the numerator and denominator of each of which add up to 3. The process goes on indefinitely and enables us to list all rational numbers.

The only problem with this list is that some of the rational numbers in it are not in lowest terms and are mere repetitions of other rational numbers. This prompts us to create another list that does not include such numbers (note that 22 and 22 have been removed):11,11,21,12,12,21,31,13,13,31,The list above enables us to establish a one-to-one correspondence between N and Q (see Table 3 below). Thus, #N=#Q.


N
1
2
3
4
5
6

Z
11
12
21
13
22
31

We have shown that #N=#Z=#Q even if Q contains Z, which contains N. Working with the infinite is bracing, is it not?

Countable Sets
Countable sets are those that have the cardinality of N or some subset of it. (Recall that natural numbers are sometimes called counting numbers.) All finite sets are, therefore, countable. Because we have established that S, Z, and Q have the cardinality of N, they are also countable. Because they are infinite, they can be further classified as countably infinite sets. While the elements of S, Z, and Q cannot be counted in the strictest sense---conventional counting requires that the process terminate at some point---they can be enumerated or listed one by one in an ordered manner, consistent with rules such as those we used above (recall how we reordered Z and Q).

The phrase "countably infinite" may well be an oxymoron, and something of its kind may not fit well with most people's view that mathematics is the most rigorous field there is, but it is often forgotten that so much of the development of mathematics has arisen in response to contradictions that have left people no choice but to embrace them.

ABOUT THE AUTHOR:
Juan Carlo Mallari is an Instructor at the Ateneo de Manila University. He obtained his Master of Applied Mathematics major in Mathematical Finance degree at the Ateneo de Manila University in 2014.

REFERENCES:
Byers, William. How Mathematicians Think. New Jersey: Princeton University Press, 2007. Print.
Martin, Jesus Lemuel, Jr. "Counting Infinity." 19 January 2013. Tuklás Matemátika. Web. 28 October 2014.

OLYMPIAD CORNER
from the Vietnamese Mathematical Olympiad, 1979

Problem: Find all integer solutions of the systemxx+y=y12(1)yy+x=x3(2)

Solution: 
  1. If y=0, then from (1), we have xx=0. This equation has no solution.
  2. If y=1, then from (2), we have x3=1, which gives x=1. The integer solution to the system is therefore (1,1).
  3. If y=1, then from (1), we have xx1=1, which gives x=±1. We note that (1,1) is a solution. On the other hand, (1,1) does not satisfy (2), hence it is not a solution.
  4. Suppose y0,±1. Then from (2), we have x=yx+y3. Substituting this into (1) yields y(x+y)23=y12(x+y)23=12(x+y)2=36x+y=±6
    1. If x+y=6, then from (2), we have y6=x3, or x=y2. This implies that y2+y6=0, and therefore y=2,y=3. The corresponding solutions to the system are (4,2) and (9,3).
    2. If x+y=6, then from (2), we have y6=(6y)3y2=16yy3+6y2+1=0By the Rational Root Theorem, the only possible integer solutions to the above equation are 1 and 1. However, both numbers do not satisfy the above equation.

PROBLEMS
  1. Let a, b, c be positive integers with the properties: a3 is divisible by b, b3 is divisible by c, c3 is divisible by a. Show that (a+b+c)13 is divisible by abc.
  2. An exam with k questions is presented to n students. A student fails the exam if he gets less than half the answers right. We say that a question is easy if more than half of the students get it right. Decide if it is possible that
    • All students fail even though all the questions were easy.
    • No student fails even though no question was easy.
  3. 2014 points are given on a circle. They are split into 1007 pairs and each pair is joined by a segment. Find the probability that no two of these segments intersect.
We welcome readers to submit solutions to the problems posed below for publication consideration. Solutions may ONLY be submitted online via vantonio@ateneo.edu. Solutions must be preceded by the solver's name, school affiliation and year level. The deadline for submission is 12:30 PM November 22, 2014. 

SOLUTIONS
(for October 18 and 25, 2014)
  1. There are given 2014 sets, each containing 40 elements. Every two sets have exactly one element in common. Prove that all 2014 sets have exactly one element in common. (Taken from 144 Problems of the Austrian-Polish Mathematics Competition 1978-1993 by M. Kuczma)
    (Solved by Jayson Dwight S. Catindig [Ateneo de Manila HS] and Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Let the sets be given by A1,A2,,A2014.

    For each xA1, assign the indices k{1,,2014} all those such that xAk. Since A1 has 40 elements and each two of the Ak's have a common element, we can define a partitioning of A1,,A2014 into k groups. They are grouped if they have an xA1 in common. Note that here, some of the groups may be empty.

    By the pigeonhole principle, at least one group will have 201440=51 of those indices. We relabel them such that A2,A3,,A52 belong to the same group. This means that there exists x0 such that x0A1A2A52.

    Now, suppose there exists i such that x0Ai. Note that each of the Ak's, k=1,2,,52, has an element common with Ai. All those common elements must be different from one another since x0 is the unique element of AnAm,(n,m=1,2,,52).

    This means that Ai has at least 52 elements, which is a contradiction.

  2. Let a,b,c be positive real numbers such that abc=1. Prove the inequality aa+b4+c4+bb+c4+a4+cc+a4+b41. (Taken from Inequalities by Z. Cvetkovski)
    (Partial credit for Jayson Dwight S. Catindig [Ateneo de Manila HS] and Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    By the Cauchy-Schwarz Inequality, we have (a2+b2+c2)2[(a)2+(b2)2+(c2)2][(a3)2+1+1]=(a+b4+c4)(a3+2).Since a, b, and c are positive, 1(a+b4+c4)(a3+2)1(a2+b2+c2)2aa+b4+c4a(a3+2)(a2+b2+c2)2Similarly,bb+c4+a4b(b3+2)(a2+b2+c2)2,cc+a4+b4c(c3+2)(a2+b2+c2)2This means that aa+b4+c4+bb+c4+a4+cc+a4+b4a4+b4+c4+2(a+b+c)(a2+b2+c2)2.Now, since abc=1,a+b+c=abc(a+b+c)a+b+ca2b2+b2c2+c2a2a4+b4+c4+2(a+b+c)a4+b4+c4+2(a2b2+b2c2+c2a2)=(a2+b2+c2)2.Finally,aa+b4+c4+bb+c4+a4+cc+a4+b41.
  3. Circles C1 and C2 with centers O1 and O2 respectively intersect each other at A and B. Ray O1B intersects C2 at F and ray O2B intersects C1 at E. The line parallel to EF and passing through B intersects C1 and C2 at M and N, respectively. Prove that MN=AE+AF. (Taken from Mathematical Contests, 1995-1996 by Andreescu, Kedlaya and Zeitz)
    (Solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    The figure for the problem is given below.

    Consider AEF. Note that EAB=12EO1B=90O1BE=90FBO2=BAF.Since EAF=EAB+BAF, then AB is the angle bisector of EAF.

    Note also that EBA+FBA=EBA+πO1BA=180+EBO1=270EAB=270BAF.This means thatEBF=360EBAFBA=36012(270EAB+270BAF)=180+EAF2.This means that B is on the angle bisector of EAF and on some arc along S1, which have a unique intersection. The incenter of EAF also satisfies these conditions, and is unique. So the incenter must be B.

    So AEB=BEF, and by parallel lines, BEF=EBM. This means that EBAM is an isosceles trapezoid, and EA=MB. In addition, FA=NB and MN=MB+NB=AE+AF.
  4. Is there a triangle where the three altitudes have lengths 1, 5, and 1+5? (Kiev 1969)
    (Solved by Farrell Eldrian Wu [MGC New Life Academy])

    SOLUTION: 
    Suppose such a triangle exists. Call the sides perpendicular to the altitudes of length 1, 5 and 1+5 be a, b, and c, respectively. If the area of the triangle is given by A, then we haveA=12aA=12b5A=12c(1+5).From this, the expressions for a, b, and c are as follows:a=2A,b=2A5,c=2A1+5.Note thatb+c=2A(15+11+5)<2A(12+11+2)=53A<2A=a,which contradicts the Triangle Inequality. Hence, no triangle exists.
  5. Let 0<a<b<c<d be odd integers such that ad=bc and a+d=2k, b+c=2m, for some integers k and m. Determine the value of a. (Taken from The Math Problems Notebook by Valentin Boju and Louis Funar)
    (Solved by Farrell Eldrian Wu [MGC New Life Academy]; partial credit for Jayson Dwight S. Catindig [Ateneo de Manila HS])

    SOLUTION: 
    Let ab=cd=xy, where gcd. Since a, b, c, and d are odd, then x and y are odd. Combining this with the given two conditions, a=\frac{x2^{m}\left(y-2^{k-m}x\right)}{y^{2}-x^{2}}. Note that since a is odd, y^{2}-x^{2}=\left(y-x\right)\left(y+x\right)=2^{m}n, for some integer s. Since x and y are odd, we come up with two expressions for x and y: \begin{cases} y=2^{m-2}n_{1}+n_{2}\\ x=2^{m-2}n_{1}-n_{2} \end{cases} \begin{cases} y=n_{1}+2^{m-2}n_{2}\\ x=n_{1}-2^{m-2}n_{2} \end{cases} with n_{1},n_{2}\in\mathbb{Z}. Note that, upon applying these equations to the above expression of a, we see that n_{1} must divide 2^{k-m}+1 and n_{2} must divide 2^{k-m}-1.

    Moreover, we can see that if \left(a-b\right)\left(a-c\right)>0, then \begin{align*} a+\frac{bc}{a} & > b+c\\ a+d & > b+c, \end{align*} which means that k>m.

    This means that if a+\dfrac{bc}{a}\leq1+bc, then k<2m-2.

    Going back to the first of our two expressions for x and y, we have n_{1}>2^{m-2}n_{2}. Since n_{1} divides 2^{k-m}+1, this implies that n_{2}=1 and n_{1}=2^{k-m}+1.

    For the second case, we have y\leq b < 2^{m-1}, which means n_{1}<2, so n_{1}=1.

    Now, since 3y>2^{m-1}, then x=a, and y=b, which means n_{2}=2^{m-2}-1, and a=1.
  6. Show that the interval \left[0,1\right] cannot be partitioned into two disjoint sets A and B such that B=A+a for some real number a. (Austrian-Polish Mathematics Competition, 1982)
    (Solved by Danielle See [Jubilee Christian Academy] and Farrell Eldrian Wu [MGC New Life Academy]; partial credit for Jayson Dwight S. Catindig [Ateneo de Manila HS])

    SOLUTION: 
    Suppose such a partitioning exists. This means that A\cap B=\emptyset, and A\cup B=\left[0,1\right]. Without loss of generality, let a>0.

    This means that \left(1-a,1\right]\subset B. Moreover, \left(1-2a,1-a\right]\subset A.

    It can be shown, by induction, that \left(1-\left(2n+1\right)a,1-2na\right]\subset B and \left(1-\left(2n+2\right)a,1-\left(2n+1\right)a\right]\subset A.

    However, there exists m such that \left(1-ma,1-\left(m-1\right)a\right]\nsubseteq\left[0,1\right]. Such a set still is contained entirely in A or B, which is a contradiction. Hence, no partitioning exists.