Wolfram言語

記号的微積分と数値的微積分

差分商のギャラリーを生成する

いくつかの関数の差分商および関連した導関数を計算する.s.

In[1]:=
Click for copyable input
fList = {1, x, x^2, x^3, x^4, 1/x, Sin[x], Cos[x], Sinh[x], Cosh[x], a^(x)}; dqList = DifferenceQuotient[fList, {x, h}]; derList = Limit[dqList, h -> 0];

フォーマットされた表に結果を表示する.

完全なWolfram言語入力を表示する
In[2]:=
Click for copyable input
Grid[Map[Style[#, ScriptLevel -> 0] &, Prepend[Transpose[{fList, dqList, derList}], Style[#, FontWeight -> Bold, FontSize -> Larger] & /@ {f[x], ( f[x + h] - f[x])/h, f'[x]}], {2}], Dividers -> All, Spacings -> {4, 2}, Background -> {None, {{None, LightBlue}}, {1, #} -> Hue[.6, .4, 1] & /@ Range[3]}, BaseStyle -> {FontFamily -> Times, FontSize -> 13}] // TraditionalForm
Out[2]//TraditionalForm=

関連する例

de en es fr ko pt-br ru zh