This is my code (I'm trying to graphically show the L'Hopital approximation of an isoelastic function):
p1 = Plot[Log[x],{x, 1, 20}]
p2 = Manipulate[Plot[x^(1-a)/(1-a),{x, 1, 20}], {a,0,1}]
Show[p1,p2]
I get the following error:
Coordinate Skeleton[1] should be a pair of numbers, or a Scaled or Offset form.
How do I fix this? I've been trying a number of different solutions but they don't seem to work (apologies for the silly question - new to Mathematica).

Showcan't combineGraphicsandManipulate, you can useManipulate[Show[plots...],..]. You can use this trick to not recalculate 'static'Logplot: 148405 – Kuba Feb 06 '18 at 13:52