"As CarlB said i also reached to the fact that there isn't any exact solution to the A/M broblem, until another Euler arises on the earth."
??? Of course there is an exact solution. It may not be expressed in a single function, and may involve irrational and trancendtal numbers (square roots and pi), but the algorithms given above will find a single solution, to any degree of precision you wish to calculate.
The closest to a closed form solution, applicable to your diagram, where I replace your numbers by variables:
x (lateral distance=210 in your fig)
y (vertical distance= 260 in your fig)
s (arc length = 425 in your fig)
a = chord length = sqrt(x^2 + y^2)
unknowns:
A = angle of the arc "s" (in radians)
R = radius of the arc "s"
equations:
s = R*A
a = 2*R*sin(A/2)
substituting,
a = (2s/A)*sin(A/2)
this last equation must be solved, most readily by iteration, to find the angle A, knowing a and s. There is only one exact angle "A", between 0 and 2*pi, that will solve the equation, and it can be determined "exactly" for any given value of exactly. Once A is known, the radius R can be calculated, and the center of the arc "s" located. Calculation of the area follows by calculation of the triangles and the circular segment thus formed.