Derivada Tabla Tabla Derivada Aplana Resuelve Aplana Junta

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

In[168]:= f[x_, y_] := x * y2 + 2 y;

op[f_, j_][x_] := D[Derivative[1][y][x] - f[x, y[x]], {x, j}];


⋯ derivada
sistema = Table[op[f, j][x] ⩵ 0, {j, 0, 9}];
tabla
variables = Table[Derivative[j][y][x], {j, 1, 10}];
tabla derivada
solucion = Flatten[Solve[sistema, variables]] // Flatten;
aplana resuelve aplana
derivadas = Join[{y[0] → 1}, solucion //. {y[x] → 1, x → 0}]
junta

Out[173]= y[0] → 1, y [0] → 2, y′′ [0] → 5, y(3) [0] → 18, y(4) [0] → 90, y(5) [0] → 564, y(6) [0] → 4218,

y(7) [0] → 36 804, y(8) [0] → 367 272, y(9) [0] → 4 122 960, y(10) [0] → 51 421 944

Derivative[j][y][0]
In[174]:= Sum xj , {j, 0, 10} //. derivadas
suma j!

2 4 5 6 7 8 9 10
Out[174]= 1 + 2 x + 5 x + 3 x3 + 15 x + 47 x + 703 x + 3067 x + 5101 x + 17 179 x + 306 083 x
2 4 10 120 420 560 1512 21 600

In[175]:= Clear[x, y]; DSolvey '[x] ⩵ x * y[x]2 + 2 y[x] && y[0] ⩵ 1, y[x], x
borra resolvedor diferencial

Out[175]= y[x] → - 4 ⅇ2 x 
- 3 - ⅇ2 x + 2 ⅇ2 x x

4 ⅇ2 x
In[176]:= Series- , {x, 0, 10}
serie - 3 - ⅇ2 x + 2 ⅇ2 x x
2

5 x2 15 x4 47 x5 703 x6 3067 x7 5101 x8 17 179 x9 306 083 x10


In[181]:= 1+2x+ + 3 x3 + + + + + + + + O[x]11
2 4 10 120 420 560 1512 21 600
4 ⅇ2 x
Plot- ,
- 3 -gráfica
ⅇ +2ⅇ 2x 2x x
representación

5 x2 15 x4 47 x5 703 x6 3067 x7 5101 x8 17 179 x9 306 083 x10


1+2x+ + 3 x3 + + + + + + + ,
2 4 10 120 420 560 1512 21 600
x, - 1  2, 1  2, PlotStyle → {Orange, {Dashed, Thick, Yellow}}
estilo de repre⋯ naranja rayado grueso amarillo

2 4 5 6 7 8 9 10
Out[181]= 1 + 2 x + 5 x + 3 x3 + 15 x + 47 x + 703 x + 3067 x + 5101 x + 17 179 x + 306 083 x + O[x]11
2 4 10 120 420 560 1512 21 600

3.5

3.0

2.5

Out[182]= 2.0

1.5

1.0

-0.4 -0.2 0.2 0.4

You might also like