Right. I've been simplifying my formulas to see when the solve function will work. But even this simple example of finding the positions where the two circle intersect gives me 0 solutions.
syms x z
figure
ezplot(x^2+(z+1)^2==5^2)
hold on
ezplot(x^2+(z)^2==5^2)
solve(x^2+(z+1)^2==x^2+(z)^2)
could someone please tell me what I am doing wrong?