Solve does not solve the equation 296.9 + Sqrt [1460 * x - 532900] - x * ArcCos [ {x-730} / x] == 0, there is another way to solve this equation? An approximate answer would be x == 1206.49.
In[11]:= FindRoot[296.9 + Sqrt[1460*x - 532900] - x*ArcCos[{x - 730}/x] == 0, {x, 1000}] Out[11]= {x -> 1206.5} In[12]:= InputForm[%] Out[12]//InputForm= {x -> 1206.5038624129224}
Helped me a lot. Thank you very much.