What is wrong here? The equation of a circle given its center

1 view (last 30 days)
syms x;syms y;syms R
e1=(x+1)^2+(y-3.2)^2==R^2;
e2=(x+8)^2+(y-4)^2==R^2;
e3=(x+6.5)^2+(y+9.3)^2==R^2;
result=solve(e1,e2,e3)
result=
R: [2*1 sym]
x: [2*1 sym]
y: [2*1 sym]
vpa(result.x)

Accepted Answer

VBBV
VBBV on 22 Nov 2022
syms x y R
e1=(x+1)^2+(y-3.2)^2==R^2;
e2=(x+8)^2+(y-4)^2==R^2;
e3=(x+6.5)^2+(y+9.3)^2==R^2;
result=solve([e1,e2,e3],[x y R])
result = struct with fields:
x: [2×1 sym] y: [2×1 sym] R: [2×1 sym]
result.x
ans = 
result.y
ans = 
result.R
ans = 

More Answers (0)

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!