The Unknown Polynome

Algebra Level 4

Find f ( 310 ) f(310) , if f ( x + 3 ) = f ( x ) x 2 + x 5 f(x+3) = f(x) - x^2 + x - 5 for all real numbers x x , and f ( 1 ) = 3. f(1) = 3.


The answer is -3246866.

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.

4 solutions

Mark Hennings
May 25, 2019

The condition f ( x + 3 ) = f ( x ) x 2 + x 5 f(x+3) = f(x) - x^2 + x - 5 gives a simple set of simultaneous equations for the coefficients of f ( x ) f(x) . Since the degree of f ( x + 3 ) f ( x ) f(x+3) - f(x) must be one less than the degree of f ( x ) f(x) , it is clear that f ( x ) f(x) must be cubic and solving the simultaneous equations tells us that f ( x ) = 1 9 x 3 + 2 3 x 2 8 3 x + d f(x) \; = \; -\tfrac19x^3 + \tfrac23x^2 - \tfrac83x + d for some constant d d . Since f ( 1 ) = 3 f(1) = 3 we deduce that d = 46 9 d = \tfrac{46}{9} . Hence f ( 310 ) = 3246866 f(310) = \boxed{-3246866} .

Joshua Lowrance
May 24, 2019

f ( 1 ) = 3 f(1)=3 f ( 1 + 3 ) = f ( 4 ) = f ( 1 ) 1 2 + 1 5 f(1+3)=f(4)=f(1)-1^2+1-5 f ( 4 + 3 ) = f ( 7 ) = f ( 4 ) 4 2 + 4 5 = f ( 1 ) 1 2 + 1 5 4 2 + 4 5 f(4+3)=f(7)=f(4)-4^2+4-5=f(1)-1^2+1-5-4^2+4-5 f ( 7 + 3 ) = f ( 10 ) = f ( 7 ) 7 2 + 7 5 = f ( 1 ) 1 2 + 1 5 4 2 + 4 5 7 2 + 7 5 f(7+3)=f(10)=f(7)-7^2+7-5=f(1)-1^2+1-5-4^2+4-5-7^2+7-5 \cdots f ( 307 + 3 ) = f ( 310 ) = f ( 307 ) 30 7 2 + 307 5 = f ( 1 ) 1 2 + 1 5 4 2 + 4 5 7 2 + 7 5 30 4 2 + 304 5 30 7 2 + 307 5 f(307+3)=f(310)=f(307)-307^2+307-5=f(1)-1^2+1-5-4^2+4-5-7^2+7-5 \cdots -304^2+304-5-307^2+307-5 f ( 1 ) + n = 0 102 ( ( 3 n + 1 ) 2 + ( 3 n + 1 ) 5 ) = 3246866 f(1)+\sum_{n=0}^{102} (-(3n+1)^2+(3n+1)-5)=-3246866

William Kennedy
May 29, 2019

I'm lazy. So, I got a computer to calculate it for me...

var y = 3;
var x = 1;

for (var i = 1; i <= 310; i += 3) {
  console.log(x, y)
  y = y - (x*x) + x - 5;
  x += 3;
}
Santhosh Talluri
May 27, 2021

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...