Wolfram Language

Cálculo simbólico y numérico

Cálculo de cocientes de diferencia

Wolfram Language puede calcular no sólo cocientes de diferencia univariados conocidos, sino también cocientes multivariables y de orden superior.

In[1]:=
Click for copyable input
DifferenceQuotient[f[x], {x, h}]
Out[1]=

El cociente de diferencia de segundo orden es el cociente de diferencia del cociente de primer orden.

In[2]:=
Click for copyable input
DifferenceQuotient[f[x], {x, 2, h}]
Out[2]=
In[3]:=
Click for copyable input
DifferenceQuotient[f[x], {x, h}]; DifferenceQuotient[f[x], {x, 2, h}]; % == DifferenceQuotient[%%, {x, h}]
Out[3]=

Calcule un cociente de diferencia multivariable.

In[4]:=
Click for copyable input
DifferenceQuotient[(x + y + 1)/(((x^2 + 3) (y + 5))), {x, h}, {y, k}]
Out[4]=

Cree una tabla de cocientes de diferencia en aumento de un polinomio, el cual produce polinomios de orden decreciente.

In[5]:=
Click for copyable input
Grid[Table[ DifferenceQuotient[x^3 y^2 + 5 x y + 11, {x, i, r}, {y, j, s}], {i, 4}, {j, 3}], Spacings -> {2, 1}]
Out[5]=

Ejemplos relacionados

de en fr ja ko pt-br ru zh