I tried using "simplify" but it doesn't work. For example:
simplify(a*b=b*c) assuming b>0
will not get a=c but return the original equation.
or even
simplify(a*b/b) assuming b>0
will not get a directly but return the original equation.
Could anyone help on this please? Thanks.
f(a)*sin(b)*cos(c)=g(d)*sin(b)*cos(c)where f(a) and g(d) are some cumbersome expression, sin(b) and cos(c) are derived automatically by some calculations (unknown in advance). how can Maple automatically cancel sin(b) and cos(c) on both sides of equation? Thanks again.
– hoverstar May 13 '22 at 01:02unapplyto create a function like the above to cancel things. AFAIK, there is no easy way to "cancel on both sides" (basically because it's invalid in general). – Jacques Carette May 13 '22 at 19:47