Question: get the "core" equations

I have a system equations like { a + b = 1, c = a + b +1, d = a + c}

and the sovle function which give me then answer like { a = -2+d, b = -d+3, c = 2, d = d}

I just care about the information in form (name = numeric) like { c = 2 }

and i want the "core" equations which give me that information like { a +b = 1, c = a +b +1 } => {c = 2}

how i can i get the "core" equations of that.

Please Wait...