The below link on MSE was a question assuming a second solution was obtained on Mathematica by second method. Appears to be a question of accuracy.
Given are three side lengths $ (AB,AC,AD)=(3,2,4)$. Also $(B,C,D) $ are collinear and $ AB $ is tangent to the circle at $A$.
The bigger side $BD$ is computed in two ways
Direct geometry By similar triangles $$ BD= AB \cdot AD / AC = 3 \cdot 4/2 =6 $$
A roundabout method that should give same results.. Cosine Rule on triangles $ \triangle{ABC}$, $\triangle{ACD}$ and tangent property $ BA^2=BC \cdot BD$
Clear["Global`*"] {a,b,c}={3,2,4}; BigSide=a*c/b NSolve[{x^2==a^2+b^2-2 a b csbt,y^2+c^2-2 c y csbt==b^2,x(x+y)==a^2},{x,y,csbt}] dreiQuadrat=1.5 (1.5+4.5) dreiQuadrat1=1.5073469747588177*(4.463408366054498+1.5073469747588177)
Low accuracy is seen in the second solution that is not expected.
Can the accuracy of the second method be improved? If so, how?
Geogebra drawing does not distinguish the circles as the difference is so small.
Thanks in advance for comments.





Solve[{x^2 == a^2 + b^2 - 2 a b csbt, y^2 + c^2 - 2 c y csbt == b^2, x (x + y) == a^2}, {x, y, csbt}, Quartics -> True] // N[#, 32] &$\endgroup$