Evaluating the following expression results in a non-zero output
FullSimplify[Integrate[2 f[x], {x,0,1}] - 2 Integrate[f[x], {x,0,1}]]
I think the output should be zero, but do not know how to simplify this expression. Any suggestions ?
Evaluating the following expression results in a non-zero output
FullSimplify[Integrate[2 f[x], {x,0,1}] - 2 Integrate[f[x], {x,0,1}]]
I think the output should be zero, but do not know how to simplify this expression. Any suggestions ?
For this particular case:
(Integrate[2 f[x], {x,0,1}] - 2 Integrate[f[x], {x,0,1}]) /. (Integrate[x_*f[h_], z_]) :> x* Integrate[f[h], z]
Integrate[2*f[x] - 2*f[x], {x, 0, 1}]is evaluated to0, even without a definition forf[x]. – Shredderroy Dec 26 '14 at 09:14