Sorry, about that. No offense intended.
Below is a simplified version of the problem I am dealing with
Code:
(%i1) X: a*b+c*d=e;
(%o1) c d + a b = e
(%i2) Y:g*b+h*d=f;
(%o2) d h + b g = f
(%i3) solve([X,Y],[b,d]);
e h - c f e g - a f
(%o3) [[b = - ---------, d = ---------]]
c g - a h c g - a h In my real problem I more equations and they are a lot longer. What I want to do is name the equations that are produced as output (the equations for b and d above) so that they can be recalled later.
Thanks for your help