#author("2023-05-17T10:53:08+09:00","external:moriat","moriat")
#author("2023-05-17T10:57:02+09:00","external:moriat","moriat")
#topicpath

** 双曲関数 [#ic38328b]
- グラフを表示する。
 plot2d( [sinh(x), cosh(x), tanh(x)], [x, -2,2] )
&ref(maxima_hyperbolic_graph.png,,70%);
- テイラー展開
 taylor( exp(x), x, 0, 5 );
 taylor( cos(x), x, 0, 5 );
 taylor( sin(x), x, 0, 5 );
 taylor( cosh(x), x, 0, 5 );
 taylor( sinh(x), x, 0, 5 );
 taylor( tanh(x), x, 0, 5 );
- 導関数
 diff( exp(x), x );
 diff( cos(x), x );
 diff( sin(x), x );
 diff( cosh(x), x );
 diff( sinh(x), x );
 diff( tanh(x), x );

トップ   編集 差分 添付 複製 名前変更 リロード   新規 検索 最終更新   ヘルプ   最終更新のRSS