Mathematical Food for Thought

 
 
google
yahoo
bing
 
  • About

    Serves a Daily Special and an All-You-Can-Eat Course in Problem Solving. Courtesy of me, Jeffrey Wang.
 
Break Time. August 25th, 2006

I’ll be gone for the next week on a cruise, so… no math!

Add Some Numbahs. Topic: Number Theory. Level: AIME/Olympiad. August 24th, 2006

Problem: (2003 Putnam – A1) Let  n be a fixed positive integer. How many ways are there to write  n as a sum of positive integers  n = a_1+a_2+\cdots+a_k with  k an arbitrary positive integer and  a_1 \le a_2 \le \cdots \le a_k \le a_1+1 ?

Solution: So that strange inequality condition basically says that all the numbers are within one of each other. Easy enough. Let’s take this approach; for any  n , run through each  k from  1 to  n (if  k > n there are clearly no solutions).

Let  \displaystyle d = \left\lfloor \frac{n}{k} \right\rfloor . Then  kd \le n < k(d+1) . Essentially, this says that all of the  a_i 's are close to  d . We claim that in fact  a_i = d or  a_i = d+1 for all  i and a fixed  k .

Suppose  a_i < d for some  i . Then  \sum a_i < kd < n since the maximum  a_i is within  1 of the minimum, impossible. Similarly, suppose  a_i > d+1 for some  i . Then  \sum a_i > k(d+1) > n since the minimum is within  1 of the maximum, again impossible. This proves the claim.

Now we claim that there is exactly one solution for any fixed  k . Suppose  a_1, a_2, \ldots, a_j are all  d and  a_{j+1}, a_{j+2}, \ldots, a_k are all  d+1 . Then the sum is

 jd+(k-j)(d+1) .

At  j = k , all the  a_i ’s are  d and the sum is  kd \le n . But notice that decreasing  j by  1 increases the LHS by  1 . So if we keep incrementing  j , we will eventually get to  n (if we go all the way to  j = 0 we reach  k(d+1) > n , so we must’ve passed  n somewhere in there). It’s easy to see that we can’t get  n twice because the LHS only increases. Hence for each  k there is exactly one solution for  a_1, a_2, \ldots, a_k .

Since  k = 1, 2, \ldots, n are all possible values for  k , there are exactly  n ways to write  n as a sum of the desired form. QED.

——————–

Comment: Another Putnam problem; they aren’t too bad, right? Considering a large percentage of students who take it get zero points out of  120 , anyway. The solution above would probably have to be rigorized immensely before actually being called a proof, but that would be no fun to read and stuff.

——————–

Practice Problem: (2003 Putnam – B1) Do there exists polynomials  a(x), b(x), c(y), d(y) such that

 1+xy+x^2y^2 = a(x)c(y)+b(x)d(y)

holds identically?

Function + Equation = ?? Topic: Algebra. Level: AIME/Olympiad. August 22nd, 2006

Problem: Find all functions  f(x) that satisfy  f(x)f(y)-f(xy) = x+y for all reals  x,y .

Solution: Let’s start by plugging in something easy, like  x = y = 1 . We get

 [f(1)]^2-f(1) = 2

 [f(1)-2][f(1)+1] = 0

so  f(1) = 2, -1 . Hmm, make it a little more complicated then and try just  y = 1 . Then

 f(x)f(1)-f(x) = x+1

 f(x)[f(1)-1] = x+1 \Rightarrow f(x) = \frac{x+1}{f(1)-1} .

But wait, we already know  f(1) = 2, -1 so we can just plug this in. Thus we have

 f(x) = x+1 or  f(x) = -\frac{x+1}{2} .

We check by plugging each in:

 f(x)f(y)-f(xy) = (x+1)(y+1)-(xy+1) = x+y (this works)

 f(x)f(y)-f(xy) = \left(-\frac{x+1}{2}\right) \left(-\frac{y+1}{2}\right) &#8211; \left(-\frac{xy+1}{2} \right) \neq x+y (this doesn’t).

That means only  f(x) = x+1 works. QED.

——————–

Comment: Functional equations are pretty strange as far as problems go. Basically you go around plugging random things in until you find something useful. Then you work it all out and you usually get an interesting result.

——————–

Practice Problem: (360 Mathematical Contests – 1.1.49) Find all polynomials  P(x) with integral coefficients such that

 P(P^{\prime}(x)) = P^{\prime}(P(x))

for all real numbers  x .

Ex-ex-exponents! Topic: Inequalities. Level: AIME. August 20th, 2006

Problem: Let  a, b, c, p, q be positive reals. Prove that

 \left(a^ab^bc^c\right)^{p+q} \ge a^{pb+qc}b^{pc+qa}c^{pa+qb} .

Solution: How do you get rid of exponents? Well, take the log of course! Logging both sides and using log rules (multiplication to addition and bringing the power down), the inequality becomes

 (p+q)(a\log{a}+b\log{b}+c\log{c}) \ge (pb+qc)\log{a}+(pc+qa)\log{b}+(pa+qb)\log{c} .

We will prove that

 p(a\log{a}+b\log{b}+c\log{c}) \ge p(b\log{a}+c\log{b}+a\log{c})

and

 q(a\log{a}+b\log{b}+c\log{c}) \ge q(c\log{a}+a\log{b}+b\log{c}) .

If we add those together, we get the inequality above. But we note that  (a, b, c) and  (\log{a}, \log{b}, \log{c}) are similarly sorted, we can apply the Rearrangement Inequality (see here), which tells us that

 a\log{a}+b\log{b}+c\log{c} \ge b\log{a}+c\log{b}+a\log{c}

and

 a\log{a}+b\log{b}+c\log{c} \ge c\log{a}+a\log{b}+b\log{c} ,

exactly what we needed. Thus the inequality is proven. QED.

——————–

Comment: Classic way of proving inequalities with exponents; many times, after you take the log, you can apply Jensen’s (log is concave) to get some interesting results as well.

——————–

Practice Problem: Prove AM-GM. For positive reals  a_1, a_2, \ldots, a_n ,

 \frac{a_1+a_2+\cdots+a_n}{n} \ge \sqrt[n]{a_1a_2\cdots a_n} .

Effuvay. Topic: Algebra/NT/Polynomials. Level: AIME. August 18th, 2006

Problem: Let  f(x) be a polynomial with integer coefficients. Show that  f(a) divides  f(a+f(a)) .

Solution: Note that  a|b means  a divides  b . Let’s prove a more general result, that  (x-y)|(f(x)-f(y)) . Write  \displaystyle f(x) = \sum c_nx^n . We want to show that

 \displaystyle (x-y)|\left(\sum c_n(x^n-y^n) \right) .

But since  x^n-y^n = (x-y)(x^{n-1}+x^{n-2}y+\cdots+xy^{n-2}+y^{n-1}) , it’s clear that  x-y divides each  c_n(x^n-y^n) and thus their sum. Applying this result to  x = a+f(a) and  y = a , we get

 \displaystyle f(a)|(f(a+f(a))-f(a)) ,

which implies that

 \displaystyle f(a)|f(a+f(a)) ,

as desired. QED.

——————–

Comment: The general result is a very useful fact about polynomials with integer coefficients that shows up often; problems can be written based on many variations of it. Writing out the terms of the polynomial is also a good strategy whenever you’re stuck.

——————–

Practice Problem: Let  f(x) be a polynomial with integer coefficients. If  a, b, c, d are distinct integers such that  f(a) = f(b) = f(c) = f(d) =5 , show that there cannot exist an integer  e such that  f(e) = 8 .

Google

 

 
 
free web counters
Etronics