Looking at the graph of y = SQRT(x3-1), there appears to be one point that is closest.
the distance between the curve and the point (2,5) is d = SQRT( (x-2)2 + (y-5)2 )
d = SQRT( (x-2)2 + (SQRT(x3-1)-5)2 ) = SQRT( x3 + x2 -4x + 28 -10(SQRT(x3-1))
You can also use d2 to find the minimum value. So
d2 = x3 + x2 - 4x + 28 - 10(SQRT(x3-1)) The take the derivative of d2 & set to zero
d(d2)/dx = 3x2 + 2x -4 - 15x2/SQRT(x3-1) = 0
Solving for d(d2)/dx = 0, you find that x = 2.838 , substituting into the equation and solving for y
y = 4.676