For instance, I have an equation to be solved:
Solve[c == 0, c]
And of course, the result is {{c -> 0}}.
What I need is the result 0. I know that First can eliminate the brackets, but then the result becomes c -> 0. It is not what I want. So what shall I do?
c /. Solve[..],c /. First@Solve[..]orValues @ Solve[..].... – Michael E2 Apr 12 '19 at 03:01c /. Solve[c == 0, c][[1]]orc /. Flatten[Solve[c == 0, c]]– David G. Stork Apr 12 '19 at 07:11