Suppose I solve an equation y=Solve[x+3==8,x]
and I want to get the numerical value of y, how do I do that? I mean, if I want to work with my result and evaluate, for example y-2 it will not work, because y is not in the form of a number, but rather {{y->3}}. How can I convert it into a number?
Thanks
y = x /. Solve[x + 3 == 8, x][[1]]– corey979 Apr 27 '17 at 15:33