combine/power - べき乗の項の結合
使い方
combine(f, power);
パラメータ
f - 数式
|
説明
|
|
•
|
べき乗を含む数式は、次の変換により、結合されます。
|
x^y*x^z ==> x^(y+z)
(x^y)^z ==> x^(y*z)
exp(x)*exp(y) ==> exp(x+y)
exp(x)^y ==> exp(x*y)
sqrt(-a) ==> I*sqrt(a)
a^n*b^n ==> (a*b)^n
•
|
任意の x, y, z, 整数 a, b > 1, 有理数 n に対して、これらの変換は 正しく行われます。
|
|
|
例
|
|
>
|
combine(x^3*x^(m-3),power);
|
| (2.1) |
>
|
combine((3^n)^m*3^n,power);
|
| (2.2) |
>
|
assume(m,integer);
combine((3^n)^m*3^n,power);
|
| (2.3) |
>
|
combine(exp(x)^7*exp(y),power);
|
| (2.4) |
>
|
combine(2^(1/2)*3^(1/2),power);
|
| (2.5) |
>
|
combine((-2)^(1/2)*3^(1/2),power);
|
| (2.6) |
|
|
Download Help Document
Was this information helpful?