| 1 | initial version |
You have an extra bracket you don't want. This code works as you expect:
var('x x1 y y1 r r1')
solve((x-x1)^2 + (y-y1)^2 == (r+r1)^2, r)
Here's a link to a live example.
| 2 | No.2 Revision |
You have an extra square bracket you don't want. This code works as you expect:
var('x x1 y y1 r r1')
solve((x-x1)^2 + (y-y1)^2 == (r+r1)^2, r)
Here's a link to a live example.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.