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 tryingRead more