Point X is 3m from A, 4m from B and 5m from C. Point X is inside the triangle formed by ABC. If AB = BC and angle B is right angle. Find the length of side AB.
I have come up with the following figure and aware that this is an isosceles right triangle, unfortunately i'm not sure what to do next.



Assign coordinates to the 4 given points. B = $(0,0)$, C = $(L,0)$, A = $(0,L)$, X = $(x, y)$.
Apply Pythagoras to the three line segments.
$$x^2 +y^2 = 16$$
$$(L-x)^2 + y^2 = 25$$
$$x^2 + (L-y)^2 = 9$$
Combining 1. and 2. gives $L^2 - 2Lx = 9$ and therefore $x = (L^2-9)/(2L)$
Combining 1. and 3. gives $L^2 - 2Ly = -7$ and therefore $y = (L^2 +7)/(2L)$
You can now substitute these expressions for $x$ and $y$ into equation 1 and solve for $L$. The result is $L = \sqrt{17 + \sqrt{224}}$, which is approximately 5.6539.