Wolfram mathematica 不等于自身的倒位拉普拉斯

Wolfram mathematica 不等于自身的倒位拉普拉斯,wolfram-mathematica,Wolfram Mathematica,在Mathematica中,我定义了一个函数 A[f_] := f - LaplaceTransform[InverseLaplaceTransform[f, s, t], t, s] 然后评估 Simplify[A[Exp[x/Sqrt[1/s]]], x > 0] 我应该得到零分,但我明白了 a[f_z]:=f-LaplaceTransform[InverseLaplaceTransform[f,s,t],t,s]; a[Exp[x/Sqrt[1/s]]; 假设[x0,简化[%]

在Mathematica中,我定义了一个函数

A[f_] := f - LaplaceTransform[InverseLaplaceTransform[f, s, t], t, s]
然后评估

Simplify[A[Exp[x/Sqrt[1/s]]], x > 0]
我应该得到零分,但我明白了

a[f_z]:=f-LaplaceTransform[InverseLaplaceTransform[f,s,t],t,s];
a[Exp[x/Sqrt[1/s]];
假设[x<0&&s>0,简化[%]


InverseLaceTransform
返回仅对
x0
有效的条件表达式。什么版本的mathematica?
a[f_] := f - LaplaceTransform[InverseLaplaceTransform[f, s, t], t, s];
a[Exp[x/Sqrt[1/s]]];
Assuming[x < 0 && s > 0, Simplify[%]]