combine/exp - 指数関数の結合
使い方
combine(f, exp)
パラメータ
f - 数式
|
説明
|
|
•
|
指数関数を含む数式は、次の変換により、結合されます。:
|
exp(x)*exp(y) ==> exp(x+y)
exp(x)^y ==> exp(x*y)
exp(x+n*ln(y)) ==> y^n*exp(x) where n is an integer
|
|
例
|
|
>
|
combine(exp(x)*exp(-x),exp);
|
| (2.1) |
>
|
combine(exp(5)^2*exp(3),exp);
|
| (2.2) |
>
|
combine(exp(x+3*ln(y)),exp);
|
| (2.3) |
>
|
combine(exp(x+3/2*ln(y)),exp);
|
| (2.4) |
|
|
Download Help Document
Was this information helpful?