I have been working with interpolating functions recently and have two functions as a result of an interpolation of two co-ordinate lists. The code I used:
tp = 27250
xAvpTot = Transpose[{xALit, pTotLitPa}];
interpolxAvpTotb = Interpolation[xAvpTot];
NSolve[tp == interpolxAvpTotb[xA], xA]
Plot[interpolxAvpTotb[x],{x,0,1}]
Gives an output:
{{xA -> 0.387577}}
I am trying to get the other solution to this equation as visually, there are two solutions. Thanks so much!

