Given a list of equations, I need a function that solves the equations to generate tuples.
Examples:
eq={x1=0,x2=0,x3=0}
Will generate the point {0,0,0}.
Similarly: {2 x3 == x2, 2 x1 + x2 == 4, x2 + 2 x3 == 4}
Will generate the point {1,2,1}
Is there such a built in function?