Question: evaluate exponential with some unknown arguments

It seems the exponential function needs all arguments in order to be evaluated: a := .2*exp(A[1, 1]+A[1, 2]); A[1, 1] := 2; evalf(a); 0.2 exp(2. + A[1, 2]) However, I would like to be able to see Maple evaluate as much as it can, ie, the above command should give: 1.4778*exp(A[1,2]) Where 0.2 was multiplied by exp(2), and the rest of the exponential was left symbolic. Is there a way to force maple to do this without having to manually factor anything ? Thanks
Please Wait...