Hi
I'm using solve,and i want to quantify the dimensions of the solution spaces of the output. For example
solve([a+b, c+b])
produces a singular 1 dimensional object
solve([a+b, -b^2+d^2])
produces 2 objects with dimension 2
EDIT:
my intuition is that the simplest way of doing this is to create a counter for equations of the form
variable=variable
and to run it on each of the lists that solve might produce- so far this kind of thing is beyond me