I want to compute a point $p$ which has distances $d1$ and $d2$ from points $q1$ and $q2$ respectively. As I wanted a general answer, I used Maxima inputting the following script ,
$solve($ $[sqrt((num1-x)^2+(num2-y)^2)=num3,$ $sqrt((num4-x)^2+(num5-y)^2)=num6]$ $,[x,y]);$
Where all variables of the format $num$_ were constants in my mind and $p=(x,y)$. I expected an output like , x= ... ; y= ..... . Though,the output was just an empty bracket $[]$. Is the script mathematically wrong or lacking some information or just a problem of the software ,Maxima?
(*Optionally, I am glad if you let me know a script which works well.)
Thank you in advance.