This is simple, but it doesn't work:
In[1]=FullSimplify[(A0 + B0) C0]
Out[1]=(A0 + B0) C0
which should be:
A0 C0+ B0 C0
It doesn't work, Why?
This is simple, but it doesn't work:
In[1]=FullSimplify[(A0 + B0) C0]
Out[1]=(A0 + B0) C0
which should be:
A0 C0+ B0 C0
It doesn't work, Why?
Expand[(A0 + B0) C0]givesA0 C0 + B0 C0Simplify works by finding the "smallest" expression (in terms of leaf counting). So it sees(A0 + B0) C0as simpler, that is why. – Nasser Jul 12 '14 at 09:12