Fractions Fun with Functions

Algebra Level 5

Let f ( x ) f(x) be a polynomial with integer coefficients defined by f : R + R + f:\mathbb{R}^+\to \mathbb{R}^+ satisfying f ( x ) x = f ( f ( x ) ) f ( x ) \dfrac{f(x)}{x}=\sqrt{\dfrac{f(f(x))}{f(x)}}

Find the sum of all possible values of f ( 3 ) f(3) subject to f ( 3 ) < 100 f(3) < 100 .


The answer is 597.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Daniel Liu
Apr 23, 2014

First, since f ( f ( x ) ) f ( x ) \dfrac{f(f(x))}{f(x)} is always positive, we can square both sides to obtain f ( x ) 2 x 2 = f ( f ( x ) ) f ( x ) \dfrac{f(x)^2}{x^2}=\dfrac{f(f(x))}{f(x)} . Clearing denominators gives f ( x ) 3 = x 2 f ( f ( x ) ) ( ) f(x)^3=x^2f(f(x)) \qquad (*)

Let deg ( f ( x ) ) = d \text{deg}(f(x))=d . We can see that 3 d = 2 + d 2 3d=2+d^2 , or d 2 3 d + 2 = 0 d^2-3d+2=0 This factors as ( d 1 ) ( d 2 ) = 0 (d-1)(d-2)=0 , so d = 1 , 2 d=1,2

We can now let f ( x ) = a x 2 + b x + c f(x)=ax^2+bx+c . With this format, we can cover all polynomials with degree 2 \le 2 .

First, notice that the constant term of the L H S LHS of ( ) (*) is c 3 c^3 , while the constant term of the R H S RHS is 0 0 . Thus, we are forced to make c = 0 c=0

Thus f ( x ) = a x 2 + b x f(x)=ax^2+bx . We cannot compare the corresponding coefficients easily anymore, so we are forced to just expand it.

Plugging in f ( x ) = a x 2 + b x f(x)=ax^2+bx , we see that ( a x 2 + b x ) 3 = x 2 ( a ( a x 2 + b x ) 2 + b ( a x 2 + b x ) ) (ax^2+bx)^3=x^2(a(ax^2+bx)^2+b(ax^2+bx)) Expanding gives a 3 x 6 + 3 a 2 b x 5 + 3 a b 2 x 4 + b 3 x 3 = a 3 x 6 + 2 a 2 b x 5 + a b ( b + 1 ) x 4 + b 2 x 3 a^3x^6+3a^2bx^5+3ab^2x^4+b^3x^3=a^3x^6+2a^2bx^5+ab(b+1)x^4+b^2x^3

Looking at the x 3 x^3 term, we see that b 3 = b 2 b^3=b^2 , so b = 0 , 1 b=0,1

If b = 1 b=1 , then looking at the x 5 x^5 term tells us that 3 a 2 = 2 a 2 3a^2=2a^2 , so a = 0 a=0 Thus one solution is f ( x ) = x f(x)=x

If b = 0 b=0 , then everything expect for the x 6 x^6 term disappears, and we are left with a 3 x 6 = a 3 x 6 a^3x^6=a^3x^6 which is always true. Thus, a a can be any integer. Our second family of solutions is thus f ( x ) = a x 2 f(x)=ax^2

Since the polynomial satisfies f : R + R + f:\mathbb{R}^+\to \mathbb{R}^+ , we must have a Z + a\in \mathbb{Z}^+ .

Now all we need to do is find the sum of all possible values of f ( 3 ) f(3) under 100 100 . Clearly, if f ( x ) = x f(x)=x , then f ( 3 ) = 3 f(3)=3 . If f ( x ) = a x 2 f(x)=ax^2 , then f ( 3 ) = 9 a f(3)=9a . Since 9 a < 100 9a < 100 , we must have a 11 a\le 11 . Thus, any polynomial f ( x ) = a x 2 f(x)=ax^2 with a = 1 11 a=1\to 11 works.

We sum up all of the f ( 3 ) f(3) from this family of solutions: 9 ( 1 + 2 + + 10 + 11 ) = 9 11 12 2 = 594 9(1+2+\cdots +10+11)=9\cdot \dfrac{11\cdot 12}{2}=594 . Thus, our answer is 594 + 3 = 597 594+3=\boxed{597} .

Can You Please explain the concept of deg(f(x)) from a beginner's point of view..

Vaibhav Agrawal - 7 years, 1 month ago

Log in to reply

Let us define f ( x ) = a n x n + a n 1 x n 1 + + a 1 x + a 0 f(x)=a_nx^n+a_{n-1}x^{n-1}+\cdots +a_1x+a_0 deg ( f ( x ) ) \text{deg}(f(x)) is the degree of f ( x ) f(x) , which is the largest power of the polynomial. Thus, deg ( f ( x ) ) \text{deg}(f(x)) in this case is n n .

Daniel Liu - 7 years, 1 month ago

Log in to reply

I Agree deg(f(x)) is the greatest power but how did you write 3d=2+d^2..?

Vaibhav Agrawal - 7 years, 1 month ago

Log in to reply

@Vaibhav Agrawal If deg ( f ( x ) ) = d \text{deg}(f(x))=d , then: deg ( f ( x ) 3 ) = 3 d \text{deg}(f(x)^3)=3d deg ( f ( f ( x ) ) ) = d 2 \text{deg}(f(f(x)))=d^2

If deg ( g ( x ) ) = d \text{deg}(g(x))=d , then deg ( x 2 g ( x ) ) = d + 2 \text{deg}(x^2g(x))=d+2 . Thus, deg ( x 2 f ( f ( x ) ) ) = d 2 + 2 \text{deg}(x^2f(f(x)))=d^2+2

We finally arrive at the conclusion 3 d = d 2 + 2 3d=d^2+2 .

Daniel Liu - 7 years, 1 month ago

Log in to reply

@Daniel Liu What If it were a quartic? Or is that not possible

Trevor Arashiro - 6 years, 7 months ago

Excellent approach

suhas anil - 7 years, 1 month ago

A very interesting solution. One thing, though: "Since the polynomial satisfies f: R+ -> R+, we must have a c Z+..." Why is this the case? What if a is pi? What's wrong with pi? You plug in 3 for x and you get 9pi, which is still in R+. So is anything else in R.

Thanks

John M. - 6 years, 11 months ago

Log in to reply

f ( x ) f(x) is a polynomial with integer coefficients.

Leo Bravo - 6 years, 8 months ago

missed it by that much ........ : ( forgot the 3 ..... :'(

Abhinav Raichur - 6 years, 11 months ago

Liked the sum.Did it in the same way.Beautiful presentation,upvoted!!

rajdeep brahma - 4 years, 1 month ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...