Étant donné une fonction polynomiale f (par exemple sous la forme d'une liste p de coefficients réels dans l'ordre croissant ou décroissant), un entier non négatif n et une valeur réelle x renvoient:
f n ( x )
soit la valeur de f ( f ( f (… f ( x )…))) pour n applications de f sur x .
Utilisez une précision et un arrondi raisonnables.
Les solutions qui prennent f comme liste de coefficients seront probablement les plus intéressantes, mais si vous êtes capable de prendre f comme fonction réelle (réduisant ainsi ce défi au trivial "appliquer une fonction n fois"), n'hésitez pas à l'inclure après votre solution non triviale.
Exemples de cas
p = [1,0,0]
ou f = x^2
, n = 0
, x = 3
: f 0 (3) =3
p = [1,0,0]
ou f = x^2
, n = 1
, x = 3
: f 1 (3) =9
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 0
, x = 2.3
: f 0 (2.3) =2.3
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 1
, x = 2.3
: f 1 (2.3) =-8.761
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 2
, x = 2.3
: f 2 (2.3) =23.8258
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 3
, x = 2.3
: f 3 (2.3) =-2.03244
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 4
, x = 2.3
: f 4 (2,3) =1.08768
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 5
, x = 2.3
: f 5 (2,3) =-6.38336
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 6
, x = 2.3
: f 6 (2,3) =14.7565
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 7
, x = 2.3
: f 7 (2.3) =-16.1645
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 8
, x = 2.3
: f 8 (2,3) =59.3077
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 9
, x = 2.3
: f 9 (2.3) =211.333
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 10
, x = 2.3
: f 10 (2,3) =3976.08
p = [0.1,-2.3,-4]
ou f = 0.1x^2-2.3x-4
, n = 11
, x = 2.3
: f 11 (2.3) =1571775
p = [-0.1,2.3,4]
ou f = −0.1x^2+2.3x+4
, n = 0
, x = -1.1
: f 0 (-1.1) =-1.1
p = [-0.1,2.3,4]
ou f = −0.1x^2+2.3x+4
, n = 1
, x = -1.1
: f 1 (-1.1) =1.349
p = [-0.1,2.3,4]
ou f = −0.1x^2+2.3x+4
, n = 2
, x = -1.1
: f 2 (-1.1) =6.92072
p = [-0.1,2.3,4]
ou f = −0.1x^2+2.3x+4
, n = 14
, x = -1.1
: f 14 (-1.1) =15.6131
p = [0.02,0,0,0,-0.05]
ou f = 0.02x^4-0.05
, n = 25
, x = 0.1
: f 25 (0,1) =-0.0499999
p = [0.02,0,-0.01,0,-0.05]
ou f = 0.02x^4-0.01x^2-0.05
, n = 100
, x = 0.1
: f 100 (0,1) =-0.0500249