Question: assigning values and distributing them over and equation

Hi - Its me again. Let me try to explain my question with the following: y := proc (t) options operator, arrow; a*exp(2*t)+b*t*exp(2*t)+c*t^2*exp(2*t) end proc solve({3*c = -9, 3*b+12*c = 8, 3*a+6*b+2*c = 4}, {a, b, c}) It would be really cool if there was some way I could take the output from solve (values for constant a, b and c) and automatically assign these values in expression y. I can manually take these and type out y all over again but I think there's got to be a way that Maple recognizes that, alright, here's a, b and c and I'll just assign their values to a, b and c in expression y. Thanks.
Please Wait...