I want to plot a function which is dependent on v over p. I have another function for p[v] so i thought I could plot using the inverse function. Can somebody tell me what I did wrong here?
In[11]:= p[t_, v_] := (8*t*v^2 - 9 v^2 + 3)/((3 v - 1) v^2)
In[13]:= T = 0.95
Out[13]= 0.95
In[46]:= p1[v_] := p[T, v]
In[47]:= V[P_] := InverseFunction[p1][P]
In[48]:= Plot[-T*Log[3 V[p] - 1] + T/(3 V[p] - 1) - 9/(4 V[p]), {p, 0,
2}]
Attachments: