I'm trying to solve :
NSolve[3 r Sqrt[x/(1 - x)] + 1/2 r^3 (x/(1 - x))^(3/2) - (
3 r x Csch[r Sqrt[x/(1 - x)]])/(1 - x) == 0, {x, 0.5, 1}, {r, 0,
5}]
My goal is to have a relation r(x), with r in [0,5] and x in [0.5,1] But it looks like I'm not writing the command well because I'm getting the error:
NSolve: 0.5` is not a valid variable.
How I can achieve what I want plz ?




ContourPlot[ 3 r Sqrt[x/(1 - x)] + 1/2 r^3 (x/(1 - x))^(3/2) - ( 3 r x Csch[r Sqrt[x/(1 - x)]])/(1 - x) == 0, {x, 0.5, 1}, {r, 0, 1}]. – Αλέξανδρος Ζεγγ Dec 05 '18 at 12:01