If I have two equations:
a + b = c
a = d * e
Is there a way to return every equation for all five Elements a, b, c, d and e?
There should be ten equations returned, for example for the element b there are two possible equations by rearranging a + b = c for one equation and substituting a = d * e for the other:
b = c – a
b = c – d * e
I've tried Solve and FullSimplify without success.